@charset "utf-8";
@import url("reset.css");
/* 추가 */

html {
  font-size: 10px;
}
body {
  background: #fff;
}
#wrap-all {
  position: relative;

  min-width: 280px;
}

.container-fluid {
  width: 1300px;
  margin: 0 auto;
  position: relative;
}
.container-fluid::before {
  display: none;
}
/* header */
#header {
  animation: fadeinHdr 0.8s both;
  z-index: 101;
  background: #fff;
  position: relative;
}
.hdr-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  display: flex;
  max-width: 1300px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
.hdr-wrap .logo,
.footer-info .logo {
  width: 140px;
}
.hdr-wrap .logo img,
.footer-info .logo img {
  width: 100%;
}
.hdr-wrap .logo a {
  display: block;
  /* width: 140px;
  height: 100%; */
  /* background: url("../img/logo.svg") 0 50% no-repeat; */
  z-index: 100;
  font-size: 0;
}

.hdr-wrap .btn-login {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
  border: 1px solid #333;
  color: #333;
  display: block;
  border-radius: 50px;
}

.inb {
  padding: 1rem 2rem;
}

.inb .inb-list {
  position: relative;
  vertical-align: sub;
  clear: both;
}

.inb > li {
  position: relative;
  float: left;
  width: 100%;
}
.inb > li > a {
  text-decoration: none;
  color: #333;
  display: block;
  height: 100%;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 600;
  padding-top: 15px;
  height: 50px;
}

.inb > li:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/ui-ico-chev-rw.svg) 0 0 no-repeat;
  position: absolute;
  right: 0;
  top: 17px;
  padding: 0px 5px;
  color: #333;
}

.inb .inb-list a:hover {
  transition: 300ms all;
}
.inb .inb-list .items {
  height: 0px;
  overflow: hidden;
}
.inb .inb-list .items a:hover {
  color: #333;
  transition: 300ms all;
}
.inb .inb-list:last-child {
  border-bottom: none;
}
.inb > li.active:after {
  content: "";
  width: 18px;
  height: 15px;
  background: url(../img/ui-ico-chev.svg) 0 0 no-repeat;
  position: absolute;
  right: 0;
  top: 17px;
  padding: 0px 5px;
  color: #333;
}

.inb .inb-list .items a {
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 400;
}

.inb li.inb-list.active > .items {
  display: block;
  background: #f5f5f5;
  padding: 0px;
  height: auto;
  color: #333;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 200ms;
  clear: both;
  float: left;
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.7rem 1rem;
}
.inb .active > .items li {
  padding: 0px;
  list-style: none;
}

.inb .active > .items li.active > a {
  text-decoration: underline;
  /* color: #fff; */
  color: #395eff;
}
.inb .active > .items li:last-child {
  border-color: transparent;
  padding-bottom: 0px;
  float: left;
}
.inb > li.active > a {
  color: #395eff;
  /* color: #fff; */

  text-transform: uppercase;
  font-weight: bold;
}

.inb .active .inb-list > a {
  font-size: 15px;
  font-weight: 400;
}

.inb .active > .items .active > .items {
  background: none;
  padding: 0;
  padding-left: 40px;
}
.inb .active > .items .active > .items a {
  padding: 5px 0;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
}

/* mobile search */

.dim {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

/* GNB */
.hdr-nav {
  display: flex;
  width: 66%;
  margin-left: 1rem;
}
.hdr-nav > ul {
  display: flex;
  width: 100%;
}
.hdr-nav > ul > li {
  position: relative;
  text-align: center;
  flex: 1 1 auto;
  /* width: 16%; */
}
.hdr-nav > ul > li:first-child {
  /* width: 8%; */
}
.hdr-nav > ul > li > a {
  color: #333;
  font-size: 18px;
  padding: 15px;
  font-weight: 600;
  display: block;
  width: 100%;
  line-height: 40px;
  transition: background 0.4s, color 0.4s;
}

/* 추가된 스타일: inb-list active 클래스의 a 요소에는 색상이 적용되지 않도록 함 */
.mobile-menu .inb-list.active > a {
  color: inherit !important; /* 상위 요소에서 상속된 기본 색상을 사용 */
}

.hdr-nav > ul > li:hover > a,
.hdr-nav > ul > li > a.over {
  color: #395eff;
  font-weight: 600;
}
.hdr-nav .hdr-sub {
  display: none;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 4px 0 0 0;
  overflow: hidden;
}
.hdr-nav .hdr-sub > li + li {
  border-top: 1px solid #efefef;
}
.hdr-nav .hdr-sub > li > a {
  /* display: block; */
  padding: 12px 25px 12px 25px;
  text-decoration: none;
  color: #666;
  font-size: 16px;
  color: #666;
  font-weight: 600;
  line-height: 1.2;
}
.hdr-nav .hdr-sub li a:hover,
.hdr-nav .hdr-sub li a:focus {
  color: #1c3abe;
}

.hdr-nav .hdr-sub > li > ul,
.hdr-nav li.inb-list.active > .items {
  /* padding:10px 20px; */
  background: #fafbfc;
  color: #666;
  text-align: left;
  font-size: 14px;
}
.hdr-nav .hdr-sub > li > ul > li > a {
  display: block;
  padding: 5px 0;
  color: #333;
  text-align: right;
  float: none;
}

.hdr-nav .hdr-sub > li > ul > li:last-child {
  width: 100%;
}

.hdr-nav .hdr-sub > li > ul > .inb-list.active + li {
  padding-top: 7px;
  border-top: 1px solid #eee;
}

.hdr-nav .hdr-sub > li > ul > li > a:hover {
  text-decoration: underline;
  color: #333 !important;
}
.hdr-nav .inb .active > .items li.active > a {
  color: #333;
}
.hdr-nav .inb .active > .items .active > .items a {
  color: #333;
}
.hdr-nav .inb .active > .items .active > .items {
  padding-left: 15px;
}
.hdr-nav .inb li.inb-list.active > .items {
  margin-bottom: 0;
}
.hdr-nav .inb li.inb-list.active > ul > li > .items li:last-child {
  padding-bottom: 7px;
}
.hdr-nav .inb > li > a {
  height: auto;
}

.hdr-nav .inb > li:after,
.hdr-nav .inb > li.active:after {
  display: none;
}
.hdr-nav .inb > li.inb-list:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/ui-ico-chev-rw.svg) 0 0 no-repeat;
  position: absolute;
  right: 10px;
  display: block;
}

.hdr-nav .inb > li.inb-list.active:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/ui-ico-chev.svg) 0 0 no-repeat;
  position: absolute;
  right: 10px;
  display: block;
}

.hdr-wrap .hdr-side {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.hdr-wrap .hdr-side .btn.ico-srch {
  background-color: transparent;
  background: url(../img/ui-ico-search-on.svg) no-repeat 50%;
  background-size: 72%;
  font-size: 0;
  display: none;
}
.hdr-wrap .hdr-side .btn.ico-notice {
  position: relative;
  background-color: transparent;
  background: url(../img/ui-ico-notice.svg) 50% 50% no-repeat;
  font-size: 0;
  background-size: 60%;
}
.hdr-wrap .hdr-side .btn.ico-notice:active {
  background: #262936 url(../img/ui-ico-notice.svg) 50% 50% no-repeat;
  background-size: 65%;
}
.hdr-wrap .hdr-side .btn.ico-my {
  background: url(../img/ui-ico-my.svg) no-repeat 50%;
  background-size: 60%;
  font-size: 0;
}
.hdr-wrap .hdr-side .btn.ico-my:active {
  background: #262936 url(../img/ui-ico-my.svg) no-repeat 50%;
  background-size: 60%;
}
.hdr-wrap .hdr-side .btn.ico-nav {
  background-color: transparent;
  background: url(../img/ui-ico-nav.svg) no-repeat 50%;
  background-size: 68%;
  font-size: 0;
  display: none;
}

.hdr-wrap .hdr-side .dropdown-menu ul {
  border-radius: 8px;
  overflow: hidden;
  background: #494a4e;
}
.hdr-wrap .hdr-side .dropdown-menu li a {
  display: block;
  padding: 1rem;
  font-size: 1rem;
}
.hdr-wrap .hdr-side .dropdown-menu li a:hover {
  background: #404247;
}
.hdr-wrap .hdr-side .dropdown-menu li + li {
  border-top: 1px solid #3e4047;
}

#header.fixed {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  animation: fadeinHdr 0.8s both;
  z-index: 90;
}

.sec-vis {
  position: relative;
  padding-top: 80px;
  height: 820px;
  text-align: center;
  background: url(../img/intro/section1-bg.jpg) 0 100% repeat-x;
  animation: repeatBg 10s linear infinite;
  overflow: hidden;
}
@keyframes repeatBg {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: 100% 100%;
  }
}

.sec-vis .vis-img-title {
  display: block;
  transform: translateY(50px);
  opacity: 0;
}
.sec-vis p.title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 65px;
  transform: translateY(50px);
  opacity: 0;
  color: #222;
}
.sec-vis small.txt {
  display: block;
  /* font-size:18px; */
  margin-top: 30px;
  line-height: 1.3;
  font-size: 1.8rem;
  transform: translateY(50px);
  opacity: 0;
  color: #333;
}

.sec-vis .btn-wr {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  transform: translateY(50px);
  opacity: 0;
}
.sec-vis .btn-wr button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  font-size: 2rem;
  padding: 1.3rem 2.5rem;
  border: 1px solid #333;
  color: #333;
  border-radius: 50px;
}

/* .sec-vis .btn-wr button:first-of-type:hover,
.sec-vis .btn-wr button:first-of-type:focus,
.sec-vis .btn-wr button:last-of-type:hover,
.sec-vis .btn-wr button:last-of-type:focus {
  border: 1px solid #5de38f;
} */

/* .sec-vis .btn-wr button:last-of-type {
  background: #fff;
  color: #000;
} */
/* .sec-vis .btn-wr button:last-of-type:hover,
.sec-vis .btn-wr button:last-of-type:focus {
  box-shadow: inset 0 -3.25em 0 0 #5de38f;
  border: 1px solid #5de38f;
} */
.sec-vis .btn-wr button:hover,
.sec-vis .btn-wr button:focus {
  background: #333;
  color: #fff;
}
.sec-vis .btn-wr button.active {
  background: #333;
  color: #fff;
}

.sec-vis .btn-wr button {
  transition: 0.25s;
}

.sec-vis .btn-wr button + button {
  margin-left: 18px;
}

.sec-vis .acc-img {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50px);
  opacity: 0;
}
.sec-vis .acc-img img {
  width: 550px;
}
.sec-event {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #4431cf;
  padding: 6rem 0 5rem 0;
  transform: translateY(50px);
  opacity: 0;
  width: 100%;
  text-align: left;
}
.sec-event::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #3b28c6;
}
.sec-event-inner {
  display: flex;
  flex-wrap: wrap;
  /* transform: translateY(100px);
  opacity:0; */
}
.sec-event-inner > div {
  width: 50%;
}
.sec-event-inner > div:nth-child(2) {
  padding-left: 6rem;
}

.sec-event-inner > div > div {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}
.sec-event-inner .title-wr a {
  position: relative;
  font-size: 1.5rem;
  display: block;
  padding-top: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}
.sec-event-inner .title-wr a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(255, 255, 255, 0.7);
  margin-left: 5px;
}
.sec-event .title-small {
  display: inline-block;
  font-size: 1.6rem;
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #54ea8c;
  font-weight: 600;
}
.sec-event .title-small strong {
  font-weight: 600;
  color: #54ea8c;
}
.sec-event h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}
.sec-event h2 br {
  display: none;
}
.sec-event button {
  margin-left: auto;
  margin-right: 4rem;
  min-width: 13rem;
  font-size: 1.8rem;
  padding: 1.2rem 2rem;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
}

.sec-qna {
  background: #fff;
  padding: 140px 0;
}
.sec-qna .sec-qna-inner {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(100px);
  opacity: 0;
}
.sec-qna h2.title {
  width: 280px;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #222;
}
.sec-qna h2.title strong {
  color: #8581fc;
  display: block;
}
.sec-qna ul {
  width: calc(100% - 280px);
  padding-left: 90px;
}
.sec-qna li {
  transform: translateY(40px);
  opacity: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #e0e0e0;
}
.sec-qna li .title,
.sec-qna li .txt {
  position: relative;
  padding-left: 35px;
  display: block;
  line-height: 1.2;
}
.sec-qna li .title {
  font-size: 2.2rem;
  color: #666;
  font-weight: 400;
}
.sec-qna li .title span {
  position: absolute;
  left: 0;
  top: 0;
  color: #7c78e9;
}
.sec-qna li .txt {
  font-size: 2rem;
  color: #333;
  padding-top: 10px;
}

.sec-qna li + li {
  border-bottom: 1px solid #e0e0e0;
}

.sec-hrd {
  padding: 150px 0;
  background: #f5f3fb;
  line-height: 1.2;
}
.sec-hrd h2.title {
  font-size: 5rem;
  color: #222;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(50px);
}
.sec-hrd h2.title strong {
  color: #4116b1;
}
.sec-hrd small.txt {
  display: block;
  color: #5c5c5c;
  font-size: 2.4rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(50px);
}
.hrd-box-wr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  column-gap: 13px;
}
.hrd-box-wr > div {
  opacity: 0;
  transform: translateY(50px);
  margin-bottom: 2rem;
}
.hrd-box-wr > div > span {
  display: block;
}
.hrd-box-wr > div > span.title {
  background: #4d4d4d;
  text-align: center;
  padding: 1.7rem;
  font-size: 1.9rem;
  border-radius: 8px;
  font-weight: 700;
}
.hrd-box-wr > div:nth-of-type(1) > span.title,
.hrd-box-wr > div:nth-of-type(2) > span.title {
  background: #310f8a;
}

.hrd-box-wr > div > span.num {
  display: block;
  color: #4116b1;
  font-size: 3.6rem;
  padding: 2rem 0;
  text-align: center;
  font-weight: 700;
}

.box-h {
  height: 290px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.box-h li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d4d4d;
  width: 100%;
  text-align: center;
  background: #fff;
  font-size: 1.6rem;
  border-radius: 6px;
}
.box-h li + li {
  margin-top: 7px;
}

.box-d {
  background: #fff;
  border-radius: 6px;
  font-size: 1.6rem;
  border: 1px solid #dbd8e3;
  height: 290px;
}
.box-d .title {
  display: block;
  background: #eceaf2;
  color: #4d4d4d;
  padding: 1.6rem 1.3rem;
  line-height: 1.1;
  word-break: keep-all;
}
.box-d ul {
  padding: 14px;
}
.box-d li {
  position: relative;
  padding-left: 7px;
  color: #4d4d4d;
  font-size: 1.6rem;
  border-radius: 6px;
  line-height: 1.1;
}
.box-d li + li {
  padding-top: 4px;
}
.box-d li:before {
  width: 2px;
  height: 2px;
  content: "";
  display: block;
  background: #4d4d4d;
  position: absolute;
  top: 8px;
  left: 0;
}

/* sec-plan */
.sec-plan {
  background: #fff;
  padding: 150px 0;
}
.sec-plan .plan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10rem;
}
.sec-plan .plan-items h3.title {
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #444;
  padding-bottom: 2rem;
}
.sec-plan .plan-items h3.title small {
  color: #6e6e6e;
  font-size: 1.6rem;
  padding-left: 1rem;
}
.plan-items {
  display: grid;

  grid-template-rows: 30px 1fr 1fr;
}
.plan-items .plan-card {
  position: relative;
  border-radius: 2rem;
  padding: 4rem 3.5rem;
}
.plan-card .card-category {
  display: inline-block;
  border-radius: 5rem;
  border: 1px solid #fff;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2rem;
}
.plan-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  right: 1.7rem;
  width: 100px;
  height: 30px;
}
.plan-card:first-of-type::before {
  background: url(../img/intro/ico-plan3.svg) 0 0 no-repeat;
}
.plan-card:last-of-type::before {
  top: 4rem;
  background: url(../img/intro/ico-plan2.svg) 0 0 no-repeat;
}
.type-basic.premium > .plan-card::before {
  display: none;
}

.plan-price {
  margin-top: 1rem;
}
.plan-price > span {
  display: block;
}
.plan-price .num-price-before {
  position: relative;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  /* text-decoration: line-through; */
  padding-right: 0.5rem;
  display: inline-block;
}
.plan-price .num-price-before::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 110%;
  height: 1px;
  background: #fff;
}
.plan-price .num-price-before::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 8px;
  width: 22px;
  height: 0%;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(135deg);
  transform-origin: top right;
}

.plan-price .num-price {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
}
.plan-price .num-price::after {
  content: "원";
  font-size: 2rem;
  font-weight: 500;
  vertical-align: baseline;
  padding-left: 0.5rem;
}
.type-basic > .plan-card:first-of-type {
  background: #6c46cd;
  z-index: 2;
}
.type-basic > .plan-card:last-of-type {
  background: #f3f4fb;
  margin-top: -2.5rem;
  z-index: 1;
  padding-top: 6.5rem;
}
.type-basic > .plan-card:last-of-type .plan-price .num-price-before {
  color: #444;
}
.type-basic > .plan-card:last-of-type .plan-price .num-price-before::before {
  background: #444;
}
.type-basic > .plan-card:last-of-type .plan-price .num-price-before::after {
  border-left: 1px solid #444;
  border-bottom: 1px solid #444;
}
.type-basic > .plan-card:last-of-type .plan-price .num-price,
.type-basic > .plan-card:last-of-type .card-category {
  color: #6c46cd;
}
.type-basic > .plan-card:last-of-type .card-category {
  border-color: #6c46cd;
}

.type-basic.standard > .plan-card:first-of-type {
  background: #3d5fcf;
}
.type-basic.standard > .plan-card:last-of-type {
  background: #f3f4fb;
}

.type-basic.standard > .plan-card:last-of-type .plan-price .num-price,
.type-basic.standard > .plan-card:last-of-type .card-category {
  color: #3d5fcf;
}
.type-basic.standard > .plan-card:last-of-type .card-category {
  border-color: #3d5fcf;
}

.type-basic.premium {
  grid-template-rows: 30px 1fr;
}

.type-basic.premium ul {
  position: relative;
}
.type-basic.premium > .plan-card {
  position: relative;
  background: #4f5161;
  margin-top: 0;
  padding-top: 4rem;
}

.type-basic.premium > .plan-card:last-of-type .card-category {
  border-color: #fff;
  color: #fff;
  margin-bottom: 1.5rem;
}

.type-basic.premium .card-title {
  display: block;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.type-basic.premium p.txt {
  font-size: 1.8rem;
  line-height: 1.2;
}
.type-basic.premium ul {
  margin-top: 3rem;
}
.type-basic.premium ul::after {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(79, 81, 97, 0.4),
    rgba(79, 81, 97, 1)
  );
}
.type-basic.premium li {
  position: relative;
  font-size: 1.8rem;
  padding-left: 0.8rem;
}
.type-basic.premium li + li {
  margin-top: 1rem;
}
.type-basic.premium li::before {
  content: "";
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.basic,
.standard,
.premium {
  transform: translateY(50px);
  opacity: 0;
}
/* modal */
.modal-form .modal-dialog {
  background: #fff;
  min-height: 500px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.modal-form .modal-dialog .close {
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  background: url(../img/ui-btn-close-modal.svg) 50% 50% no-repeat;
  background-size: 100%;
  opacity: 1;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.modal-form .modal-container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.modal-form .modal-body,
.modal-form .modal-contents,
.modal-form .modal-footer {
  background: #fff;
}
.modal-form .modal-dialog .board-write > .form-row {
  padding: 2rem 2.5rem;
  margin: 0;
  font-size: 1.6rem;
}
.modal-form .modal-dialog .form-row {
  display: flex;
  align-items: center;
}
.modal-form .modal-dialog .form-row .bar {
  padding: 0 0.5rem;
}
.modal-form .modal-dialog .form-row + .form-row {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-form .modal-dialog .form-control {
  height: 36px;
  font-size: 1.4rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #333;
}
.modal-form .modal-dialog textarea.form-control {
  height: auto;
}
.modal-form h1 {
  font-size: 2.5rem;
  padding: 2.5rem 2.5rem 0;
  color: #222;
}
#m-applyCourse .modal-dialog {
  width: 500px;
}
.modal-form button.btn-board-md {
  width: 100px;
  height: 3.8rem;
  border-radius: 50px;
  color: #333;
  font-size: 1.5rem;
  border: 1px solid #333;
  background: #fff;
  min-width: 100px;
}

/* FOOTER */

#footer {
  /* margin-top: 5rem; */
  padding: 4rem 0;
  text-align: left;
  color: #333;
  font-size: 0.875rem;
  background: #f5f5f5;
}
#footer > div {
  display: flex;
}
#footer .footer-info {
  padding-right: 2rem;
}
#footer .footer-info .info-menu {
  display: flex;
  margin: 1.4rem 0 1.2rem 0;
}
#footer .footer-info .info-menu a {
  color: #333;
  font-size: 14px;
  /* font-size: 1rem; */
  padding: 0 0.7rem;
}
#footer .footer-info .info-menu li + li {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
#footer .footer-info .info-menu li:first-child a {
  padding-left: 0;
}
#footer .footer-info address {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
  text-decoration: none;
}
#footer .footer-info .cs-num {
  display: none;
  text-decoration: none;
}
#footer .footer-info .cs-num a {
  text-decoration: none;
}
#footer .footer-info .copyright {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
#footer .footer-cs {
  margin-left: auto;
}
#footer .footer-cs small {
  font-size: 14px;
}
#footer .footer-cs .num {
  display: block;
  font-size: 30px;
  font-weight: 900;
  padding: 0.5rem 0;
}
#footer .footer-cs .fax {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 4px;
  letter-spacing: -0.05rem;
  font-weight: 500;
}
#footer .footer-cs .cs-time {
  display: block;
  font-size: 13px;
  padding-left: 4px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: -0.05rem;
  line-height: 1.3;
  margin-top: 5px;
}
.container-sub {
  width: 1300px;
  margin: 0 auto;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

@media (max-width: 1450px) {
  /*header*/
  .hdr-wrap {
    width: 100%;
    padding: 0 24px 0 30px;
    max-width: 100%;
    height: 90px;
  }
  .container-fluid {
    width: 100%;
  }
  .section {
    padding: 80px 40px;
  }
  .sec-qna h2.title {
    font-size: 4rem;
    width: 220px;
  }
  .sec-qna ul {
    width: calc(100% - 240px);
    padding-left: 50px;
  }
  .hrd-box-wr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 13px;
  }
  .hrd-box-wr > div > span.title {
    text-align: left;
    margin-bottom: 1.3rem;
  }
  .hrd-box-wr > div > span.num {
    position: absolute;
    top: 0;
    right: 1.4rem;
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
  }
  .sec-event {
    padding: 5rem 0;
  }
  .sec-event-inner > div {
    padding-left: 5rem;
  }
  .sec-plan .plan-inner {
    column-gap: 6rem;
  }
}
@media (max-width: 1200px) {
  .sec-plan .plan-inner {
    column-gap: 5rem;
  }
  .plan-items .plan-card {
    padding: 3.6rem 3.1rem;
  }
  .sec-event button {
    margin: 0 auto;
    padding: 1rem 1.4rem;
    font-size: 1.7rem;
  }
}

@media (max-width: 1100px) {
  .sec-vis {
    height: 800px;
  }
  .section {
    padding: 90px 40px;
  }
  .vis-img-title img {
    width: 450px;
  }
  .sec-vis p.title {
    margin-top: 35px;
  }
  .sec-vis small.txt {
    margin-top: 15px;
  }
  .sec-qna h2.title {
    width: 100%;
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .sec-qna h2.title strong {
    display: inline-block;
  }
  .sec-qna ul {
    width: 100%;
    padding-left: 0;
  }
  .sec-hrd small.txt,
  .sec-hrd h2.title {
    text-align: center;
  }
  .sec-hrd h2.title {
    font-size: 4rem;
  }

  /* event */
  .sec-event {
    padding: 4rem 0;
  }

  .sec-event-inner > div {
    padding-left: 3rem;
  }

  .sec-event-inner > div:nth-child(2) {
    padding-left: 3rem;
  }
  .sec-event h2 {
    display: block;
    font-size: 2.4rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .sec-event button {
    margin: 0 auto;
    padding: 1rem 1.4rem;
    font-size: 1.7rem;
  } 
  .sec-plan .plan-inner {
    column-gap: 3rem;
  }
  .sec-plan .plan-items h3.title {
    font-size: 2.4rem;
  }
  .plan-price .num-price {
    font-size: 3.5rem;
  }
  .plan-items .plan-card {
    padding: 3rem 2.5rem;
  }
  .type-basic > .plan-card:last-of-type {
    padding-top: 5rem;
  }
  .plan-card .card-category {
    font-size: 1.5rem;
    padding: 0.7rem 1.2rem;
  }
  .type-basic.premium .card-title {
    font-size: 3rem;
  }
  .type-basic.premium p.txt {
    font-size: 1.5rem;
  }
  .type-basic.premium li {
    font-size: 1.5rem;
  }
  .plan-card::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.3rem;
    width: 70px;
    height: 25px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 30px;
  }
  .sec-vis {
    padding-bottom: 300px;
    height: auto;
  }
  .vis-img-title img {
    width: 350px;
  }

  .sec-event-inner > div > div {
    display: block;
  }

  .sec-event-inner > div {
    text-align: center;
    padding-left: 0;
  }

  .sec-event-inner > div:nth-child(2) {
    padding-left: 0;
  }
  .sec-event h2 {
    display: block;
    font-size: 2.4rem;
    width: 100%;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .sec-event button {
    margin-top: 1rem;
  }
  .hrd-box-wr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 13px;
  }
  .sec-plan .plan-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 4rem;
  }
  .type-basic.premium {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 9px;
  }
  .sec-vis {
    padding-bottom: 250px;
  }
  .hrd-box-wr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 13px;
  }
  .hrd-box-wr > div > span.title {
    border-radius: 4px;
  }
  .box-h li {
    border-radius: 3px;
    font-size: 1.7rem;
  }
  .box-h li + li {
    margin-top: 4px;
  }
  .hrd-box-wr > div > span.title {
    margin-bottom: 0.7rem;
  }
  .plan-price .num-price-before::after {
    width: 15px;
    top: 19px;
    right: 3px;
  }
  .sec-event button {
    margin-top: 2rem;
    width: 100px;
  }
}

@media (max-width: 576px) {
  .hdr-wrap {
    height: 60px;
  }
  .sec-vis .btn-wr button + button {
    margin-left: 10px;
  }
  .section {
    padding: 70px 20px;
  }
  .sec-vis {
    padding-bottom: 220px;
    height: auto;
  }
  .vis-img-title img {
    width: 70%;
  }
  .sec-qna li {
    padding: 15px 0;
  }
  .sec-qna li .title,
  .sec-qna li .txt {
    padding-left: 25px;
  }
  .sec-qna h2.title {
    font-size: 3.2rem;
  }
  .sec-hrd h2.title {
    font-size: 3.2rem;
  }
  .sec-hrd small.txt {
    font-size: 2rem;
  }

  .box-d .title {
    height: auto;
  }
  .box-h {
    height: auto;
  }
  .box-h li {
    padding: 1.2rem;
  }
  .hrd-box-wr > div {
    align-items: stretch;
  }
  .sec-plan .plan-inner {
    column-gap: 1.5rem;
  }
  .plan-card .card-category {
    padding: 0;
    border: 0;
    font-size: 1.7rem;
  }
  .sec-event h2 {
    font-size: 2.4rem;
  }

  .sec-event button {
    margin-top: 2rem;
    width: 100px;
  }

  /* modal */
  .modal-form .modal-dialog {
    width: 90% !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 8px;
  }
  .btn-wr {
    display: flex; /* 버튼들을 수평으로 나열 */
    flex-wrap: wrap; /* 필요 시 버튼들이 다음 줄로 넘어갈 수 있도록 설정 */
  }
  .btn-wr .btn {
    margin-left: 5px !important;
    display: block; /* 버튼들이 한 줄에 하나씩 나오도록 설정 */
    width: 100%; /* 버튼들이 전체 너비를 차지하도록 설정 */
    margin-bottom: 10px; /* 버튼들 사이의 하단 여백 추가 */
  }
  .sec-vis .btn-wr button + button {
    margin-left: 0px;
  }
  .hdr-wrap .logo,
  .footer-info .logo {
    width: 120px;
  }
  .sec-vis {
    padding-bottom: 210px;
    height: auto;
  }
  .sec-vis .btn-wr button {
    width: 130px;
  }
  .sec-plan .plan-inner {
    display: block;
  }
  .plan-price .num-price {
    font-size: 3rem;
  }
  .plan-card .card-category {
    margin-top: 1rem;
  }
  .plan-price {
    margin-top: 0;
  }
  .sec-event h2 br {
    display: block;
  }
  .plan-items + .plan-items {
    margin-top: 2.4rem;
  }
  .sec-event button {
    margin-top: 2rem;
    width: 100px;
  }
}
