/*========================================
            ALL COMMON PART STYLE
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard-dynamic-subset.css');

:root {
  --pfamily: 'Pretendard Variable', 'Pretendard', 'Roboto', 'Noto Sans KR', sans-serif;
  --red: #ff3838;
  --gray: #777777;
  --gray100 : #f6f6f6;
  --text: #525252;
  --blue: #1494a9;
  --black: #111;
  --green: #11b76b;
  --purple: #b12fad;
  --orange: #e86121;
  --yellow: #ffab10;
  --body: #f5f6f7;
  --border: #e8e8e8;
  --heading: #191919;
  --primary: #11338c;
  --sub-heading: #565765;
  --green-chalk: #ddffd5;
  --green-dark: #072f17;
  --gray-chalk: #cccccc;
  --intro-bg: #f8fffa;
  --facebook: #3b5998;
  --linkedin: #0e76a8;
  --twitter: #00acee;
  --google: #E60023;
  --instagram: #F77737;
  --caution : #cd7c18;
  --sec : #6878a1;
  --gray1 : #bcbcbd;
  --graytxt :#a6a6a9;
  --primary-bshadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  --primary-tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1);

  --awesome : 'Font Awesome 5 Free';

  --btn-h : 50px;

  --container-w : 1200px;
  --conts-w : 1200px;
  --gutter-x : 15px;

	--fsize-tit : 34px;
	--fsize-s : 14px;
	--fsize-txt3 : 22px;
	--ftit-d2 : 26px;
	--fsize26: 26px;
	--fsize24: 24px;
	--fsize22 : 22px;
	--fsize20: 20px;
	--fsize18: 18px;
	--fsize14 : 14px;

	--shop-border-radius: 10px;
	--border-radius :10px;
	--btn-radius: 8px;
	--form-radius: 8px;
}

* {
  margin: 0px;
  padding: 0px;
  outline: 0px;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

ul,
ol,
li,
dl,
dt,
dd {margin:0; padding: 0px; list-style: none;}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
span,
details-label new {
  margin-bottom: 0px;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background:#fff;;
  font-size: var(--bodysize);
  font-family: var(--pfamily);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--heading);
}

em {font-style:normal;}
p, a {white-space:wrap;}
a {color:var(--primary);}

input:not([type='radio'], 
[type='checkbox']) {width:100%; height:46px; padding:10px; background:#fff; border:1px solid #ddd; border-radius:var(--form-radius);}
select {width:100%; height:45px; padding:10px; border:1px solid #ddd; border-radius:var(--form-radius)!important;}
textarea {padding:10px; border-radius:5px; border:1px solid #ddd;}

input::placeholder,
textarea:placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-size: 1rem;
  color: var(--gray);
  text-transform: capitalize;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-size: 1rem;
  color: var(--gray);
  text-transform: capitalize;
}

input::placeholder,
textarea::placeholder {
  font-size: 0.9375rem;
  color: var(--gray);
  text-transform: capitalize;
}

input,
button {
  border: none;
  outline: none;
  background: none;
}

button:focus {
  outline: none;
}

@media (max-width: 575px) {
  .col {
    padding: 0px 4px;
  }
}

@media (max-width: 991px) {
  .content-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.txt_b {font-weight:700;}
.txt_caution {color:var(--caution);}

.trans-3s, 
.blog-widget-form input,
.blog-title a,
.blog-img img,
.blog-meta li a,
.blog-btn,
.blog-btn i,
.comment-meta a,
.comment-reply button {
	transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

/*버튼*/
.btn {
  border: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 14px 20px/*32px*/;
  border-radius: var(--btn-radius);
  border: 2px solid var(--black);
}

.btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn i {
  margin-right: 5px;
}

.btn-inline {
  color:#fff;
  background: var(--black);
}

.btn-inline:hover {
  color: var(--black);
  background:#fff;
}

.btn-outline {
  color: var(--black);
  background:#fff;
  border: 2px solid #111;
}

.btn-outline:hover {
  color:#fff;
  background: var(--black);
}

.btn-primary {background:var(--primary); border:1px solid var(--primary)}
.btn-primary:hover {background:#586fab; border:1px solid #586fab;}
.btn_prime {background:var(--black);	color:#fff;}
.btn_prime:hover {background:var(--primary); color:#fff; border:2px solid var(--primary);}
.btn_round {border-radius:10px;}
.btn_outline {color: var(--primary); background:#fff!important; border:1px solid var(--primary);}
.btn_outline:hover {color:#fff; background: var(--primary)!important;}
.btn_outline_gray {border:1px solid #ccc; color:#666;}
.btn_outline_gray:hover {background:#f6f6f6;}
.btn_gray1 {background:#a3a3a3; border:none; color: #fff;}
.btn_gray1:hover {background:#848484; color:#fff;}
.btn_sm {padding:6px 10px; border-radius:3px;}

.flex-row {display:flex; flex-flow:row wrap;}

.alert {
  border: none;
  margin: 0px;
  padding: 0px 15px;
  border-radius: 0px;
}

.ellipsis {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden
}

.ellipsis_multi {
  width:100%;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
}

.sub {padding-bottom:120px;}

/* 헤더 탑*/
.header-top {
	padding: 8px 0px;
	background:#eff1f4;
}
.header-top.active {
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	left: 0px;
	width: 100%; padding:5px 0;
	z-index: 5;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s;
}

.header-top-welcome p {
  font-size: 14px;
  color:#75787c;
  letter-spacing: 0.3px;
}

.header-top-select {
  margin-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid var(--green);
}

.header-select:last-child {
  border: none;
}

.header-select i {
  font-size: 16px;
  margin-right: 8px;
  color:#fff;
}

.header-select .nice-select {
  line-height: 20px;
}

.header-select .nice-select::after {
  border-right-color:#fff;
  border-bottom-color:#fff;
}

.header-select .nice-select .current {
  color:#75787c;
}

.header-top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-top-list li {margin-left:0; /*overflow:hidden;*/}
.header-top-list li a {
  font-size: 14px;
  color:#75787c;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.header-top-list li a:hover {
  color: var(--primary);
}
.header-top-list .navbar-item:last-of-type .dropdown-position-list {left:auto; right:0;}
.header-top-list .navbar-item:last-of-type .dropdown-position-list::before {left:auto; right:12px;}
.header-top-list .divide {border-top:1px dashed #ddd;}
@media (max-width: 991px) {
  .header-top-welcome {margin-top:5px; margin-bottom:5px; padding:5px 10px; background:#e3e5e9; border-radius:50px; text-align:center;}
  .header-top-welcome p {font-size:12px;}
  .header-top-select {
    width: 270px;
    margin: 0px auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-top-welcome {
    text-align: center;
  }
}

/*헤더*/
.header-part {
  background:#fff;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-part.active {
  position: -webkit-sticky;
  position: sticky;
  top: 34px;
  left: 0px;
  width: 100%;
  z-index: 3;
  background:#fff;
  /*-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
	*/
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-part.active .header-content {
  padding:10px 0px;
}

.header-part.active .header-widget:hover i {
  background: var(--primary);
}

.header-part.active .header-widget sup {
  border-color:#fff;
}

.header-part.active .header-form {
  background:#fff;
  border-color: var(--primary);
}

.header-part .header-form {overflow:hidden;}
.header-part.active .header-form input,
.header-part.active .header-form button i {height:40px;}
.header-part .header-form input {border:none;}

.header-content {
  padding: 18px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-logo {
  margin-right: 50px;
}

.header-logo img {
  width: auto;
  height: 48px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-widget-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-widget-group .header-widget {
  margin-left: 20px;
}

.header-widget-group .header-widget:first-child {
  margin-left: 40px;
}

.header-widget {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-widget:hover i {
  color:#fff;
  background: var(--primary);
  text-shadow: var(--primary-tshadow);
}

.header-widget:hover span {
  color: var(--primary);
}

.header-widget img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header-widget i {
  width: 40px;
  height: 40px;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-widget span {
  font-size: 15px;
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-align: left;
  text-transform: capitalize;
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-widget span small {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  font-family: sans-serif;
  display: block;
}

.header-widget sup {
  position: absolute;
  top: -4px;
  left: 20px;
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  color:#fff;
  background: var(--primary);
  border: 2px solid#fff;
  text-shadow: var(--primary-tshadow);
}

.header-cart span {
  font-size: 12px;
  margin-left: 15px;
  line-height: 20px;
  text-transform: uppercase;
}

.header-form {
  width: 100%;
  margin: 0px 50px;
  border-radius: 50px;
  background:#fff;
  border: 1px solid #616674;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-form:focus-within {
  background:#fff;
  border-color: var(--primary);
}

.header-form input {
  width: 100%;
  height: 45px;
  font-size: 15px;
  padding-left: 15px;
}

.header-form button i {
  width: 45px;
  height: 45px;
  font-size: 15px;
  line-height: 45px;
  text-align: center;
  border-radius: 8px;
  color: var(--text);
  display: inline-block;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-form button i:hover {
  color: var(--primary);
}

.header-media-group {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-media-group a img {
  width: auto;
  height: 45px;
}

.header-user img,
.header-src img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header-user i,
.header-src i {
  width: 40px;
  height: 40px;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.header-user i:hover,
.header-src i:hover {
  color:#fff;
  background: var(--primary);
}

@media (max-width: 991px) {
  .header-content {
    padding: 10px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-media-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-widget-group,
  .header-widget,
  .header-logo {
    display: none;
  }
  .header-form {
    display: none;
    margin: 10px 0px 0px;
  }
  .header-form.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-widget span {
    /*display: none;*/
  }
}

/*nav관련*/
.nav-pills .nav-link {
  font-weight: 400;
  list-style: decimal;
}

.nav-pills .nav-link.active {
  color: var(--primary);
  background: transparent;
}

@media (max-width: 991px) {
  .nav {
    margin-bottom: 30px;
  }
}

/* 메뉴 */
.navbar-part {
  position: absolute;
  top: 128px;
  left: 0px;
  width:100%;
  overflow-x:clip;
  z-index: 2;
  background:#fff;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
    border-bottom:1px solid #c5c6c9;
}
.navbar-part.active {
	position: -webkit-sticky;
    position: sticky;
    top:96px;
    left: 0px;
    z-index:2;
    background:#fff;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;}


.navbar-part.active .navbar-item > .navbar-link {padding: 15px 0px;}

.navbar-part .row {width:100%;}

.navbar-content {
	width:100%;
  border-top: 1px solid #575960;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-item {
  margin-right: 30px;
}

.navbar-item:last-child {
  margin-right: 0px;
}

.navbar-link {
  padding:20px 0px;
  font-weight: 500;
  color: var(--text);
  text-transform: capitalize;
}

.navbar-link:hover {
  color: var(--primary);
}

.navbar-focus-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navbar-focus-list li {
  margin-left: 30px;
}

.navbar-focus-list li:first-child {
  margin-left: 0px;
}

.navbar-focus-list li a {
  font-weight: 500;
  color: var(--text);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.navbar-focus-list li a:hover {
  color: var(--primary);
}

.navbar-focus-list li a i {
  font-size: 18px;
  margin-right: 5px;
}

.navbar-info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar-info {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-info:last-child {
  margin-right: 0px;
}

.navbar-info i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--black);
}

.navbar-info p small {
	margin-bottom:-2px;
  font-size: 14px;
  line-height: 16px;
  display: block;
  text-align: left;
  text-transform: capitalize;
  color:#707070;
}

.navbar-info p span {
  font-size: 15px;
}

.navbar-info a, .navbar-info a:hover {
	color:inherit;
}

.navbar-part .navbar-content > .navbar-list:last-of-type .dropdown-submenu .dropdown-position-list {border:1px oslid red; left:auto; right:calc(100% + 5px); }
.navbar-part .navbar-content > .navbar-list:last-of-type .dropdown-submenu .dropdown-position-list::before {left: auto; right: -8px; transform: rotate(130deg);}

@media (max-width: 992px) {
  .navbar-part {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-link {
    font-size: 15px;
  }
  .navbar-info {
    margin-right: 15px;
  }
  .navbar-info p span {
    font-size: 14px;
  }
  .navbar-info i {
    margin-right: 10px;
  }
}

.nav-tabs {
  border: none;
  padding: 25px 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background:#fff;
}

.nav-tabs li {
  padding: 0px 30px;
  border-right: 1px solid var(--border);
}

.nav-tabs li:last-child {
  border: none;
}

.tab-link {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.tab-link:hover {
  color: var(--primary);
}

.tab-link i {
  font-size: 18px;
  margin-right: 3px;
}

.tab-link.active {
  color: var(--primary);
}

.tab-pane {
  display: none;
  padding: 0px;
}

.tab-pane.active {
  display: block;
}

@media (max-width: 575px) {
  .nav-tabs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav-tabs li {
    padding: 5px;
    border: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .nav-tabs {
    padding: 25px 10px;
  }
  .nav-tabs li {
    padding: 0px 20px;
  }
}

/*사이드 패널*/
.nav-sidebar {
  position: fixed;
  top: 0px;
  left: -320px;
  width: 280px;
  height: 100vh;
  padding: 0px;
  z-index: 100;
  background:#fff;
  -webkit-box-shadow: 15px 0px 25px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 15px 0px 25px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.nav-sidebar.active {
  left: 0px;
}

.nav-sidebar .nav-list li ul li a {padding:10px 20px;}
.nav-sidebar .nav-list li ul ul li {padding-left:20px;}
.nav-sidebar .dropdown-list {padding:0;}
.nav-sidebar .nav-list li {position:relative;}
.nav-sidebar .nav_arrow {position:absolute; top:24px; right:0; z-index:50;}

.nav-sidebar .nav_arrow.active~a {color: var(--primary);  background: var(--green-chalk);}
.nav-sidebar .nav-link::before {display:none;}
.nav-sidebar .dropdown-link:hover {}

.nav-link:hover {
    color: var(--primary);
    background: var(--chalk);}

.nav-header {
  padding: 15px 0px;
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.nav-header a img {
  width: auto;
  height: 40px;
}

.nav-close {
  position: absolute;
  top: 50%;
  right: -18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.nav-close i {
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--text);
  background:#fff;
  text-shadow: var(--primary-tshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.nav-close i:hover {
  color:#fff;
  background: var(--primary);
}

.nav-content {
  padding: 0px 18px;
  overflow-y: scroll;
  max-height: calc(100vh - 100px);
}

.nav-btn {
  width: 100%;
  padding: 20px 0px;
  margin-bottom: 20px;
  text-align: center;
  background: var(--chalk);
}

.nav-btn .btn {
	display:block;
	width:90%;
	margin: 10px auto;
  font-size: 14px;
  padding: 15px 25px;
  letter-spacing: 0.3px;
	border:2px solid var(--black);
}

.nav-btn .btn i {
  font-size: 14px;
}

.nav-profile {
  width: 100%;
  text-align: center;
  padding: 18px 0px 0px;
}

.nav-user {
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.nav-user img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px solid#fff;
}

.nav-name {
  margin-bottom: 18px;
  text-transform: capitalize;
}

.nav-name a {
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.nav-name a:hover {
  color: var(--primary);
}

.nav-select-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.nav-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 18px;
  padding-right: 18px;
  line-height: 20px;
  border-right: 1px solid var(--gray-chalk);
}

.nav-select:last-child {
  padding: 0px;
  margin: 0px;
  border: none;
}

.nav-select i {
  margin-right: 5px;
}

.nav-list {
  width: 100%;
}

.nav-list li {
  width: 100%;
}

.nav-link {
  width: 100%;
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--text);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--chalk);
}

.nav-link::before {
  right: 15px;
}

.nav-link i {
  font-size: 20px;
  margin-right: 12px;
}

.nav-link.active {
  color: var(--primary);
  background: var(--green-chalk);
}

.nav-info-group {
  padding: 20px 0px;
  margin-top: 15px;
  margin-bottom: 25px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nav-info {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.nav-info:last-child {
  margin-bottom: 0px;
}

.nav-info i {
  font-size: 30px;
  margin-right: 15px;
  color: var(--primary);
}

.nav-info p small {
  font-size: 14px;
  line-height: 18px;
  display: block;
  text-align: left;
  text-transform: capitalize;
}

.nav-info p span {
  font-size: 16px;
  font-weight: 500;
}

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

.nav-footer p {
  font-size: 14px;
  color: var(--gray);
}

.nav-footer p a {
  color: var(--primary);
}

.cart-sidebar {
  position: fixed;
  top: 0px;
  right: -450px;
  width: 400px;
  height: 100vh;
  z-index: 5;
  background:#fff;
  -webkit-box-shadow: -15px 0px 25px 0px rgba(0, 0, 0, 0.15);
          box-shadow: -15px 0px 25px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.cart-sidebar.active {
  right: 0px;
}

.cart-header {
  padding: 18px 25px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cart-total i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--black);
}

.cart-total span {
  font-weight: 500;
  color: var(--black);
  text-transform: capitalize;
}

.cart-close {
  position: absolute;
  top: 50%;
  left: -18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cart-close i {
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--text);
  background:#fff;
  text-shadow: var(--primary-tshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.cart-close i:hover {
  color:#fff;
  background: var(--primary);
}

.cart-list {
  height: 100%;
  padding: 0px 15px;
  max-height: calc(100vh - 210px);
  overflow-y: scroll;
}

.cart-item {
  padding: 15px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid var(--border);
}

.cart-item:hover .cart-media button {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-media {
  position: relative;
  margin-right: 25px;
}

.cart-media a img {
  width: 100px;
  border-radius: 8px;
}

.cart-media button {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.cart-media button i {
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  color: var(--red);
  background: rgba(255, 255, 255, 0.9);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.cart-media button i:hover {
  color:#fff;
  background: var(--red);
}

.cart-info-group {
  width: 100%;
}

.cart-info {
  margin-bottom: 13px;
}

.cart-info h6 {
  font-weight: 400;
  text-transform: capitalize;
}

.cart-info h6 a {
  color: var(--heading);
}

.cart-info p {
  font-size: 14px;
}

.cart-action-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-action-group .product-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-action-group .product-action button i {
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
  border-radius: 5px;
}

.cart-action-group .product-action input {
  width: 45px;
  height: 30px;
  font-size: 14px;
  border-radius: 5px;
  color: var(--primary);
  background: var(--chalk);
}

.cart-action-group h6 {
  font-weight: 500;
  color: var(--primary);
}

.cart-footer {
  padding: 20px 15px 0px;
  text-align: center;
  -webkit-box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08);
}


/* ==============================
	풋터 
==============================*/
.footer-part .ft_top {padding:25px 0 15px; border-top:1px solid #dbdbdb;  border-bottom:1px solid #dbdbdb;}
.footer-part .ft_top .container {display:flex; justify-content:space-between;}
.footer-part .ft_top .fcc {display:flex;}
.footer-part .ft_top .tel, .footer-part .ft_top .online a {display:flex; flex-flow:column wrap; font-size:18px; font-weight:500; color:var(--black);}
.footer-part .ft_top .tel {margin-right:50px;}
.footer-part .ft_top .fcc em {font-size:14px; color:#807f7f; font-weight:400; font-style:normal;}
.footer-part .ft_top .fcc .tel {font-size:24px; font-weight:700; color:var(--black);}
.footer-part .ft_top .ft_menu a {margin-left:20px; font-size:14px; color:var(--black);}
.footer-part .ft_btm {padding:24px 0 40px; color:#9a9a9a; font-size:14px; font-weight:300; line-height:1.4;}

.footer-widget {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  width: 180px;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-social li {
  display: inline-block;
  margin-right: 7px;
}

.footer-social li:last-child {
  margin-right: 0px;
}

.footer-social li a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: var(--primary);
  background:#fff;
  text-shadow: var(--primary-tshadow);
  -webkit-box-shadow: var(--primary-bshadow);
          box-shadow: var(--primary-bshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.footer-social li a:hover {
  color:#fff;
  background: var(--primary);
}

.footer-title {
  margin-bottom: 25px;
  letter-spacing: -0.3px;
  text-transform: capitalize;
}

.footer-widget.contact {
  margin-left: 30px;
}

.footer-contact li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}

.footer-contact li:last-child {
  margin-bottom: 0px;
}

.footer-contact li i {
  font-size: 30px;
  margin-right: 15px;
  color: var(--primary);
}

.footer-contact li p span {
  display: block;
}

.footer-links {
  display: -ms-grid;
  display: grid;
  grid-gap: 50px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 0px;
}

.footer-links ul li a {
  color: var(--text);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.footer-links ul li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-app {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.footer-app a img {
  width: 100%;
}

.footer-bottom {
  margin-top: 75px;
  padding: 20px 35px 15px;
  border-radius: 8px 8px 0px 0px;
  background: var(--primary);
  border-top: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-copytext {
  font-size: 15px;
  color:#fff;
}

.footer-copytext a {
  color: var(--green-chalk);
}

.footer-copytext a:hover {
  text-decoration: underline;
}

.footer-card a {
  margin-left: 10px;
}

.footer-card a img {
  width: 50px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .footer-part .container-fluid {
    padding: 0px 25px;
  }
  .footer-widget.contact {
    margin-left: 0px;
  }
}

@media (max-width: 1199px) {
  .footer-part {
    padding-top: 0;
  }
  .footer-widget {
    margin-bottom: 40px;
  }
  .footer-bottom {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    padding: 25px 15px 75px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer-copytext {
    margin-bottom: 10px;
  }
  .footer-card a {
    margin: 0px 3px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom {
    padding: 25px 30px 75px;
  }
}

/*하단 상담하기*/
.bottom_inquiry {position:fixed; bottom:0; left:0; width:100%; background:#262c3b; color:#fff; z-index:4;}
.bottom_inquiry .conts_wrap {display:flex; gap:30px; width:100%; max-width:1200px; margin:0 auto; padding:20px 0; }
.bottom_inquiry .col1 {display:flex; flex-direction:column; justify-content: center;}
.bottom_inquiry h2 {margin-right:20px; font-size: 26px; font-weight: 500; margin-top: 4px;}
.bottom_inquiry .tel {font-size:32px; font-weight:700; color:#fee28a; }
.bottom_inquiry .col2 {flex:1;}
.bottom_inquiry .input_wrap {display:flex; align-items:center; gap:10px;}
.bottom_inquiry input:not([type="checkbox"]),
.bottom_inquiry select {flex:1; width:22%; padding:12px; background:#fff; border:none; border-radius:4px; color:var(--text);}
.bottom_inquiry .agree {margin-top:10px;}
.bottom_inquiry .agree a {display:inline-block; margin-left:14px; color:#eee; text-decoration:underline;}
.bottom_inquiry button {background: #526eb3; border-radius: 10px; padding:12px 20px; border-radius:4px; color: #fff; font-weight:700; font-size: 18px;}
.bottom_inquiry .logo {margin-left:3px; margin-bottom:3px;}

.agree_terms .modal-dialog {width:100%; max-width:600px; background:#fff; border-radius:var(--border-radius);}
.agree_terms .modal-title  {font-size:var(--fsize18); color:var(--black);}
.agree_terms .modal-body {white-space: pre-wrap; }

/*인트로파트*/
.intro-part {
  padding: 80px 0px;
  background: #f5f6f7;
}

.intro-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.intro-icon {
  margin-right: 20px;
}
.intro-icon i {width: 50px; height: 50px; font-size: 18px; line-height: 43px; border-radius: 50%;  text-align: center;  display: inline-block;  color: var(--black);  background:#fff; border: 3px double var(--black); -webkit-box-shadow: var(--primary-bshadow); box-shadow: var(--primary-bshadow); transition: all linear .3s;
  -webkit-transition: all linear .3s;  -moz-transition: all linear .3s;  -ms-transition: all linear .3s;  -o-transition: all linear .3s;}
.intro-wrap:hover .intro-icon i {color:#fff; background: var(--primary); border: 3px double var(--primary); }
.intro-content h5 {
  font-size: 17px;
  margin-bottom: 8px;
  text-transform: capitalize;
  color:var(--black);
}

.intro-content p {
  font-size: 15px;
  line-height: 22px;
  color:var(--black);
  word-break:keep-all;
}

@media (max-width: 767px) {
  .intro-part {
    padding: 60px 0px 30px;
  }
  .intro-wrap {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .intro-part {
    padding: 80px 0px 50px;
  }
  .intro-wrap {
    margin-bottom: 30px;
  }
}


/* 섹션 */
.section {
  margin-bottom: 115px;
}

.inner-section {
  margin-bottom: 120px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-weight:700;
  color:#000;
}

.section-btn-50 {
  text-align: center;
  margin-top: 50px;
}

.section-btn-25 {
  text-align: center;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .section {
    margin-bottom: 55px;
  }
  .inner-section {

  }
  .section-heading,
  .newitem-part .section-heading {
    margin-bottom: 30px!important;
  }
  .section-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .section {
    margin-bottom: 75px;
  }
}

/*서브페이지 공통*/
/*레이아웃 관련*/
.container, 
.container-fluid, .container-lg, .container-md, .container-sm, .container-xl,
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
	padding-right:var(--gutter-x);
	padding-left:var(--gutter-x);
}

.row {margin-right:0; margin-left:0;}

/*제목*/
.single-banner {
  background-size: cover !important;
  margin-top:70px; margin-bottom:0;
  padding:80px 0px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.single-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /*background: -webkit-gradient(linear, right top, left top, from(rgba(6, 23, 56, 0.6)), to(rgba(17, 151, 68, 0.6)));
  background: linear-gradient(to left, rgba(6, 23, 56, 0.6), rgba(17, 151, 68, 0.6));*/
  z-index: -1;
}

.single-banner h1,
.single-banner h2 {
  font-size: 34px;
  color: var(--black)!important;
  text-transform: uppercase;
  font-weight:700;
}

.breadcrumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  margin: 0px;
}

.breadcrumb .active {
  color: black !important;
}

.breadcrumb-item {
  font-size: 14px;
  padding: 0px !important;
  text-transform: capitalize;
}

.breadcrumb-item a {
  color: #a3a3a3;
}

.breadcrumb-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #a3a3a3;
  padding: 0px 8px;
}

.tit {padding: 70px 0px 40px;}
.title_d1 {margin-top:2.5rem; margin-bottom:1.25rem;}
.title_d1 > * {font-size:2.25rem; font-weight:700; color:var(--black);}
.title_d2 > * {font-size:1.375rem; font-weight:700; color:var(--black);}

/*테이블*/
th, 
td {font-size:1rem;}
thead tr {background: var(--black);}
thead tr th {
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  padding: 15px 10px;
  color:#fff;
  border-right: 1px solid var(--border);
}
thead tr th:last-child {
  border-right: none;
}
tbody tr {
  border-bottom: 1px solid var(--border);
}
tbody tr td {
  padding: 12px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

tbody tr td:last-child {
  border-right: none;
}

.table-scroll {padding:0; border-radius:var(--shop-border-radius); background:#fff;overflow-x: auto;}
.table-scroll table {width:100%;}

.table-list {width: 100%;}
.table-name {
  white-space: nowrap;
  text-transform: capitalize;
}

.table-image img {
  width: auto;
  height: 100px;
}

.table-date {text-align:left;}
.table-price {text-align:right;}
.table-price h6 {
  white-space: nowrap;
}

.table-price h6 small {
  font-size: 13px;
  margin-left: 3px;
  color: var(--gray);
  font-family: sans-serif;
}

.table-desc {text-align:left;}
.table-desc p {
  width: 150px;
  font-size: 15px;
  text-align: left;
}

.table-desc p a {
  text-transform: capitalize;
}

.table-desc p a:hover {
  text-decoration: underline;
}

.table-vendor a {
  font-weight: 500;
  color: var(--heading);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.table-vendor a:hover {
  color: var(--primary);
}

.table-status h6 {
  text-transform: capitalize;
}

.table-status .stock-in {
  color: #999;
}

.table-status .stock-out {
  color: var(--orange);
}

.table-shop {
  width: 180px;
}

.table-shop .product-add {min-width:130px; margin-top:6px; padding:6px 10px; color: var(--black);  background:#efefef;  border-radius:8px; font-size:var(--fsize-s);}

.table-shop .action-plus i,
.table-shop .action-minus i {
  background:#fff;
}

.table-action button i,
.table-action a i {
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  margin: 3px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.table-action .view i {
  color: var(--black);
  background:#fff;
}

.table-action .view i:hover {
  color:#fff;
  background: var(--black);
}

.table-action .wish i {
  color: var(--green);
  background:#fff;
}

.table-action .wish.active i {
  color:#fff;
  background: var(--green);
}

.table-action .trash i {
  color: #666;
  background:#fff;
}

.table-action .trash i:hover {
  color:#fff;
  background: #111;
}

.table-action .view i,
.table-action .trash i {
  background: var(--chalk);
}

/*========================================
    필터
=========================================*/
/*상단 필터*/
.top-filter {display: flex; align-items: center; justify-content: space-between; width:100%; margin-bottom: 25px; padding:0 6px;}
.filter-short {display: flex; align-items: center; justify-content: center;}
.filter-show {display: flex; align-items: center; justify-content: center;}

.filter-label {
  font-size: 14px;
  font-weight: 500;
  margin-right: 8px;
  white-space: nowrap;
  text-transform: uppercase;
}

.filter-select {
  height: 40px;
  background-color: transparent;
}

.filter-select:focus-within {
  border-color: #ced4da;
}

.filter-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.filter-action a i {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: var(--text);
  background: transparent;
}

.filter-action a i:hover {
  color: var(--primary);
}

.filter-action .active i {
  color:#fff;
  background: var(--primary);
}

.filter-action .active i:hover {
  color:#fff;
}

@media (max-width: 575px) {
  .filter-label,
  .filter-action {
    display: none;
  }
  .filter-show {
    width: 80px;
  }
  .filter-short {
    width: 130px;
  }
}

.top-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

.privacy-part .nav-link-a {
    width: 100%;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}


.inner-section .disabled {border:none;}
.require:after {content:"*"; color:var(--danger);}

/*페이지네이션*/
.list_btm {width:100%;}
.bottom-paginate {display: flex; align-items: center; justify-content: space-between; width:100%; padding:0 6px; padding-top: 25px;}
.bottom-paginate.split2 .custom-pagination {justify-content: flex-end;}
.page-item {margin-left: 10px;}
.page-item.active .page-link {color:#fff; background:var(--black); border:1px solid var(--black);}
.page-link {width: 40px; height: 40px; line-height: 40px; text-align: center; font-weight: 400; padding: 0px; background:#fff; border:none; text-decoration:none; z-index: unset;}
.page-link:hover {color: #fff; background: var(--black);}
.page-item.disabled {background-color: transparent; color:inherit; border: none;}
.page-item.disabled .page-link {color: #999; pointer-events: none; cursor: auto; background:#fff;}
.page-item.active .page-link:focus {justify-content: center;}
.page-item:first-child .page-link,
.page-item:last-child .page-link,
.page-item:nth-child(2) .page-link,
.page-item:nth-last-child(2) .page-link {display:flex; justify-content:center; line-height:36px; font-size:24px; border-radius:0;}
.page-link:focus {box-shadow: none;}

.custom-pagination {display: flex; justify-content: center; width:100%;  margin-left: auto;}

.page-info {width:100%; font-weight: 400; font-size:var(--fsize-s);}

/*==============================
	탭
==============================*/
.tab-link {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--heading);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tab-link:hover {
    color: var(--primary);
}

.tab-link i {
    font-size: 18px;
    margin-right: 3px;
}

.tab-link.active {
    color: var(--primary);
}

.tab-pane {display: none; width:100%; max-width:1080px; margin:0 auto; padding: 0px;}
.tab-pane.active {display: block;}

.ui-menu
{
    position: relative;
    list-style: none;
    background-color: white;
    border-radius: 18px;
    z-index:10;
    box-shadow: 5px 0px 8px white;
    width: 214px;
    line-height: 200%;
    font-size: 18px;
    padding: 15px 0;
    border: solid 1px grey;

}
.ui-menu .ui-menu-item
{
    margin: none;
    padding-left: 15px;
    padding-right:10px;
}

.typeahead li.active .dropdown-item {
    color: #16181b;
    text-decoration: none;
    background-color: #e9ecef
}

#search-form {
    position: relative;
}

.typeahead.dropdown-menu {
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.value-color-green {
    color: #1ec800 ;
    font-size: 17px;
}

.privacy-part .nav-link-a:hover {
    color: var(--primary);
    background: var(--chalk);
}

.privacy-part .nav-link-a.active {
    color: var(--primary);
    background: var(--chalk);
}

.privacy-part .nav-link-a::before {
    right: 15px;
}

.privacy-part .nav-link-a i {
    font-size: 20px;
    margin-right: 12px;
}

.privacy-part .nav-link-a.active {
    color: var(--primary);
    background: var(--green-chalk);
}



.spinner {
    margin-right: 5px;
    display: none;
}

.sso-login-btn {
    border: 1px solid #ddd !important;
}

.sso-login-btn img {
    width: 25px;
}

.page-pc .pay-type-content {
    display:none;
    padding: 25px;
    margin-top:-2px;
    margin-bottom: 25px;
    background: #fff;
    border-color: #b4bdd3;
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
    /*padding: 10px;
    border: 2px solid #c5c7cd;
    background-color: #f4f6fa;
	*/
}

.pay-type-sections {display:flex; flex-flow:row wrap; justify-content:space-between;}
.pay-type-sections li {width:49.5%;}
.pay-type-sections input,
.pay-type-sections select {width:100%;}

#paymethod1 {display:block;}

.cypto2-group li {width:33%;}

.pay-cypto li {width:42%;}
.pay-cypto .avail {width:15%; text-align:center;}
.pay-cypto .avail strong {display:block; margin-top: 0.5rem; line-height:45px;}
.pay-cypto .avail i {line-height:45px;}

.page-pc .virtual-account-payment-explain {
    padding-top: 20px;
    margin-bottom: 10px;
}

.checkout-part input {
    padding: 0 3px;
}

.page-pc input:read-only,
.page-pc input:disabled {
    padding: 0 3px;
    color: black;
    border-color: #e9e4e4;
    background: #fff;
}

.page-pc .virtual-account-payment-explain dd {
    display: list-item;
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 5px;
    line-height: 15px;
    color: #888;
    font-size: 13px;
}

#medium-modal .sort-div {
    margin-right: 10px;
}


.rounded-top-0 {
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important
}
.rounded-bottom-0 {
    border-bottom-right-radius: 0!important;
    border-bottom-left-radius: 0!important
}
.rounded-left-0 {
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important
}
.rounded-right-0 {
    border-top-right-radius: 0!important;
    border-bottom-right-radius: 0!important
}

.radius-r0 {border-top-right-radius:0!important; border-bottom-right-radius:0!important;}
.radius-l0 {border-top-left-radius:0!important; border-bottom-left-radius:0!important;}

.custom-pagination {
    display: flex;
    justify-content: center;
    margin-left: auto;
}

.custom-pagination-page {
    display: flex;
    justify-content: center;
    margin-left: auto;
}

.pagination-page.disabled .page-link {
    color: #999;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #eee;
}


.page-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 400;
    border: 1px solid #ddd;
    padding: 0px;
    color: var(--text);
    background:#fff;
}

.pagination-page.active .page-link {
    color: white !important;
    background: black !important;
}

.login .login_sns button {
    width: 80%;
    height: 55px;
    margin-bottom: 8px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: white;
}

.form-text {
    color: var(--text);
    background: white;
    border: 1px solid black;
}

.end-event {
    opacity: 0.3;
}



.btn_orange {
    border-color: #d57755 !important;
    background: #d57755;
    font-size: 1.6rem;
    border-radius: 5px;
    color: #fff;
}

.btn_orange:hover {
    background: #cf5c33 !important;
    color: #fff;
}

/*폼 관련*/
.form-title {
  text-align: center;
  margin-bottom: 20px;
}

.form-title h3 {
  text-transform: capitalize;
}

.form-group {
  margin-bottom: 25px;
}

.form-group small {
  color: var(--gray);
  letter-spacing: 0.3px;
  padding: 0px 0px 0px 20px;
}

.form-group textarea {
  height: 150px;
  padding: 12px 20px;
}

.form-group label {margin-bottom: 2px; padding-left:4px; padding-right:3px; color:var(--black); font-size:0.9375rem; font-weight:500;}
.form-details-label new {
  font-weight: 500;
  margin: 0px 0px 7px 3px;
  white-space: nowrap;
  text-transform: capitalize;
}

.pay-type-sections input {
    padding: 0 10px 2px !important;
}

.form-control {
  width: 100%;
  height: 45px;
  border-radius:10px;
  padding: 0 10px 0;
  color: var(--text);
  background:var(--gray100);
  border: 1px solid #ddd;
  font-size:0.9375rem;
}

.form-control:focus-within {
  background: var(--chalk);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.form-control[type=file]::-webkit-file-upload-button,
.form-control[type=file]::file-selector-button {
  border: none;
  background: none;
  height: 45px;
  line-height: 45px;
  padding: 5px 15px 0px;
  color: var(--gray);
}

.form-control[type=file]::-webkit-file-upload-button:hover,
.form-control[type=file]::file-selector-button:hover {
  background-color: transparent;
}

.form-control[type=file]::-webkit-file-upload-button:focus,
.form-control[type=file]::file-selector-button:focus {
  border: none;
  outline: none;
}

.form-select {
  height: 45px;
  font-size: 15px;
  padding: 0px 16px;
  letter-spacing: 0.3px;
  background-size: 12px 10px;
  text-transform: capitalize;
  color: var(--text);
  cursor: pointer;
}

.form-select:focus-within {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--primary);
}

.form-check-input:focus {
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-btn {
  width: 100%;
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  line-height: 45px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  color:#fff;
  background: var(--black);
}

.form-input-group {
  position: relative;
}

.form-input-group:focus-within i {
  color: var(--primary);
}

.form-input-group input {
  padding: 0px 20px 2px 45px;
}

.form-input-group textarea {
  padding: 12px 20px 12px 45px;
}

.form-input-group i {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 45px;
  height: 45px;
  font-size: 18px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
}

.form-btn-group {
  width: 100%;
  height: 45px;
  font-weight: 500;
  line-height: 45px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  color:#fff;
  background: var(--primary);
}

.form-btn-group i {
  font-size: 15px;
  margin-right: 5px;
  /*display: inline-block;*/
}

/*모달*/
.backdrop {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index:100;
  width: 1000%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.backtop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  font-size: 15px;
  color:#fff;
  line-height: 48px;
  text-align: center;
  display: none;
  border-radius: 50%;
  background: var(--black);
  -webkit-animation: mahmud 2s infinite;
          animation: mahmud 2s infinite;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.modal-backdrop {height:100%;}

.cb-inner {
    padding-top: 0 !important;
}

#cb-flow {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}


.backtop:hover {
  color:#fff;
}

@-webkit-keyframes mahmud {
  0% {
    margin-bottom: 0px;
  }
  50% {
    margin-bottom: 15px;
  }
}

@keyframes mahmud {
  0% {
    margin-bottom: 0px;
  }
  50% {
    margin-bottom: 15px;
  }
}

.modal-dialog {margin-top:40px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

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

.modal-content {
  border: none;
  background: none;
  border-radius: 0px;
	border-radius: calc(.3rem - 1px);
}

.modal-header .close {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background: rgb(255 255 255 / 90%);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.modal-close {position: absolute; top:4px; right:4px; z-index: 1; width: 35px; height: 35px; font-size:22px; line-height: 35px; border-radius: 50%; text-align: center; display: inline-block; background:#fff;
  /*-webkit-box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2); box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2); transition: all linear .3s; -webkit-transition: all linear .3s; -moz-transition: all linear .3s;  -ms-transition: all linear .3s;  -o-transition: all linear .3s;*/}
.modal-close:hover {color:#fff; background: var(--black);}

.modal-form {
  width: 400px;
  padding: 30px;
  border-radius: 8px;
  background:#fff;
}

#modal-cancel-dormant-account .btn_ok {
    display:flex; align-items:center; justify-content:center;
    width:100%; height:45px; border-radius:50px; max-width: 230px;
    font-size: 15px !important;
}

#modal-cancel-dormant-account-success .modal-footer button,
#modal-cancel-dormant-account #dormant-cancel-btn {
    background-color: #ff661b;
}

#modal-cancel-dormant-account .modal-body {
    background-color: #f5f5f5;

}

#modal-cancel-dormant-account .modal-header {
    position: relative;
    background-color: #ff8012 !important;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 0.938rem;
    border-bottom: 1px solid rgba(0,0,0,.125);
    border-top-left-radius: calc(0.3125rem - 1px);
    border-top-right-radius: calc(0.3125rem - 1px);
}

@media (max-width: 400px) {
  .modal-form,
  .modal-dialog {
    width: 100%;
    max-width:calc(100% - 20px); margin:0 auto;
  }
}

@media (max-width: 1100px) {
  .modal-dialog {
    margin: 80px auto 50px;
  }  
}

/*==============================
	모바일 하단 메뉴
==============================*/
.mobile-menu {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 3;
  background: #fff;
  border-radius: 10px 10px 0px 0px;
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}

.mobile-menu a,
.mobile-menu button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80px;
  padding: 8px 0px;
  border-radius: 8px;
  position: relative;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: var(--chalk);
}

.mobile-menu a:hover i,
.mobile-menu button:hover i {
  color: var(--primary);
}

.mobile-menu a:hover span,
.mobile-menu button:hover span {
  color: var(--primary);
}

.mobile-menu a i,
.mobile-menu button i {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--text);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu a span,
.mobile-menu button span {
  font-size: 10px;
  line-height: 12px;
  color: var(--text);
  text-transform: uppercase;
}

.mobile-menu a sup,
.mobile-menu button sup {
  position: absolute;
  top: -5px;
  left: 75%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  background: var(--primary);
  border: 2px solid var(--green-chalk);
  text-shadow: var(--primary-tshadow);
}

.mobile-menu a .fas fa-shopping-basket,
.mobile-menu button .fas fa-shopping-basket {
  font-size: 18px;
}

@media (max-width: 991px) {
  .mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*==============================
	사이트패널
==============================*/
/*사이드 패널 - 카테고리*/
.category-sidebar {
  position: fixed;
  top: 0px;
  left: -320px;
  width: 280px;
  height: 100vh;
  z-index: 5;
  background: #fff;
  -webkit-box-shadow: 15px 0px 25px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 15px 0px 25px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.category-sidebar.active {
  left: 0px;
}

.category-header {
  padding: 15px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.category-title {
  color: var(--primary);
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.category-title i {
  margin-right: 8px;
}

.category-close {
  position: absolute;
  top: 50%;
  right: -18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.category-close i {
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--text);
  background: #fff;
  text-shadow: var(--primary-tshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.category-close i:hover {
  color: #fff;
  background: var(--primary);
}

.category-list {
  width: 100%;
  padding: 0px 15px;
  overflow-y: scroll;
  height: calc(100vh - 130px);
}

.category-item {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.category-link {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 15px;
  color: var(--text);
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.category-link i {
  font-size: 25px;
  margin-right: 15px;
  display: inline-block;
}

.category-footer {
  text-align: center;
  margin-top: 20px;
}

.category-footer p {
  font-size: 14px;
  color: var(--gray);
}

.category-footer p a {
  color: var(--primary);
}



@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 100%; max-width: 1320px;
    }
}

@media (max-width: 1200px) {
	.navbar-info-group {display:none;}
	.megamenu {width: 100%;}

    .header-part. .header-media-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
	}
	
	/**/
	.table-scroll {overflow-x: auto;}
	.table-scroll table {width:1200px;}
}

@media (max-width:992px) {
	.header-top .row {justify-content:space-between;}
	.header-top .col-md-7 {width:auto; max-width:none; padding-left:20px; padding-right:20px;}
	.header-top .col-md-12 {width:100%; padding-right:10px; padding-left:10px;}
	.header-top .col-md-5 {width:auto; padding-right:10px; padding-left:10px;}
	.header-top-select {width:auto; margin-top: 2px;}

	.header-part {border-bottom:1px solid #c5c6c9;}
	.header-part.active {top:70px;}

	.dropdown-position-list {left:auto; right:0;}
	.dropdown-position-list::before {left:auto; right:30px;}

	.single-banner {	margin-top:0; padding: 60px 0px;	}
	.single-banner h2 {
		font-size: 28px;
		margin-bottom: 0;
	}  
	.backtop {
		bottom: 55px;
	}
}

@media (max-width:576px) {
	:root {
		--fsize-tit : 28px;
		--fsize-s : 12px;
		--fsize-txt3 : 18px;	
		--ftit-d2 : 20px;
		--fsize26: 20px;
		--fsize24: 18px;
		--fsize22 : 20px;
		--fsize20: 18px;
		--fsize18:16px;
		--fsize14 : 12px;
	}

	html,
	body {font-size:14px;}

	.table-scroll table {width:680px;}

	/**/
	.footer-part .container {padding:0;}
	.footer-part .ft_top {padding:0; background:#242222; color:#fff;}
	.footer-part .ft_top .container {max-width:none; flex-flow:row wrap;}
	.footer-part .ft_top .fcc {flex-direction: column; gap:10px; width:100%; padding:25px 10px;}
	.footer-part .fcc > div {width:100%; text-align:center;}
	.footer-part .ft_top .fcc .tel,
	.footer-part .ft_top .online a {color:#fff;}
	.footer-part .ft_top .fcc em {color: #979696;}
	.footer-part .ft_top .fcc .tel {margin-right:0; border-right:1px solid #333;}
	.footer-part .ft_menu {width:100%; padding:10px 10px; background:#fff; text-align:center;}
	.footer-part .ft_top .ft_menu a {margin-left:0; margin:0 10px;}
	.footer-part .ft_btm .container {padding:0 20px; text-align:center; word-break:keep-all;}

	/**/
	.single-banner {padding-top:40px; padding-bottom:40px;}
	.single-banner h1 {font-size:28px;}

	.inner-section > .container > .row > div {padding-left:0; padding-right:0;}

    .page-pc .virtual-account-payment-explain dd {
        line-height: 18px;
    }
    .pay-type-sections li {width:100%!important;}
    .pay-cypto .avail {text-align:left;}
    .pay-cypto .avail strong {display:inline-block; line-height: inherit; margin-bottom: 20px;}

	.backtop {
		width: 42px;
		height: 42px;
		line-height: 42px;
		font-size: 14px;
	}

	.page-info {margin-bottom: 15px;}
}

/*==============================
	드롭다운
==============================*/
.dropdown-arrow {
  position: relative;
  padding-right: 18px !important;
}
.dropdown-arrow:hover::before {
  color: var(--primary);
}
.dropdown-arrow.root::before {
    content: "" !important;
}
.dropdown-arrow::before {
  position: absolute;
  content: "\ea99";
  top: 50%;
  right: 0px;
  font-size: 15px;
  line-height: 15px;
  color: var(--text);
  font-family: IcoFont;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.dropdown-link {
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.dropdown-link:hover {
  color: var(--primary);
  background: var(--chalk);
}
.dropdown-link:hover::before {
  color: var(--primary);
}
.dropdown-link::before {
    padding: 15px 20px;
  position: absolute;
  top: 50%;
  right: 18px;
  content: "\f054";
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.dropdown-link.active {
  color: var(--primary);
}
.dropdown-link.active::before {
  color: var(--primary);
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.dropdown-list {
  display: none;
  padding: 0px 20px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.dropdown-list li a {
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  border-radius: 8px;
  padding: 10px 15px 10px 35px;
  color: var(--text);
  background:#fff;
  position: relative;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.dropdown-list li a:hover {
  color: var(--primary);
  background: var(--chalk);
}

.dropdown-list li a::before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: "\f068";
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dropdown:hover .navbar-position-list {
    top: 30px !important;
}

.navbar-position-list {
    top: 60px !important;
    z-index: 1000 !important;
}
.navbar-position-list li {
    margin: 0 !important;
}
.dropdown:hover .dropdown-position-list {
  visibility: visible;
  opacity: 1;
  top: 70px;
}
.dropdown-position-list {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 2;
  width: 200px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all linear .1s;
  -webkit-transition: all linear .1s;
  -moz-transition: all linear .1s;
  -ms-transition: all linear .1s;
  -o-transition: all linear .1s;
}
.dropdown-position-list::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: -7px;
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.dropdown-submenu {position:relative;}
.dropdown-submenu .dropdown-arrow {
    display: flex;
    align-items: center;
	padding:8px 15px!important;
}
.dropdown-submenu .dropdown-arrow::before {transform: rotate(-90deg); top: 30%;}
.dropdown-position-list li a {
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  border-radius: 8px;
  padding:8px 15px;
  color: var(--text);
  background:#fff;
  white-space: nowrap;
  text-transform: capitalize;
}
.dropdown-position-list li a:hover {
  color: var(--primary);
  background: var(--chalk);
}
.dropdown-submenu .dropdown-position-list {top:0!important;  left: calc(100% + 15px); visibility:hidden!important;}
.dropdown-submenu:hover .dropdown-position-list {left: calc(100% + 5px); visibility: visible!important; opacity: 1;}
.dropdown-submenu .dropdown-position-list::before {top:15px;left:-8px;-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
.dropdown-megamenu {position: static;}
.dropdown-megamenu:hover .megamenu {visibility: visible; opacity: 1; top: 199px;}

/*==============================
	메가메뉴
==============================*/
.megamenu {
  position: absolute;
  top: 230px;
  left: 50%;
  z-index: 2;
  width: 1180px;
  border-radius: 8px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.megamenu-scroll {
  height: 380px;
  overflow-y: scroll;
}
.megamenu-wrap {
  margin-bottom: 30px;
}
.megamenu-title {
  padding-bottom: 18px;
  margin-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border);
}
.megamenu-title::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0px;
  width: 50px;
  height: 2px;
  background: var(--primary);
}
.megamenu-list {
  border-left: 1px solid var(--border);
}
.megamenu-list li a {
  width: 100%;
  border-radius: 5px;
  padding: 5px 0px 5px 25px;
  color: var(--text);
  white-space: nowrap;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.megamenu-list li a:hover {
  color: var(--primary);
  background: var(--chalk);
}

.megamenu-promo a img {
  width: 100%;
  border-radius: 3px;
}

/*==============================
	slick 슬라이드
==============================*/
.slider-arrow:hover .dandik,
.slider-arrow:hover .bamdik {
  visibility: visible;
  opacity: 1;
}
.dandik,
.bamdik {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--black);
  background:#fff;
  text-shadow: var(--primary-tshadow);
  -webkit-box-shadow: var(--primary-bshadow);
          box-shadow: var(--primary-bshadow);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.dandik:hover,
.bamdik:hover {
  color:#fff;
  background: var(--black);
}
.dandik {
  right: -10px;
}
.bamdik {
  left: -10px;
}
.slider-dots ul {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.slider-dots ul li {
  width: 9px;
  height: 9px;
  margin: 0px 5px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  background: var(--primary);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}
.slider-dots ul li button {
  display: none;
}
.slider-dots ul li.slick-active {
  width: 25px;
  background: var(--primary);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

@media (max-width: 575px) {
  .slider-dots ul {
    bottom: 10px;
  }
  .slider-dots ul li {
    margin: 0px 6px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .slider-dots ul {
    bottom: 20px;
  }
  .slider-dots ul li {
    margin: 0px 6px;
  }
}

/*==============================
	일반페이지 관련
==============================*/
/*contact us*/
.contact-card {
	min-height:286px;
  text-align: center;
  border-radius: 8px;
  margin: 0px 2.5px 30px;
  padding: 60px 15px 55px;
  border:1px solid #ccc;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card:hover {
  background: var(--primary);
}

.contact-card:hover i {
  color: var(--primary);
  background: #fff;
}

.contact-card:hover h4, .contact-card:hover p, .contact-card:hover a {
  color: #fff;
}

.contact-card i {
  width: 50px;
  height: 50px;
  font-size: 22px;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: var(--primary);
  text-shadow: var(--primary-tshadow);
  -webkit-box-shadow: var(--primary-bshadow);
          box-shadow: var(--primary-bshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card h4 {
  margin-bottom: 18px;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card p {
  width: 250px;
  font-size: 18px;
  line-height: 30px;
  margin: 0 auto;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card p a {
  font-size: 18px;
  line-height: 30px;
  display: block;
  color: var(--text);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card.active {
  background: var(--primary);
}

.contact-card.active i {
  color: var(--primary);
  background: #fff;
}

.contact-card.active h4, .contact-card.active p, .contact-card.active a {
  color: #fff;
}

.contact-map iframe {
  height: 474px;
  width: 100%;
  border: none;
}

/*==============================
	메인페이지 관련
==============================*/
.menu-badge {
  font-size: 10px;
  padding: 0px 5px;
  margin-left: 5px;
  line-height: 18px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  text-shadow: var(--primary-tshadow);
}

.pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination-page,
.pagination-next{
  margin-left: 10px;
}

.pagination-page:first-child .pagination-page a, .pagination-page:last-child .pagination-page a {
	display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
}

.pagination-page.active a {
  color: #fff;
  background: var(--black);
}

.pagination-first a, .pagination-prev a, .pagination-next a, .pagination-last a {
    font-size: 25px;
}

.pagination-first a, .pagination-prev a, .pagination-next a, .pagination-last a,
.pagination-page a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: 400;
  border: none;
  padding: 0px;
  color: var(--text);
  background: #fff;
}

.pagination-first a:hover, .pagination-prev a:hover, .pagination-next a:hover, .pagination-last a:hover,
.pagination-page a:hover {
  color: #fff;
  background: var(--black);
}

.pagination-first.disabled a:hover, .pagination-prev.disabled a:hover, .pagination-next.disabled a:hover, .pagination-last.disabled a:hover {
    color: var(--black);
    background: #fff;
}

.pagination-page a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 991px) {
  .pagination-page a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

@media (max-width: 767px) {
  .pagination-page {
    margin: 0px 3px;
  }
}

/* 메인 비주얼 */
.main_visual {margin-bottom: 100px;}
.banner-part {position: relative; 	height:605px;	margin-top:70px;  padding: 210px 0px 150px;  z-index: 1;  background-size: cover !important;}
.banner-part::before {position: absolute; content: ""; top: 0px; left: 0px; width: 100%; height: 100%;  z-index: -1; opacity: 0.05;  background-repeat: no-repeat;  background-position: center;  background-size: cover;}
.main_visual .dandik {right: 30px;}
.main_visual .bamdik {left: 30px;}

.newitem-part .section-heading {margin-bottom:60px;}
.mbnr1-part {margin-bottom:140px; background:#3f4146;}
.mbnr1-part .container {display:flex; width:100%; max-width:1920px; margin:0 auto; padding:0;}
.mbnr1-part .container > div {width:50%; overflow:hidden}
.mbnr1-part .container > div > a {display:flex; justify-content:center;}

.mbnr2-part {margin-bottom:140px;}
.mbnr2-part .container > div {padding-top:40px; padding-bottom:40px; color:#fff;  font-size:15px; font-weight:400; text-align:center;}
.mbnr2-part strong {display:block; margin-bottom:15px; font-size:40px; font-weight:500;}

.products-part .product-card {background: #fff; border: 1px solid #eee; -webkit-box-shadow: 0px 8px 15px 0px rgb(0 0 0 / 10%); box-shadow: 0px 8px 15px 0px rgb(0 0 0 / 10%);}
.products-part .product-content {padding:20px;}
.btn_more {padding: 10px 40px; background:var(--black); border:none; border-radius:50px; color:#fff; font-size:17px;}

/*이벤트*/
.mlottery-part {padding:80px 0; background:#262d41 url(../images/home/mlottery_bg.png) repeat-x left center;}
.mlottery-part.section {margin-bottom:0;}
.mlottery-part .section-heading h2 {color:#fff; font-size:40px;}
.mlottery-part .section-heading h2 em {display:block; margin-top: 10px; font-style:normal; color:#b7bac3; font-size:14px; line-height: 1.6;}
.mlottery-part .blog-card {margin-bottom: 0;}
.mlottery-part .blog-card:hover .blog-img img {-webkit-transform: scale(1.05); transform: scale(1.05);}
.mlottery-part .blog-media {position: relative;}
.mlottery-part .product-card {background:none;}
.mlottery-part .product-image {display:flex; align-items:center; height:220px; margin-bottom:25px; border-radius:10px; overflow:hidden;}
.mlottery-part .product-name a {color:#f9f9fa; font-weight:700; font-size:18px; line-height:1.1;}
.mlottery-part .product-price span {color:#96c0fe; font-weight:700; font-size:18px; line-height:1.1;}
.mlottery-part .product-price {margin-bottom:16px;}
.mlottery-part button {color:#fff; font-size:16px; font-weight:500;}
.mlottery-part .product-content button img {display:inline-block;}

@media (max-width:992px) {
	.banner-part {margin-top:0;}

	.mbnr1-part,
	.mbnr2-part {margin-bottom:50px;}
	.mbnr1-part .container {flex-flow:column wrap;}
	.mbnr1-part .container > div {width:100%;}
	.mbnr1-part > div a {justify-content:center;}

	.weekly-part.section {margin-bottom:20px;}

	.mbnr2-part strong {margin-bottom: 5px; font-size:30px;}
	.mbnr2-part .container > div {font-size:14px;}

	.product-label {top:10px; right:10px;}
	.label-text {font-size: 13px;  padding: 5px 10px;}
	.product-add i, .standard-wish i {display:inherit;}
	.products-part .btn {font-size:15px;}

	.mlottery-part .section-heading h2 {font-size:30px;}
	.mlottery-part {padding:40px 0;}
	.mlottery-part .section-heading h2 em {margin-top:0;}
	.mlottery-part .product-name a,
	.mlottery-part .product-price span {font-size:16px;}
	.mlottery-part .product-image {margin-bottom:15px;}
	.mlottery-part .product-card {margin-bottom:0;}
}

@media (max-width:576px) {
	:root {
		--bodysize : 14px;
	}
	
	.main_visual {margin-bottom: 30px;	}
	.products-part .container > .row {gap:5px;}
	.products-part .container > .row > .col {max-width:calc(50% - 5px); padding-left:0; padding-right:0; }
	.products-part .product-content {padding:10px 0;}

}


/* ==============================
	HP 사이트
==============================*/
.hpdemo h1, 
.hpdemo h2, 
.hpdemo h3, 
.hpdemo h4, 
.hpdemo h5, 
.hpdemo h6 {color:inherit;}

.hpdemo .section {margin-bottom: 115px;}
.hpdemo .conts_wrap {width:100%;  max-width:var(--conts-w); margin:0 auto;}
.hpdemo .container {max-width:var(--conts-w)}

/* 헤더*/
.header-part.hp {position: -webkit-sticky; position: sticky; top: 0; left: 0px; width: 100%; z-index: 3; border-bottom: 1px solid #6ed4ce;}
.header-part.hp .header-content {align-items:center; width: 100%; max-width:var(--conts-w); height: 70px; margin: 0 auto; padding: 0;}
.header-part.hp .header-user i,
.header-part.hp .header-src i {
    /*width: 40px; height: 40px; line-height: 40px; text-align: center; display: inline-block; border-radius: 50%;  color: var(--text); background: var(--chalk);  transition: all linear .3s; -webkit-transition: all linear .3s; -moz-transition: all linear .3s; -ms-transition: all linear .3s; -o-transition: all linear .3s;*/
    font-size: 24px; color:var(--black);
}
.header-part.hp .header-media-group {height:100%; padding-left: 10px; padding-right: 10px;}
.header-part.hp .header-media-group a {position: absolute; left: 50%; transform: translateX(-50%);}
.header-part.hp .header-media-group a img {height: 32px;}

.header-logo img {
    /*width: auto; transition: all linear .3s; -webkit-transition: all linear .3s; -moz-transition: all linear .3s; -ms-transition: all linear .3s; -o-transition: all linear .3s;*/
    max-width: none; height: 34px;
    
}
.header-part.hp .navbar-part {
	position:relative; top:auto; left:auto; width: 100%; margin-left: auto; border-bottom:none; overflow-x:visible;
	/*overflow-x: clip; z-index: 2; background: #fff; transition: all linear .3s; -webkit-transition: all linear .3s; -moz-transition: all linear .3s;
    -ms-transition: all linear .3s; -o-transition: all linear .3s;*/  
}

.header-part.hp .navbar-content {
    /*width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center;
    -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;*/
	 gap: 24px; border-top:none;      
}
.header-part.hp .navbar-list {
    /*display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: start;-ms-flex-pack: start; justify-content: flex-start;*/
}
.header-part.hp .navbar-list:last-child .dropdown-position-list {left: auto; right: 0;}
.header-part.hp .navbar-list:last-child .dropdown-position-list::before {left: auto; right: 12px;}

.header-part.hp .navbar-item > .navbar-link {
    /*padding: 22px 0px; text-transform: capitalize;*/
    color: var(--black); font-size: 1.125rem; font-weight: 700; text-decoration: none;
}

.header-part.hp .navbar-part.active {box-shadow:none;}

/*풋터*/
.hpdemo .footer-part {padding:20px; padding-bottom:140px; border-top:1px solid #EBEBEB; font-size:0.875rem; color:#666;}
.hpdemo .footer-part .container {display:flex; gap:20px;}
.hpdemo .footer-part .ft_right {margin-left:auto;}
.hpdemo .footer-part .ft_left img {width:160px; margin-bottom:10px; filter: grayscale(100%); opacity:0.8}
.hpdemo .footer-part .copy {display:block; margin-top:20px;}
.hpdemo .footer-part strong {display:block; color:var(--black); font-weight:400;}
.hpdemo .footer-part a {color:#666;}
.hpdemo .footer-part .com_info {margin-bottom:16px;}
.hpdemo .footer-part .tel a,
.hpdemo .footer-part .email a {color:#3237a9; text-decoration:none; cursor:pointer;}
.hpdemo .footer-part .tel a:hover,
.hpdemo .footer-part .email a:hover {color:#3237a9; opacity:0.8}
.hpdemo .footer-part .ft_menu {display:flex; gap:10px}
.hpdemo .footer-part .ft_menu a{color:var(--black);}

/*서브 타이틀*/
.hp ~ #app .single-banner {margin-top:0;}

/*=== 메인 ===*/
/*메인이미지*/
.hp .main_visual {background:#012723;}
.hp .main_visual .container {display:flex; flex-direction:row-reverse; justify-content:space-between; align-items:center; max-width:100%; min-height:710px; color:#fff;}
.hp .main_visual h1 {margin-bottom:20px; font-size:48px; font-weight:300; letter-spacing:-1px; line-height: 1.35; color:#fff;}
.hp .main_visual h1 strong {font-weight:700;}
.hp .main_visual h1 span {display:block; font-size:30px;word-break:keep-all;}
.hp .main_visual h1 span:first-child {margin-bottom:30px;}
.hp .main_visual h1 span:first-child strong {font-weight:500;}
.hp .main_visual .text_wrap {width:50%; padding:80px 20px; padding-left:0; font-size:16px; color:inherit;}
.hp .main_visual .img_wrap {display:flex; justify-content:flex-end; align-items:center; width:50%; margin-right:4%;}
.hp .main_visual .text_wrap font[color="red"] {color:#ffadaa; font-weight:700;}
.hp .main_visual .text_wrap font[color="blue"] {color:#04f8a3;}
.hp .main_visual .text_wrap .txt_dot {position:relative;}
.hp .main_visual .text_wrap .txt_dot:before {position:absolute; top:-6px; left:50%; transform:translateX(-50%); content:""; width:8px; height:8px; background:#fff; border-radius:100%;}
.hp .main_visual .text_wrap font[color="red"].txt_dot:before {background:#ffadaa;}
.hp .main_visual .text_wrap font[color="blue"].txt_dot:before {background:#04f8a3;}
.hp .main_visual .img_wrap img {width:100%; max-width:629px; opacity:0.85;}
.hp .main_visual .check_wrap {display:flex; align-items:flex-start; gap:20px; width:100%; max-width:540px; margin-top:70px; margin-left:10px; padding:14px; border:1px solid rgba(255, 255, 255, 0.6); border-radius:10px; font-size:28px; font-weight:700;}
.hp .main_visual .check_wrap > img {opacity:0.8;}
.hp .main_visual .check_wrap p {margin-bottom:0; padding-left:4px;}
.hp .main_visual .check_wrap p img {display:inline-block; margin-top:-4px; vertical-align:middle;}
.hp .main_visual .check_wrap h3 {display:block; width:fit-content; margin-bottom:12px; padding: 6px 20px; background: #f3f475; border-radius:10px; word-break:keep-all;}
.hp .main_visual .check_wrap h3 strong {color:#323232; font-size:var(--fsize24);}

.hp .main_visual .check_wrap dt {display:flex; align-items:flex-start; gap:10px; padding-bottom:10px; color:inherit;}
.hp .main_visual .check_wrap dt li:not(:first-child) {margin-top:4px;}
.hp .main_visual .check_wrap dt img {margin-left:4px;}
.hp .main_visual  .check_wrap dd {display:flex; align-items: flex-start; gap:15px; padding:12px 10px; padding-bottom:0;}
.hp .main_visual  .check_wrap dd span {display:flex; align-items:flex-start;}
.hp .main_visual  .check_wrap dd span:last-child {flex:1;}
.hp .main_visual  .check_wrap dd i {margin-right:10px; transform:rotate(90deg);}
.hp .main_visual  .check_wrap dd input[type="checkbox"] {width:18px; height:18px; opacity:0.5; margin-right:4px; vertical-align:middle;}
.hp .main_visual  .check_wrap dd input[type="checkbox"]:first-child {margin-left:0;}
.hp .main_visual  .check_wrap font[color="red"] {color:#cb3100;}
.hp .main_visual  .check_wrap font[color="blue"] {color:#01653d;}
.hp .main_visual  .check_wrap font[color="red"].txt_dot:before {background:#cb3100;}
.hp .main_visual  .check_wrap font[color="blue"].txt_dot:before {background:#01653d;}
.hp .main_visual  .check_wrap li {position:relative; padding:2px 0; padding-left:22px;}
.hp .main_visual  .check_wrap li span {position:absolute; top:2px; left:0; display:flex; align-items:center; justify-content:center;  width:17px; height:17px; border:1px solid rgba(255, 255, 255, 0.8); border-radius:100%;  font-size:11px; font-weight:500;}
.hp .main_visual  .txt_weblog {width:100%; max-width:540px; margin-top:48px; margin-left:10px; padding:20px; padding-left:34px; border:1px solid #eee; border-radius:50px; border-top-left-radius:0; background: rgb(255 255 255 / 50%); box-shadow: 3px 4px 0px rgba(0, 0, 0, 0.1); font-weight:500; color:#3d5958;}
.hp .main_visual  .txt_weblog span {display:block; margin-bottom:8px;}
.hp .main_visual  .txt_weblog span strong {font-weight:700; font-size:var(--fsize24); color:#204249;}

.m_sec {width:100%; max-width:var(--conts-w); margin:0 auto; padding:50px 0;}
.m_sec:not(:first-of-type) {display:flex; align-items:center; justify-content:space-between; gap:50px;}
.m_sec:nth-of-type(2n+1):not(:first-of-type) {flex-direction:row-reverse;}
.m_sec .sec_img img {width:100%;}
.m_sec .sec_txt > p {font-weight:700; font-size:18px; line-height:1.6;}
.m_sec .sec_txt > p strong {color:#0d9e95;}
.m_sec h3 {margin-bottom:48px; font-weight:700; font-size:36px;}
.m_sec ul {padding-bottom:50px;}
.m_sec li {position:relative; padding:4px 0; padding-left:16px; }
.m_sec li:before {position:absolute; top:12px; left:0; content:""; display:block; width:5px; height:5px; background:#333; border-radius:50px;}
.m_sec.sec1 {padding:120px 0; padding-bottom: 40px;}
.m_sec.sec1 .img_wrap {display:flex; align-items:center; justify-content:center; width:100px; height:100px; margin:0 auto; margin-bottom:20px; padding:20px; background:#f6f6f6; border-radius:100%;}
.m_sec.sec1 h2 {text-align:center; font-size:40px; font-weight:500; color:#dc5c09; }
.m_sec.sec1 h2 br:first-child {display:none;}
.m_sec.sec1 h2 strong {position:relative; display:inline-block; border-bottom:3px solid #fe6c0e;}
.m_sec.sec1 h2 strong:first-child {border-bottom:none;}
.m_sec.sec1 h2 span {display:block; transform: rotate(90deg); font-weight:500;}
.m_sec.sec1 h2 strong i {display:flex; align-items:center; justify-content:center; width:80px; height:80px; margin:0 auto; background:#dc5c09; color:#fff;  border-radius:100%;}
.m_sec.sec2 em {display:inline-block; margin-bottom:40px; font-size:36px; color:#0d9e95; font-weight:400; font-style:normal; line-height:1.1;}

.m_sec.point {max-width:100%; padding:100px 0; background:#f6f6f6;}
.m_sec.point .conts_wrap {width:100%;  max-width:var(--conts-w); margin:0 auto; text-align:center;}
.m_sec.point h2,
.m_sec.portfolio .tit_d1,
.m_sec.weblog .tit_d1 {font-size:36px; font-weight:700; color:var(--black);}
.m_sec.point .headline3 {font-size:16px; color:#2f8f88; font-weight:500;}
.m_sec.point .conts {display:flex; flex-wrap:wrap; gap:20px; padding-top:35px;}
.m_sec.point dl {position:relative; width:calc(33.33% - 14px); padding:80px 30px 50px; background:#fff; border-radius:40px; word-break:keep-all;}
.m_sec.point dl:before {position:absolute; top:-35px; left:50%; transform:translateX(-50%); content:"\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; display:flex; align-items:center; justify-content:center; width:70px; height:70px; background:#0d9e95; border-radius:100%; color:#fff; font-size:24px;}
.m_sec.point dt {margin-bottom:10px; font-size:var(--fsize20); font-weight:700; color:var(--black);}

.m_sec.seo {max-width:100%;  padding:100px 0; background:#e2fbcf; color:#fff;}
.m_sec.seo .conts_wrap {position:relative; width:100%; max-width:600px; margin:0 auto; padding:40px;  background:#0d9e95; border-radius:20px; box-shadow:0 0 10px rgba(0, 0, 0, 0.4); z-index:1; overflow:hidden;}
.m_sec.seo .conts_wrap:after {position: absolute; top: 0; left: 0; z-index:-1; content:""; display:block; width:100%; height:100%; background:url(/themes/friendkeyx/pro/resources/images/mseo_bg.webp) no-repeat center center; background-size:cover; opacity:0.2;}
.m_sec.seo .searchbox1 {display:flex; justify-content:flex-start; align-items:center;  gap:40px; max-width:460px; margin:0 auto; padding:16px 40px; background:#fff; color:var(--black); font-size:var(--fsize22); font-weight:700; border-radius:50px;}
.m_sec.seo .searchbox1 img {height:28px;}
.m_sec.seo .searchbox1 img:last-of-type {display:block; margin-left:auto;}
.m_sec.seo h2 {margin-top:30px; font-size:48px; text-align:center; font-weight:800; color:#fff; text-shadow:0 3px 0 rgba(0, 0, 0, 0.4);}
.m_sec.seo .searchbox2 {display:flex; justify-content:flex-start; align-items:center;  gap:20px; width:fit-content; margin:0 auto; margin-top:36px; padding:12px 40px; background:#025954; color:#fff; font-size:var(--fsize18); font-weight:500; border-radius:50px;}
.m_sec.seo .searchbox2 span {display:flex; justify-content:center; align-items:center; height:32px; width:32px; background:#fff; border-radius:5px;}
.m_sec.seo .searchbox2 img {height:22px;}
.m_sec.seo .text {margin:20px 0; font-size:30px; font-weight:700; color:var(--black); text-align:center;}
.m_sec.seo .result {margin-top:40px; font-weight:700; font-size:var(--fsize18); text-align:center;}
.m_sec.seo .text_wrap {width:100%; margin-top:30px; text-align:center;}
.m_sec.seo .text_wrap a {text-decoration:none;}
.m_sec.seo button {display:flex; align-items:center; justify-content:center; width:100%; height:50px; margin:0 auto; padding:10px 20px; border:1px solid #fff; border-radius:10px; color:#fff; font-weight:500; }

/*포트폴리오*/
.m_sec.portfolio {display:block; margin:0 auto; padding:100px 0; text-align:center;}
.m_sec.portfolio a {display:block; opacity:1; text-decoration:none; color:inherit;}
.m_sec.portfolio .sec:not(:last-child) {margin-bottom:100px;}
.m_sec.portfolio .sec .tit_d1 {margin-bottom:50px;}
.m_sec.portfolio .sec .tit_d1:after {content:""; display:block; width:60px; height:2px; margin:0 auto; margin-top:30px; background:var(--black);}
.m_sec.portfolio ul {display:flex; flex-wrap:wrap; gap:20px;}
.m_sec.portfolio li {width:calc(33.33% - 13.33px); padding:0; cursor:pointer;}
.m_sec.portfolio li:before {display:none;}
.m_sec.portfolio .img_wrap {position:relative; width:100%; height:0; padding-top:74%; margin-bottom:20px; border:1px solid #ededed; border-radius:var(--border-radius); overflow:hidden; -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); box-shadow: 0 0 1px rgba(0, 0, 0, 0); -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: box-shadow; transition-property:box-shadow;}
.m_sec.portfolio .img_wrap img {position:absolute; top:0; left:0; width:100%; height:auto;}
.m_sec.portfolio li:hover .img_wrap {box-shadow: 0 30px 20px -20px rgba(0, 0, 0, 0.5);}
.m_sec.portfolio li:hover .hover_text {background: rgba(0, 0, 0, 0.2); opacity:1; transition: opacity 0.3s ease;}
.m_sec.portfolio .hover_text {display:flex; position:absolute; top:0; left:0; align-items:center; justify-content:center; width:100%; height:100%; opacity: 0;  transition: opacity 0.3s ease;}
.m_sec.portfolio .hover_text span {display:flex; justify-content:center; align-items:center; width:70px; height:70px; padding:10px; background:#18939b; color:#fff; font-weight:700; border-radius:50%;}
.m_sec.portfolio dl {padding:0 3px; text-align:center; word-break:keep-all;}
.m_sec.portfolio dt {margin-bottom:10px; font-weight:700; color:var(--black); font-size:18px;}

/*웹로그*/
.m_sec.weblog {position:relative; max-width:100%; padding:100px 0; background:url(/themes/friendkeyx/pro/resources/images/mweblog_bg.webp); background-repeat:no-repeat; background-size:cover; background-position:top center; }
.m_sec.weblog:after {content:""; position:absolute; bottom:0; left:0; display:block; width:100%;  height:34%; background: linear-gradient(rgba(0, 0, 30, 0), rgba(0, 0, 30, 0.6)); z-index:0;}
.m_sec.weblog .conts_wrap {width:100%; max-width:var(--conts-w); margin:0 auto; text-align:center; z-index:1;}
.m_sec.weblog  .headline3 {display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-top:20px;}
.m_sec.weblog  .headline3 span {padding:10px 30px; background: rgba(255, 255, 255, 0.4); border:1px solid rgba(255, 255, 255, 0.6); border-radius:50px; font-size:20px; color:#07493c;}
.m_sec.weblog  .img_wrap {position:relative;}
.m_sec.weblog  .img_wrap > img {max-width:100%;}
m_sec.weblog  .img_wrap p {margin-bottom:1rem;}
.m_sec.weblog  .bubble1 {position:absolute; top:200px; left:50px; z-index:2}
.m_sec.weblog  .bubble2 {position:absolute; top:0; right:80px; z-index:2}
.m_sec.weblog  .bubble  > div {position: relative;  display:flex; align-items:center; padding: 15px;  background:#fff; border: 1px solid orange;	border-radius:5px; box-shadow:0 0 5px rgba(0, 0, 0, 0.2); font-weight:500; color:var(--black);}
.m_sec.weblog  .bubble  > div:after {content:"";  position: absolute; bottom: -20px; width: 0; height: 0; border-top: 20px solid orange;}
.m_sec.weblog .bubble1 > div:after {right: 20px; border-left: 20px solid transparent;  border-right: 0;}
.m_sec.weblog .bubble2 > div:after {left:30px; border-right: 20px solid transparent;  border-left: 0;}
.m_sec.weblog  .bubble  > div:before  {content:"";  position: absolute; bottom: -18px; width: 0;  height: 0;  border-top:18px solid white;  z-index: 1;}
.m_sec.weblog .bubble1 >  div:before {right: 21px; border-left: 18px solid transparent; border-right: 0;}
.m_sec.weblog .bubble2 > div:before {left: 31px; border-right: 18px solid transparent; border-left: 0; }
.m_sec.weblog  .bubble img {margin-right:10px;}

/*카운터*/
.counter-section {padding:44px 0; background:#15c3b2; color:#fff;}
.counter-section .row > div:not(:first-child) {border-left: 1px solid rgba(255, 255, 255, 0.3);}
.fr_count_main_wrapper{text-align:center;}
.fr_count_main_wrapper .icon{float:left;width:100%;margin-bottom:10px;}
.count-description{float:left;	width:100%;}
.timer{font-size: 2.5rem; font-weight: 700; color: #f9ff9c;}
.con1{margin-bottom:0; padding-top:0; color:#093833; font-weight:600; text-transform:capitalize;font-size:1.125rem;}

@keyframes swing {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(15deg); }
  40%  { transform: rotate(-10deg); }
  60%  { transform: rotate(5deg); }
  80%  { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.swing {
  display: inline-block;
  transform-origin: top center;
  animation: swing 1s ease-in-out infinite;
}

.text-animation .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  animation: dropIn 4s infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

/* falling + hold + all fade out */
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.text-animation span {
  display: inline-block;
  animation: scalePulse 1.2s infinite ease-in-out;
  animation-delay: calc(var(--i) * 0.2s);
}

@keyframes scalePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.scaleHold  {
	display: inline-block;
	transform-origin: center center;
	animation: scaleHold 2s infinite ease-in-out;
	animation-delay: calc(var(--i) * 0.2s);
}

@keyframes scaleHold  {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  30% {
    transform: scaleX(1.1) scaleY(1.1);
  }
  70% {
    transform: scaleX(1.1) scaleY(1.1);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}

/*===== 서브 =====*/
.sub {padding-bottom:0; word-break:keep-all;}
.sub img {max-width:100%;}

.sub_visual {min-height:580px; padding:40px 0px; background:#1C2180;}
.sub_visual .container {display:flex;  max-width:var(--conts-w); word-break:keep-all;}
.sub_visual .text_wrap {width:50%;}
.sub_visual .img_wrap {position:relative; width:50%;}
.sub_visual .img_wrap img {max-width:100%;}
.sub_visual .img_wrap img:not(.primary_img) {position:absolute;}
.sub_visual .primary_img {margin-top:20px; margin-bottom:-100px;}
.sub_visual .ball1 {top:40px; left:60px; animation: upDown 2s infinite ease-in-out;}
.sub_visual .ball2 {bottom:-30px; right:20px;  animation: upDown 2s infinite ease-in-out;}
.sub_visual + section .conts_wrap {padding-top:150px;}

.sub_visual a {display: block; margin-top: auto;}
.sub_visual button:hover {background: rgba(255, 255, 255, 0.1);}
.sub_visual button {margin-top: 30px; padding: 14px 24px; border: 1px solid #fff; border-radius: 50px; color: #fff; font-weight: 700;}

.sub .conts_wrap {width:100%; max-width:var(--conts-w); margin:0 auto; padding:120px 0; text-align:center;}

.sub .tit_wrap {margin-bottom:60px;}
.sub .tit_d1 {font-size:40px; font-weight:700; color:var(--black);}
.sub .tit_wrap .headline3 {margin-top:28px; color:var(--black); font-weight:400; font-size:1rem;}

@keyframes upDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

.page_nav  {margin-bottom:60px; font-size:18px; font-weight:700;}

.sub .kingkong h2 {display:flex; flex-direction:column; margin-bottom:40px; font-size:40px; font-weight:500; color:var(--black);}
.sub .kingkong h2 i {margin-bottom:10px; font-size:54px;}
.sub .kingkong .headline3 {margin-bottom:30px; font-size:26px; font-weight:700;}
.sub .kingkong .headline4 {width:fit-content; margin:0 auto; margin-bottom:40px; padding:4px 20px; color:#fff; font-weight:700; font-size:32px;}
.sub .kingkong ul {width:100%; max-width:600px; margin:0 auto; margin-bottom:30px; padding:20px; border-radius:var(--border-radius);}
.sub .kingkong li {display:flex; align-items:center; padding:10px 0; font-weight:700; font-size:18px;}
.sub .kingkong li span {flex: none; display:flex; align-items:center; justify-content:center;  width:40px; height:40px; margin-right:12px; border-radius:50px; font-weight:700; font-size:14px; color:var(--txt-basic);}

.sub .portfolio a {display:block; opacity:1; text-decoration:none; color:inherit;}
.sub .portfolio ul {display:flex; flex-wrap:wrap; gap:40px;}
.sub .portfolio li {width:calc(33.33% - 26.66px); cursor:pointer;}
.sub .portfolio .img_wrap {position:relative; width:100%; height:0; padding-top:74%; margin-bottom:20px; border:1px solid #ededed; border-radius:var(--border-radius); overflow:hidden; -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); box-shadow: 0 0 1px rgba(0, 0, 0, 0); -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: box-shadow; transition-property:box-shadow;}
.sub .portfolio .img_wrap img {position:absolute; top:0; left:0; width:100%; height:auto;}
.sub .portfolio li:hover .img_wrap {box-shadow: 0 30px 20px -20px rgba(0, 0, 0, 0.5);}
.sub .portfolio li:hover .hover_text {opacity:1; transition: opacity 0.3s ease;}
.sub .portfolio .hover_text {display:flex; position:absolute; top:0; left:0; align-items:center; justify-content:center; width:100%; height:100%; opacity: 0;  transition: opacity 0.3s ease;}
.sub .portfolio .hover_text span {display:flex; justify-content:center; align-items:center; width:70px; height:70px; padding:10px; color:#fff; font-weight:700; border-radius:50%;}
.sub .portfolio dl {padding:0 3px; text-align:left; word-break:keep-all;}
.sub .portfolio dt {margin-bottom:10px; font-weight:700; color:var(--black); font-size:18px;}

.landing .portfolio li:hover .img_wrap {border:1px solid #c1e4e2;}
.friendme .portfolio li:hover .img_wrap {border:1px solid #ffd5e8;}
.friendshop .portfolio li:hover .img_wrap {border:1px solid #ffce47;}
.hub .portfolio li:hover .img_wrap {border:1px solid #8ab9e2;}

.friendme .portfolio .hover_text span {background:#f68bbb;}
.landing .portfolio .hover_text span {background:#57bdb7;}
.friendshop .portfolio .hover_text span {background:#edb51e;}
.hub .portfolio .hover_text span {background:#2a8fe4;}

.sub .example ul {display:flex; flex-wrap:wrap;  gap:20px;}
.sub .example li {width:calc(33.33% - 13.33px); background:#fff; border-radius:40px; font-weight:500; overflow:hidden;}
.sub .example .img_wrap {display:flex; align-items:center; justify-content:center; height:180px; overflow:hidden;}
.sub .example li .img_wrap > div {display:flex; align-items:center; justify-content:center; width:200px; height:200px; margin:0 auto; border-radius:100%; }
.sub .example dl {padding:30px 40px; line-height:1.6; word-break:keep-all;}
.sub .example dt {margin-bottom:4px; color:var(--black); font-size:var(--fsize18);}

.sub .bottom:before {position:relative; top:0; z-index:0; content:""; display:block; width:100%; height:240px; background:#f6f6f6;}
.sub .bottom { background-repeat:no-repeat; background-position: top 240px center;}
.sub .bottom .conts_wrap {padding-top:0; color:#fff;}
.sub .bottom img {position:relative; z-index:1; margin-top:-226px; margin-bottom:40px; border-radius:40px;}
.sub .bottom h2 {margin-bottom:50px; font-size:42px; font-weight:400;}
.sub .bottom h2 strong {font-wegiht:700;}
.sub .bottom .btn_wrap {display:flex; justify-content: center; gap:10px;}
.sub .bottom button {padding:14px 24px; border:1px solid rgba(255, 255, 255, 0.6); border-radius:10px; color:#fff; font-weight:700;}
.sub .bottom button:hover {background:rgba(255, 255, 255, 0.1);}
.sub .bottom button i {margin-left:12px;}

/* 페이지 제목*/
.title_d1 {margin-top:2.5rem; margin-bottom:1.25rem;}
.title_d1 > * {font-size:2.25rem; font-weight:700; color:var(--black);}
.title_d2 > * {font-size:1.375rem; font-weight:700; color:var(--black);}

/*랜딩페이지*/
.landing {padding-bottom:0;}

.landing .page_nav {color:#799190/*05413d*/;}
.landing .sub_visual {background:#003431/*#6ed4ce*/;}
.landing .sub_visual .primary_txt {color:#fff; font-weight:400; font-size:34px;}
.landing .sub_visual .primary_txt strong {position:relative; display:inline-block; font-weight:800; font-size:40px; z-index:1;}
.landing .sub_visual .primary_txt strong:after {display:none; position:absolute; bottom:7px; left:0; content:""; width:100%; height:8px; background:#ffff00; z-index:-1;}
.landing .sub_visual .sec_txt {margin-top:28px; font-weight:500; color:#fff; font-size:20px;}
.landing .sub_visual ul {margin-top:34px; padding-left:3px;}
.landing .sub_visual li {position:relative; padding:4px 0; padding-left:14px; color:#406e6c;}
.landing .sub_visual font {font-weight:700;}
.landing .sub_visual font[color="blue"] {color:#e0ec2b;}
.landing .sub_visual font[color="red"] {color:#cb6bf3;}
.landing .sub_visual li:before {position:absolute; top:10px; left:0; content:""; width:4px; height:4px; background:#406e6c; border-radius:50px;}
.landing .sub_visual button {margin-top:30px; padding:14px 24px; border:1px solid #fff; border-radius:50px; color:#fff; font-weight:700;}
.landing .sub_visual button:hover {background:rgba(255, 255, 255, 0.1);}
.landing .sub_visual button i {margin-left:12px;}

.landing .how .conts {display:flex; border:1px solid #6ed4ce; border-radius:var(--border-radius); box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);}
.landing .how dl {display:flex; flex-direction:column; width:25%; padding:24px; border-left:1px solid #ededed; text-align:left; word-break:keep-all;}
.landing .how dl:first-child {border-left:none;}
.landing .how dt {margin-bottom:16px; color:var(--black); font-weight:700;}
.landing .how dd:not(:last-child) {position:relative; padding-bottom:10px; padding-left:10px;}
.landing .how dd:not(:last-child):before {position:absolute; top:6px; left:0; content:""; display:block; width:3px; height:3px; background:var(--txt-basic); border-radius:50px;}
.landing .how dd:last-child {margin-top:auto; padding-top:26px;}
.landing .how .num {display:flex; align-items:center; justify-content:center; width:50px; height:50px; margin-bottom:30px; background:#c3f4f1; border-radius:50px; font-weight:700; font-size:14px;}

.landing .function {background:#ebf9f8;}
.landing .function .conts {display:flex; flex-wrap:wrap; gap:24px;}
.landing .function dl {width:calc(33.33% - 16px); padding:30px; background:#fff; border:1px solid #80b5b2; border-radius:var(--border-radius); box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); text-align:center;}
.landing .function dt {display:flex; flex-direction:column; align-items:center; margin-bottom:10px; color:var(--black); font-weight:700;}
.landing .function .num {margin-bottom:12px; color:#08736c; font-weight:700;}
.landing .function .icn {display:flex; align-items:center; justify-content:center; width:90px; height:90px; margin-bottom:20px; background:#6ed4ce; border-radius:50px; }

.landing .kingkong h2 i {color:#6ed4ce;}
.landing .kingkong .headline3 {color:#219e97;}
.landing .kingkong .headline4 {background:#57bdb7;}
.landing .kingkong ul {border:1px solid #6ed4ce;}
.landing .kingkong li {color:#219e97;}
.landing .kingkong li span {background:#c3f4f1;}

.landing .portfolio,
.landing .tech {background:#f6f6f6;}

.landing .price .conts_wrap {margin:120px auto; padding:54px 20px; background: linear-gradient(108deg, #719fe3, #14b2b2); border-radius:var(--border-radius);}  
.landing .price .tit_d1{position:relative; color:#fff;}
.landing .price .tit_d1:after {position:absolute; bottom:-20px; left:50%; transform:translateX(-50%); content:""; width:60px; height:3px; background:#fff;}
.landing .price .headline3 {margin-bottom:40px; font-size:20px; color:#f3ee73; font-weight:700;}
.landing .price ul {display:flex; justify-content:center; gap:60px;}
.landing .price ul li {position:relative; display:flex; flex-direction:column; aling-items:center; justify-content:center; width:174px; height:174px; padding:20px; border:1px solid rgba(255, 255, 255, 0.8); border-radius:100%; color:#fff; font-weight:700; font-size:18px; text-align:center; }
.landing .price ul li:not(:last-child):after {position:absolute; top:50%; right:-44px; transform:translateY(-50%); content:"→"; font-size:34px; font-weight:300;}
.landing .price .img_wrap {margin-bottom:10px;}

.landing .tech .tit_wrap {margin-bottom:40px;}
.landing .tech ul {display:flex; background:#fff; border:1px solid #6ed4ce; border-radius:var(--border-radius); box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);}
.landing .tech ul li {display:flex; flex-direction:column; align-items:center;  width:33.33%; padding:40px 20px; border-left:1px solid #ededed;}
.landing .tech ul li:first-child {border-left:none;}
.landing .tech .img_wrap {margin-bottom:26px;}
.landing .tech dt {margin-bottom:4px; color:var(--black); font-weight:700;}
.landing .tech dd {font-size:18px; color:#09846e;}

.landing .bottom {background-color:#0b8f71; background-image:url(/themes/friendkeyx/pro/resources/images/landing_bottom_bg.webp);}
.landing .bottom h2 .txt1{color:#afdefb;}
.landing .bottom h2 .txt2{color:#eaf294;}
.landing .bottom h2 .txt3{color:#ffddfb;}

/*프랜즈미 홈페이지*/
.friendme strong {color:#cc3b7c; font-weight:700;}
.friendme .sub_visual {background:#f68bbb;}
.friendme .page_nav {color:#cb2f75;}
.friendme .sub_visual .primary_txt {display:flex; flex-direction:column; color:#fff61d; font-weight:800; font-size:42px; transform: translateY(16%); line-height:1.3;}
.friendme .sub_visual .text_wrap {display:flex; flex-direction:column;}
.friendme .sub_visual .primary_txt font {display:inline-block; margin-bottom:-40px; font-size:28px; font-weight:500; line-height:1.4; color:#fff;}

.friendme .point .headline3 {font-size:20px; color:#e15b97;}
.friendme .point .conts {display:flex; flex-wrap:wrap; gap:20px; padding-top:35px;}
.friendme .point dl {position:relative; width:calc(33.33% - 13.33px); padding:80px 40px 50px; background:#f6f6f6; border-radius:40px;}
.friendme .point dl:before {position:absolute; top:-35px; left:50%; transform:translateX(-50%); content:"\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; display:flex; align-items:center; justify-content:center; width:70px; height:70px; background:#f68bbb; border-radius:100%; color:#fff; font-size:24px;}
.friendme .point dt {margin-bottom:10px; font-size:var(--fsize20); font-weight:700; color:var(--black);}

.friendme .auto .conts_wrap,
.friendme .network .conts_wrap {display:flex; justify-content:space-between; flex-wrap:wrap;}
.friendme .auto .img_wrap,
.friendme .network .img_wrap {width:50%;}
.friendme .auto .text_wrap,
.friendme .network .text_wrap {width:50%; padding-left:64px; text-align:left;}
.friendme .auto .tit_wrap,
.friendme .network .tit_wrap {margin-bottom:20px;}
.friendme .auto .tit_d1,
.friendme .network .tit_d1 {font-size:var(--fsize20); font-weight:700; color:#bf2168;}
.friendme .auto .headline3,
.friendme .network .headline3 {margin-bottom:50px; font-size:40px; color:var(--black); font-weight:700;}
.friendme .auto ul {margin-bottom:40px;}
.friendme .auto li {position:relative; padding:4px 0; padding-left:12px; }
.friendme .auto li:before {position:absolute; top:12px; left:0; content:""; width:3px; height:3px; background:var(--txt-basic); border-radius:100%;}
.friendme .auto .headline4,
.friendme .network .headline4 {display: inline; width:fit-content; position:relative; margin-left:3px; padding-left:22px; padding-right:22px; font-size:24px; font-weight:500; color: #ef78ad}
.friendme .auto .headline4:before,
.friendme .network .headline4:before {position:absolute; top:0; left:0; content:"\f10d"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size:18px;}
.friendme .auto .headline4:after,
.friendme .network .headline4:after {position:absolute; bottom:9px; right:0; content:"\f10e"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size:18px;}

.friendme .network .conts_wrap {flex-direction:row-reverse;}
.friendme .network:nth-of-type(2) .conts_wrap  {flex-direction:row;}
.friendme .network dl {margin-bottom:40px;}
.friendme .network dt {margin-bottom:4px; font-weight:700; color:var(--black);}
.friendme .network dd {position:relative; padding:4px 0; padding-left:12px; }
.friendme .network dd:before {position:absolute; top:12px; left:0; content:""; width:3px; height:3px; background:var(--txt-basic); border-radius:100%;}

.friendme .effective,
.friendme .example,
.friendme .faq {position: relative;background:#f6f6f6; z-index: 0;}
.friendme .effective .tit_d1 {margin-bottom:50px;}
.friendme .effective .tit_wrap span {display:block; text-align:center;}
.friendme .effective .tit_wrap strong {display:inline; color:var(--black); background:linear-gradient(to top, #faaace 30%, transparent 30%)}
.friendme .effective .headline3 {color:#d14685; font-size:30px; font-weight:500; }
.friendme .effective ul {display:flex; flex-wrap:wrap; gap:20px;}
.friendme .effective li {width:calc(33.33% - 13.33px); padding:80px 40px 50px; background:#fff; border-radius:40px; font-weight:500;}
.friendme .effective .img_wrap {display:flex; align-items:center; justify-content:center; width:96px; height:96px; margin:0 auto; margin-bottom:20px; background:#f68bbb; border-radius:100%;}

.friendme .kingkong h2 i {color:#ef78ad;}
.friendme .kingkong .headline3 {color:#d3538c;}
.friendme .kingkong .headline4 {background:#f68bbb;}
.friendme .kingkong ul {border:1px solid #f68bbb;}
.friendme .kingkong li {color:#d3538c;}
.friendme .kingkong li span {background:#fdb6d6;}

.friendme .example li:first-child .img_wrap {background:#c4cfeb;}
.friendme .example li:nth-child(2) .img_wrap {background:#e2c8e8;}
.friendme .example li:last-child .img_wrap {background:#d3dcc1;}
.friendme .example li:first-child .img_wrap > div {background:#a9bbe8}
.friendme .example li:nth-child(2) .img_wrap > div {background:#d899e7}
.friendme .example li:last-child .img_wrap > div {background:#aac771}

.friendme .faq .accordion {background:#fff; border:1px solid #fa5597; border-radius:var(--border-radius); text-align:left; overflow:hidden; line-height:1.6;}
.friendme .faq .accordion-item {padding:20px 40px; border-bottom:1px solid #ebebeb; font-size:var(--fsize18);}
.friendme .faq .accordion-button {position:relative; padding:10px 0; padding-left:30px; color:var(--black); font-weight:500;  font-size:var(--fsize18); text-align:left;}
.friendme .faq .accordion-button span {position:absolute; top:8px; left:0; display:inline-block; color:#ed98be; font-size:22px; font-weight:700;}
.friendme .faq .accordion-body {padding-left:66px; background:url(/themes/friendkeyx/pro/resources/images/icn_faq.webp) no-repeat; background-position: top 2px left 34px;}

.friendme .bottom {background-color:#f7809b; background-image:url(/themes/friendkeyx/pro/resources/images/friendme_bottom_bg.webp);}
.friendme .bottom ul {width:100%; max-width:600px;  margin:0 auto; text-align:left;}
.friendme .bottom ul:after {content:""; display:block; width:1px; height:40px; margin:20px auto; background:#fff; opacity:0.6;}
.friendme .bottom li {position:relative; padding:6px 0; padding-left:20px; font-size:var(--fsize18);}
.friendme .bottom li:before {content:""; position:absolute; top:12px; left:0; width:10px; height:10px; background:#fff; border-radius:100%;}
.friendme .bottom h2 {color:#fdfbec; font-size:42px; font-weight:700;}
.friendme .bottom h2 strong {color:#f0fa56;}

/*쇼핑몰*/
.friendshop .ai,
.friendshop .erp,
.friendshop .custom,
.friendshop .tech {background:#f6f6f6;}
.friendshop .sub_visual {background:#e7c84c;}
.friendshop .page_nav {color:#866c04;}
.friendshop .sub_visual .primary_txt {color:#763e18; font-size:22px; font-weight:500;}
.friendshop .sub_visual .primary_txt strong {display:block; margin-bottom:16px;  font-size:38px;  font-weight:700; color:#291804; }
.friendshop .sub_visual .txt_box strong {display:block; margin-top:6px; font-weight:700; color:#fff; font-size:26px;}
.friendshop .tit_wrap .headline3 {margin-top:20px; font-size:var(--fsize20); color:#bb9b07; font-weight:500;}
.friendshop .res_tb {position:relative; width:100%; overflow-x:auto;}
.friendshop .tb_wrap {border:1px solid #ebebeb; border-radius:10px; overflow:hidden;}
.friendshop #highlight {position:absolute; border:3px solid #f0c108; border-radius:10px; box-shadow:0 0 10px rgba(0, 0, 0, 0.3);  z-index:1;}
.friendshop table * {background:#fff;}
.friendshop thead th {color:var(--txt-basic); font-weight:700;}
.friendshop thead th:nth-child(2) {color:var(--black);}
.friendshop tr {border:none; border-bottom:1px solid #ebebeb;}
.friendshop tbody tr:last-child {border-bottom:none;}
.friendshop th {padding:16px 10px; padding-left:30px; border:none; color:#b88711; font-weight:700; text-align:left;}
.friendshop td {position:relative; padding-left:58px; border:none; text-align:left;}
.friendshop td:nth-child(2) {color:var(--black); font-weight:700;}
.friendshop td img {position:absolute; top: 50%; left:26px; transform: translateY(-50%); margin-right: 10px;}

.friendshop .ai ul {display:flex; flex-wrap:wrap;  gap:24px;}
.friendshop .ai li {width:calc(33.33% - 16px); background:#fff; border-radius:20px; font-weight:500; overflow:hidden;}
.friendshop .ai .img_wrap {height:200px; overflow:hidden;}
.friendshop .ai dl {padding:30px 20px;}
.friendshop .ai dt {margin-bottom:14px; font-size:var(--fsize18); color:var(--black);}
.friendshop .ai .headline4,
.friendshop .erp .headline4,
.friendshop .custom .headline4 {font-size:var(--fsize24); color:#2a2404; font-family: "Noto Serif KR", serif; font-weight:500;}
.friendshop .ai .headline4:before,
.friendshop .hub .tit_d2:before,
.friendshop .erp .headline4:before,
.friendshop .custom .headline4:before {content:""; display:block; width:1px; height:40px;  margin:30px auto; background:#acacac;}
.friendshop .erp .headline4 span {display:inline-block;}
.friendshop .erp .headline4 span.underline {position:relative; margin-top:8px; z-index:1;}
.friendshop .erp .headline4 span.underline:after {position:absolute; bottom:1px; left:0; content:""; width:100%; height:8px; background:#cceba2; z-index:-1;}

.friendshop .hub .tit_wrap,
.friendshop .erp .tit_wrap {margin-bottom:50px;}
.friendshop .hub .headline3 {color:var(--black);}
.friendshop .summery,
.friendshop .tech .sum {display:flex; flex-wrap:wrap; margin-top:50px; background:#fff; border:1px solid #ffe08c; border-radius:20px; overflow:hidden;}
.friendshop .summery li {width:25%; padding:30px 20px; border-left:1px solid #ebebeb; color:var(--black)}
.friendshop .summery .num {display:flex; align-items:center; justify-content:center; width:50px; height:50px; margin:0 auto; margin-bottom:30px; background:#f6cf67; border-radius:100%; color:#956d01; font-size:var(--fsize14); font-weight:700;}
.friendshop .summery strong {color:#bb9b07; font-weight:700;}
.friendshop .hub .summery span {display:block; margin:5px 0; color:var(--txt-basic);}
.friendshop .hub .tit_d2 {font-size:var(--ftit-d2); color:var(--black); font-weight:700;}
.friendshop .hub .exam {display:flex; flex-wrap:wrap; justify-content:center;  gap:24px; margin-top:30px;}
.friendshop .hub .exam li {background:#fff; padding:30px 50px; border:1px solid #ddd; border-radius:20px; overflow:hidden;}
.friendshop .hub .exam img {display:block; margin-bottom:30px; }

.friendshop .kingkong h2 i {color:#f6cf67;}
.friendshop .kingkong .headline3 {color:#d3538c;}
.friendshop .kingkong .headline4 {background:#edb51e;}
.friendshop .kingkong ul {border:1px solid #ffe08c;}
.friendshop .kingkong li {color:#d8a213;}
.friendshop .kingkong li span {background:#f6cf67;}

.friendshop .custom .summery li {width:20%;}
.friendshop .custom .summery dt {margin-bottom:5px; color:#b99801;}
.friendshop .custom .summery dd {color:var(--txt-basic);}

.friendshop .example:after {content:""; display:block; width:80px; height:4px; margin:0 auto; background:#bca82e;}
.friendshop .example li {box-shadow:0 0 10px rgba(0, 0, 0, 0.1)}
.friendshop .example li:first-child .img_wrap {background:#e2c8e8;}
.friendshop .example li:nth-child(2) .img_wrap {background:#c9caca;}
.friendshop .example li:last-child .img_wrap {background:#c5caef;}
.friendshop .example li:first-child .img_wrap > div {background:#d899e7}
.friendshop .example li:nth-child(2) .img_wrap > div {background:#b5b5b6; overflow:hidden;}
.friendshop .example li:last-child .img_wrap > div {background:#8692ea}
.friendshop .example li:first-child img {width:120px;}
.friendshop .example li:last-child img {width:130px;}

.friendshop .tech .img_wrap {margin-bottom:26px;}
.friendshop .tech dt {margin-bottom:4px; color:var(--black); font-weight:700;}
.friendshop .tech dd {color:#bf9502;}

.friendshop .bottom {background-color:#cda800; background-image:url(/themes/friendkeyx/pro/resources/images/friendshop_bottom_bg.webp);}
.friendshop .bottom h2 {color:#fdfbec; font-size:42px; font-weight:700;}
.friendshop .bottom h2 strong {display:block; color:#defe89; font-weight:700;}

/*허브*/
.hub .sub_visual {background:#3eb5e7}
.hub .page_nav {color:#0b74a0}
.hub .sub_visual .primary_txt {color: #fff; font-weight:700; font-size: 42px; transform: translateY(50%); line-height: 1.3;}

.hub .point {background:#faf8f9;}
.hub .point .conts_wrap {padding-bottom:50px;}
.hub .point:after {content:""; display:block; width:100%; height:200px; background:linear-gradient(-5deg, #fff 50%, #faf8f9 50%);}
.hub .point .tit_d1 {display:flex; flex-direction:column; align-items:center;}
.hub .point i {margin-bottom:30px; font-size:52px;}
.hub .point strong {color:#26399d; font-weight:500;}
.hub .point p {margin:0; font-size:var(--fsize20); line-height:1.4;}

.hub .link .conts_wrap {padding-bottom:0;}
.hub .link .tit_wrap {margin-bottom:30px;}
.hub .link .tit_wrap:after {content:""; display:block; width:60px; height:2px; margin:0 auto; margin-top:30px; background:var(--black);}
.hub .link p {width:100%; max-width:580px; margin:0 auto; margin-bottom:80px; font-size:var(--fsize18); line-height:1.6;}
.hub .link p strong {color:#3d76d3; }
.hub .link .headline3 {margin-top:80px; font-weight:700;}
.hub .link .headline3 strong {display:block; margin-bottom:30px; font-size:40px; font-weight:700; color:var(--black);}
.hub .link .headline3 strong span {background: linear-gradient(to right, #1760e4, #ec0fc0); color: transparent;  -webkit-background-clip: text;}

.hub .wave {margin-top:-10px;}

.hub .realtime {margin-top:-6px; background:#f6f6f6;}
.hub .realtime .conts_wrap {display:flex; justify-content:space-between; align-items: center;  flex-wrap:wrap; padding-top:20px; padding-bottom:0;}
.hub .realtime .img_wrap,
.hub .crawling .img_wrap {width:50%;}
.hub .realtime .text_wrap {width:50%; padding-left:90px; text-align:left;}
.hub .realtime .tit_wrap,
.hub .crawling .tit_wrap {margin-bottom:30px;}
.hub .realtime .tit_d1,
.hub .network .tit_d1 {font-size:36px;; font-weight:700;}
.hub .realtime .text {line-height:1.6;} 
.hub .realtime strong,
.hub .crawling strong {color:var(--black);}
.hub .realtime .headline3 {margin-top:50px; font-size:var(--fsize24); color:#1771d5; font-weight:700;}
.hub .realtime ul {display:flex; flex-wrap:wrap; gap:60px; margin-top:24px;}
.hub .realtime li {width:calc(50% - 30px);}
.hub .realtime li:first-child {position:relative; display:flex; flex-direction:column; justify-content:space-between; gap:10px;}
.hub .realtime li:first-child:after {position:absolute; top:50%; right:-45px; transform:translateY(-50%); content:""; display:block; height:100%; width:27px; background:url(/themes/friendkeyx/pro/resources/images/hub_arrow.webp) no-repeat; background-position:center; background-size: contain;}
.hub .realtime li:first-child span {padding:10px 20px; border:1px solid #1b8ffc; border-radius:50px; font-size:var(--fsize18);}
.hub .realtime li:last-child {display:flex; align-items:center; justify-content:center; background:#146ac3; border-radius:20px;  font-size:var(--fsize20); color:#fff; font-weight:700;}

.hub .crawling {background:#f6f6f6;}
.hub .crawling .conts_wrap {display:flex; flex-direction:row-reverse; justify-content:space-between; align-items: center; flex-wrap:wrap; }
.hub .crawling .text_wrap {width:50%; padding-left:60px; text-align:left;}
.hub .crawling .text_wrap p {max-width:480px}

.hub .different .tit_d1 {font-weight:300; line-height:1.5;}
.hub .different .tit_d1 strong {font-weight:700; color:var(--black); background: linear-gradient(to top, #e3bf5f 25%, transparent 25%);}
.hub .different li {display:flex; flex-wrap:wrap; align-items:center;  margin-bottom:10px; overflow:hidden;}
.hub .different li:last-child {margin-bottom:0;}
.hub .different li > div {flex:1; display:flex; align-items:center;  height:56px; border:1px solid #ebebeb; border-radius:10px; text-align:left; overflow:hidden;}
.hub .different li > div span {width:56px; height:100%; display:flex; flex-wrap:wrap; align-items:center; justify-content:center;  margin-right:20px; background:#f8e0e3;}
.hub .different li > div:last-child  {font-weight:700; color:var(--black);}
.hub .different li > div:last-child span {background:#e0f0f8;}
.hub .different li > i {margin-left:10px; margin-right:10px;}
.hub .different .text {position:relative; margin-top:50px; padding-top:50px; border-top:1px solid #ddd; font-size:22px; color:#1357aa; font-family: "Noto Serif KR", serif; font-weight:500; }
.hub .different .text:before {content:""; width:33px; height:100%; background:url(/themes/friendkeyx/pro/resources/images/hub_down.webp) no-repeat; background-size:contain; position:absolute; top:-1PX; left:50%; transform:translateX(-50%); display:block; text-align:center;}

.hub .system {background:#f6f6f6;}
.hub .system ul {display:flex; flex-wrap:wrap; margin-top:50px; background:#fff; border:1px solid #78a9fc; border-radius:20px; box-shadow:0 0 6px rgba(0, 0, 0, 0.1); overflow:hidden;}
.hub .system li {position:relative; width:20%; padding:40px; border-left:1px solid #ebebeb; word-break:keep-all;}
.hub .system li:after {position:absolute; right:-20px; top:50%; transform:translateY(-50%); content:"\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size:18px; display:flex; align-items:center; justify-content:center; width:40px; height:40px; background:#fff; border:1px solid #ebebeb; border-radius:100%; box-shadow:0 0 6px rgba(0, 0, 0, 0.1); z-index:1;}
.hub .system li:last-child:after {display:none;}
.hub .system dl {margin-top:20px;}
.hub .system dt {margin-bottom:6px; color:var(--black)}

.hub .vision ul {display:flex; flex-wrap:wrap; justify-content:center; gap:15px 10px; width:100%; max-width:800px; margin:0 auto; margin-bottom:50px; }
.hub .vision li {padding:15px 30px; border:1px solid #2a8fe4; border-radius:50px; color:var(--black); font-weight:700;}
.hub .vision li.active {background:#2a8fe4; color:#fff;}

.hub .kingkong {background:#f6f6f6;}
.hub .kingkong h2 i {color:#2a8fe4;}
.hub .kingkong .headline3 {color:#2074d2;}
.hub .kingkong .headline4 {background:#2a8fe4;}
.hub .kingkong ul {border:1px solid #2a8fe4;}
.hub .kingkong li {color:#2074d2;}
.hub .kingkong li span {background:#97c8f2;}

.hub .bottom {background-color:#2278de; background-image:url(/themes/friendkeyx/pro/resources/images/hub_bottom_bg.webp); background-position:top 0 left 50%;}
.hub .bottom .conts_wrap {margin-top:0; padding-top:120px;}
.hub .bottom:before {display:none;}
.hub .bottom p {color:#fbff8e; font-weight:700; font-size:32px;}
.hub .bottom h2 {margin-bottom:60px; color:#fff; font-size:40px; font-weight:400;}
.hub .bottom h2 strong {display:block; color:#defe89; font-weight:700;}
.hub .bottom .btn_wrap {margin-bottom:90px;}
.hub .bottom .headline4 {margin-top:12px; font-size:var(--fsize24); color:#fdfbec; font-weight:700;}

/*가격*/
.price .sub_visual {background:#00439f/*3e85e7*/;}
.price .sub_visual .page_nav {color:#87ccef;}
.price .sub_visual .primary_txt {color:#fff; font-weight:700; font-size:42px;}
.price .sub_visual .headline2 {margin-top:24px; color:#f3f954; font-size:var(--fsize22); font-weight:700;}
.price .sub_visual ul {margin-top:40px; color:#fff;}
.price .sub_visual li {position:relative; margin-bottom:8px; padding-left:12px;}
.price .sub_visual li:last-child {margin-bottom:0;}
.price .sub_visual li:before {content:""; display:block; position:absolute; top:8px; left:0; width:4px; height:4px; background:#fff; border-radius:100%;}

.price .item_price .conts_wrap {display:flex; flex-wrap:wrap; gap:24px; text-align:left;}
.price .item_price dl {display:flex; flex-direction:column; width:calc(25% - 24px); padding:24px 20px; border:1px solid #ddd; border-radius:var(--border-radius); box-shadow:0 0 6px rgba(0, 0, 0, 0.1);}
.price .item_price dt {color:#5293d4; font-weight:500;}
.price .item_price dt strong {display:block; font-weight:700; color:#1271d2; font-size:var(--fsize18);}
.price .item_price .pricing {margin-top:24px; padding-bottom:20px; border-bottom:1px solid #ebebeb; color:#787878;}
.price .item_price .pricing strong {font-weight:800; color:var(--black); font-size:38px;}
.price .item_price ul {margin-top:30px;}
.price .item_price li {position:relative; padding-left:12px;margin-top:6px;}
.price .item_price li:before {content:""; display:block; position:absolute; top:8px; left:0; width:4px; height:4px; background:var(--txt-basic); border-radius:100%;}
.price .item_price li:first-child {margin-top:0;}
.price .item_price .btn_wrap {margin-top:auto; padding-top:20px;}
.price .item_price button {width:100%; padding:10px 20px; background:#3e85e7; border-radius:8px; color:#fff; font-weight:#700; text-align:center;}
.price .item_price .spotlight {border:2px solid #67a4f6; }

.accordion-item {border:none;}
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type .accordion-button {border:0; }
.accordion-button:not(.collapsed) {color:inherit;  background-color:inherit; box-shadow:none;}
.accordion-button {padding:0; color:inherit;}
.accordion-button:focus {box-shadow:none;}

.price .benefit {background:#f6f6f6;}
.price .benefit .accordion {text-align:left;}
.price .benefit .accordion-item {margin-top:10px; padding:20px 24px; border:1px solid #3e85e7; border-radius:20px; }
.price .benefit .accordion-item:first-child {margin-top:0;}
.price .benefit .accordion-button {display:flex; align-items:center; color:var(--black); font-weight:700; font-size:var(--fsize18);}
.price .benefit .accordion-button .icn {display:flex; align-items:center; justify-content:center; width:90px; height:60px; margin-right:16px; background:#3e85e7; border-radius:50px; color:#fff; font-weight:700; font-size:var(--fsize14);}
.price .benefit .accordion-button .num {display:inline-block; margin-right:5px; color:#3e85e7; opacity:0.8}
.price .benefit .accordion-body {margin-top:20px; margin-left:68px; padding:20px; background:#f6f6f6; border-radius:var(--border-radius);}
.price .benefit .accordion-body .headline3 {margin-bottom:30px; color:#106cec; font-size:var(--fsize20); font-weight:700; }
.price .benefit .accordion-body li {position:relative; padding-left:12px;margin-top:6px;}
.price .benefit .accordion-body li:before {content:""; display:block; position:absolute; top:8px; left:0; width:4px; height:4px; background:var(--txt-basic); border-radius:100%;}
.price .benefit .accordion-body li:first-child {margin-top:0;}

.price .faq .accordion {border-top:1px solid var(--black); text-align:left;}
.price .faq .accordion-item {padding:20px 24px; border-bottom:1px solid #ebebeb;}
.price .faq .accordion-button {display:flex; align-items:center; color:var(--black); font-weight:700; font-size:var(--fsize18);}
.price .faq .accordion-button span {display:flex; align-items:center; justify-content:center; width:50px; height:50px; margin-right:16px; background:#3e85e7; border-radius:50px; color:#fff; font-weight:700; font-size:var(--fsize14);}
.price .faq .accordion-body {margin-top:20px; margin-left:68px; padding:20px; background:#f6f6f6; border-radius:var(--border-radius);}
.price .faq .accordion-body .headline3 {margin-bottom:30px; color:#106cec; font-size:var(--fsize20); font-weight:700; }
.price .faq .accordion-body li {position:relative; padding-left:12px;margin-top:6px;}
.price .faq .accordion-body li:before {content:""; display:block; position:absolute; top:8px; left:0; width:4px; height:4px; background:var(--txt-basic); border-radius:100%;}
.price .faq .accordion-body li:first-child {margin-top:0;}

.price .why {background:#f6f6f6;}
.price .why .headline3 {font-size:var(--fsize20);}
.price .why .res_tb {width:100%; overflow-x:auto;}
.price .why .tb_wrap {border:1px solid #3477ff; border-radius:var(--border-radius); box-shadow:0 0 6px rgba(0, 0, 0, 0.1); overflow:hidden;}
.price .why th,
.price .why td {padding:20px 40px; background:#fff; border:none; border-bottom:1px solid #ebebeb; border-right:1px solid #ebebeb;}
.price .why thead th {font-weight:700; color:var(--txt-basic);}
.price .why thead tr {background:#fff;}
.price .why tbody th,
.price .why tbody td {text-align:left;}
.price .why tbody th {width:20%;}
.price .why tbody td {position:relative; width:40%; padding-left:74px;}
.price .why tbody td img {position:absolute; top:20px; left:40px;}
.price .why thead th.empha {background:#c4d9f8; color:var(--black); font-weight:700;}
.price .why td.empha {background:#f0f6ff; color:var(--black); font-weight:700;}
.price .why tbody th br {display:none;}
.price .point .headline3 {margin-top:80px; margin-bottom:40px; color:#0570d0; line-height:1.5;}
.price .point  .conts {display:flex; flex-wrap:wrap; gap:20px; padding-top:35px;}
.price .point dl {position:relative; width:calc(33.33% - 13.33px); padding:80px 40px 50px; background:#fff; border-radius:20px;}
.price .point dl:before {position:absolute; top:-35px; left:50%; transform:translateX(-50%); content:"\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; display:flex; align-items:center; justify-content:center; width:70px; height:70px; background:#3e85e7; border-radius:100%; color:#fff; font-size:24px;}
.price .point dt {margin-bottom:10px; font-size:var(--fsize20); font-weight:700; color:var(--black);}


.price .bottom {background-color:#2278de; background-image:url(/themes/friendkeyx/pro/resources/images/price_bottom_bg.webp); background-position:top 0 left 50%;}
.price .bottom .conts_wrap {margin-top:0; padding-top:120px; color:#fff;}
.price .bottom:before {display:none;}
.price .bottom .tit_d1 {margin-bottom:34px; font-weight:700; font-size:40px; color:#fff;}
.price .bottom .headline3 {font-weight:500; font-size:1rem; color:#fff;}
.price .bottom ul {display:flex; flex-wrap:wrap; gap:24px;}
.price .bottom li {display:flex; justify-content:center; align-items:center; gap:40px; width:calc(50% - 12px); padding:40px; background:#2278df; border:1px solid rgba(255, 255, 255, 0.8); border-radius:var(--border-radius);}
.price .bottom li > *:not(div:first-child) {transform:translateY(-30px);}
.price .bottom li > div:first-child {width:150px; word-break:keep-all;}
.price .bottom li .img_wrap {display:flex; justify-content:center; align-items:center; width:150px; height:150px; margin:0 auto; margin-bottom:12px; background:#4e93e5; border-radius:100%; }
.price .bottom img {margin:0; border-radius:0;}
.price .bottom .package {color:#e6ec36; font-weight:700; font-size:var(--fsize24);}
.price .bottom .package span {display:inline-block; margin-right:4px; color:#fff;}

/*오시는 길*/
.contact-card {
	min-height:286px;
  text-align: center;
  border-radius: 8px;
  margin: 0px 2.5px 30px;
  padding: 60px 15px 55px;
  border:1px solid #ccc;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card:hover {
  background: var(--primary);
}

.contact-card:hover i {
  color: var(--primary);
  background: #fff;
}

.contact-card:hover h4, .contact-card:hover p, .contact-card:hover a {
  color: #fff;
}

.contact-card i {
  width: 50px;
  height: 50px;
  font-size: 22px;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: var(--primary);
  text-shadow: var(--primary-tshadow);
  -webkit-box-shadow: var(--primary-bshadow);
          box-shadow: var(--primary-bshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card h4 {
  margin-bottom: 18px;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card p {
  width: 250px;
  font-size: 18px;
  line-height: 30px;
  margin: 0 auto;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card p a {
  font-size: 18px;
  line-height: 30px;
  display: block;
  color: var(--text); text-decoration:none;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.contact-card.active {
  background: var(--primary);
}

.contact-card.active i {
  color: var(--primary);
  background: #fff;
}

.contact-card.active h4, .contact-card.active p, .contact-card.active a {
  color: #fff;
}

.contact-part .tel a {font-size:32px; font-weight:700;}
.contact-map iframe {
  height: 474px;
  width: 100%;
  border: none;
}

/*연혁*/
.history .overview .conts_wrap {padding-top:0;}
.history .overview .img_wrap {border-radius:var(--border-radius); overflow:hidden;}
.history .overview h2 {width:100%; max-width:840px; margin:0 auto; margin-top:60px; font-size:var(--fsize24); color:var(--black); font-weight:700;}
.history .overview .about {display:flex; gap:60px; margin-top:60px;}
.history .overview .certi {display:flex; gap:10px; width:50%;}
.history .overview .certi img {width:50%; border:1px solid #ebebeb; border-radius:5px; box-shadow:0 0 5px rgba(0, 0, 0, 0.1);}
.history .overview .info {width:calc(50% - 60px); display:flex; flex-wrap:wrap; padding-top:10px; border-top:1px solid var(--black); text-align:left; }
.history .overview .info dt {position: relative; width:34%;  padding:5px 10px; padding-left:24px; color:var(--black); border-bottom:1px solid #ddd;}
.history .overview .info dt:before {position:absolute; top:10px; left:10px; content:""; width:5px; height:5px; background:var(--black); border-radius:100%;}
.history .overview .info dd {width:66%; padding:5px 10px; border-bottom:1px solid #ddd;}

.history .tit_wrap {margin-bottom:60px;}
.history .tit_d1:after {content:""; display:block; width:80px; height:2px; margin:0 auto; margin-top:20px; background:var(--black);}
.history .tit_wrap  .headline {margin-top:40px; line-height:1.4;}

.history .bizsec {background:#f6f6f6;}
.history .bizsec .headline {font-size:var(fsize18); color:var(--black);}
.history .bizsec h4 {width:fit-content; margin:0 auto; padding:20px 35px; background:#1679dc; border-radius:50px; color:#fff; fotn-weight:700; font-size:16px; }
.history .bizsec .field_wrap {display:flex; margin-top:40px; background:#fff; border:1px solid #ebebeb; border-radius:var(--border-radius); box-shadow:0 0 5px rgba(0, 0, 0, 0.1); overflow:hidden;}
.history .bizsec .field_wrap > dl {width:20%; padding:15px; border-left:1px solid #ebebeb; text-align:left;}
.history .bizsec .field_wrap > dl:first-child {border-left:none;}
.history .bizsec .field_wrap  > dl > dt {margin-bottom:20px; padding:15px 10px; background:#4f9eed; border-radius:10px; color:#fff; text-align:center;}
.history .bizsec .field_wrap  li {position:relative; padding:2px 3px; padding-left:13px;}
.history .bizsec .field_wrap  li:before {position:absolute; top:8px; left:3px; content:""; width:3px; height:3px; background:#525252; border-radius:100%; }
.history .bizsec .field_wrap > dl dl {padding-left:3px;}
.history .bizsec .field_wrap > dl dl dt {margin-top:20px; color:#4f9eed; font-weight:500;}
.history .bizsec .field_wrap  > dl dl dd {position:relative; padding:2px 3px; padding-left:13px;}
.history .bizsec .field_wrap  > dl dl dd:before {position:absolute; top:2px; left:3px; content:"-";}

.history .his_detail .details {display:flex; flex-wrap:wrap; gap:20px; }
.history .his_detail .details > div {width:calc(50% - 10px); padding:20px; background:#fff; border:1px solid #ebebeb; border-radius:var(--border-radius); box-shadow:0 0 5px rgba(0, 0, 0, 0.1); overflow:hidden; text-align:left; }
.history .his_detail .details .year {margin-bottom:24px; font-size:26px; color:var(--black); font-weight:700;}
.history .his_detail .details .date span {display:inline-block; margin-right:12px; font-weight:700px; color:var(--black);}
.history .his_detail  strong {color:#235cd4;}
.history .his_detail li {padding:3px 0;}

.history .btn_wrap {background:#16b8ba;}
.history .btn_wrap .conts_wrap {display:flex; align-items:center; justify-content:center; gap:10px; padding:60px 0;}
.history .btn_wrap button {display:flex; align-items:center; justify-content:center; width:240px; height:64px; border:1px solid #fff; border-radius:50px;  color:#fff; font-weight:700;}


/*모달*/
.modal-content {background:#fff;}
.modal-header .close {font-size:34px; color:#121212; line-height:0;}
.modal-header .close span {margin-top: -4px;}

@media (max-width: 1440px) {
	.hp .main_visual #animation_container {justify-content:center;}
}

@media (max-width: 1200px) {
	.header-part.hp .navbar-part,
	.header-part.hp .header-logo {display:none;}
	.header-part.hp .header-media-group {width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex;}

	.hp .main_visual .container {min-height: 500px; padding: 0 20px;}
	.hp .main_visual .text_wrap {font-size:16px;}

	.hpdemo .m_sec {padding-left:var(--gutter-x)!important; padding-right:var(--gutter-x)!important; word-break:keep-all;}

	/**/
	.sub_visual {min-height:500px;}
	.sub_visual .container {max-width:100%; padding-left:var(--gutter-x); padding-right:var(--gutter-x)}
	.sub_visual .text_wrap {width:56%;}
	.sub_visual .img_wrap {width:44%;}

	.sub .sec { padding-left:var(--gutter-x); padding-right:var(--gutter-x)}
	.sub_visual + section .conts_wrap {padding-top:120px;}

	.sub .bottom:before {width:100vw; margin-left:calc(var(--gutter-x) * -1); margin-right:calc(var(--gutter-x) * -1);}

	.friendme .sub_visual .primary_txt {transform: translateY(36%);}
}

@media (max-width: 1024px) {
	.hp .main_visual .img_wrap {width:50%;}
	.hp .main_visual .text_wrap {width:50%;}

	.hp .m_sec .sec_txt {width:55%;}
	.hp .m_sec .sec_img {width:45%;}
}

@media (max-width: 992px) {
	.hpdemo .header-part {border-bottom:1px solid #c5c6c9;}

	.hpdemo .dropdown-position-list {left:auto; right:0;}
	.hpdemo .dropdown-position-list::before {left:auto; right:30px;}

	/**/
	.bottom_inquiry .conts_wrap {align-items: center; padding:10px 20px;}
	.bottom_inquiry .col1 {flex-direction:column;}
	.bottom_inquiry h2 {font-size:18px;}
	.bottom_inquiry .tel { font-size: 28px;}
	.bottom_inquiry .input_wrap {gap:4px;}
	.bottom_inquiry input:not([type="checkbox"]),
	.bottom_inquiry select {padding:10px;}
	.bottom_inquiry button{padding:10px 14px; font-size:1rem;}

	/**/
	.hp .main_visual .container {flex-direction:column; min-height:auto;}
	.hp .main_visual .container > * {width:100%;}
	.hp .main_visual .text_wrap {padding-top:40px; padding-right:0;}
	.hp .main_visual .img_wrap {justify-content: center; margin-bottom:40px; text-align:center;}
	.hp .main_visual .img_wrap img {max-width:520px;}
	.hp .main_visual .check_wrap {margin-top:40px;}

	.hp .m_sec:not(:first-of-type) {flex-direction:column-reverse!important;}
	.hp .m_sec .sec_txt, 
	.hp .m_sec .sec_img {width:100%;}
	.hp .m_sec .sec_img img {display: block; max-width:420px; margin:0 auto;}
	.hp .m_sec.sec1 h2 strong {max-width:470px;}

	.hp .m_sec.point .headline3 {font-size:18px;}
	.hp .m_sec.point .conts {gap:38px;}
	.hp .m_sec.point dl {width:100%;}     
	.hp .m_sec.point dl:before {top:-20px; width:50px; height:50px;}

	.hp .m_sec.point dl {padding: 60px 20px 40px;}

	.hp .m_sec.portfolio .headline span {width:33.33%;}
	.hp .m_sec.portfolio ul {gap:40px 20px;}
	.hp .m_sec.portfolio li {width:calc(50% - 13.33px);}

	/**/
	.sub_visual .container {flex-direction: column;}
	.sub_visual .text_wrap,
	.sub_visual .img_wrap {width:100%;}
	.sub_visual .img_wrap {text-align:center;}
	.sub_visual .primary_img {max-width:70%!important;}

	.sub .portfolio ul {gap:24px;}
	.sub .portfolio li {width: calc(50% - 16px);}

	.landing .how .conts {flex-wrap:wrap;}
	.landing .how dl {width:50%;}
	.landing .how dl:first-child,
	.landing .how dl:nth-child(2) {border-bottom:1px solid #ebebeb;}
	.landing .function dl {width: calc(50% - 16px);}	

	.friendme .sub_visual .primary_txt {transform: none;}
	.friendme .point dl {padding: 60px 20px 40px;}
	.friendme .auto .conts_wrap {padding-top:0;}
	.friendme .auto .img_wrap, 
	.friendme .network .img_wrap {width:45%; padding-top:40px; }
	.friendme .auto .text_wrap, 
	.friendme .network .text_wrap {width:55%; padding-left:20px;}
	.friendme .effective li,
	.friendme .example li,
	.friendshop .example li {width: calc(50% - 13.33px);}

	.friendshop .ai li {width:calc(50% - 16px);}
	.friendshop .summery li {width:50%; border:none; border-right:1px solid #ebebeb; border-bottom:1px solid #ebebeb;}
	.friendshop .summery li:last-child {border-right:none;}
	.friendshop .summery li:nth-last-child(-n+2) {border-bottom:none;}
	.friendshop .hub .exam li {width: calc(50% - 16px);}
	.friendshop .custom .summery li {width:50%;}
	.friendshop .custom .summery li:nth-last-child(2) {border-bottom:1px solid #ebebeb;}
	.friendshop .custom .summery li:last-child {border-right:1px solid #ebebeb;}
	.friendshop .tb_wrap {width:900px;}

	.hub .sub_visual .primary_txt {transform: none;}
	.hub .point:after {width:auto; margin-left:var(--grid-nmargin); margin-right:var(--grid-nmargin);}
	.hub .realtime .text_wrap,
	.hub .crawling .text_wrap {width:100%; padding:0;}
	.hub .realtime .img_wrap,
	.hub .crawling .img_wrap {width:100%; padding:0; margin-bottom:40px;}
	.hub .realtime .text br {display:none;}
	.hub .crawling .text_wrap p {max-width:none;}
	.hub .system li {width:50%; border:none; border-right:1px solid #ebebeb; border-bottom:1px solid #ebebeb;}
	.hub .system li:nth-of-type(2n) {border-right:none;}
	.hub .system li:nth-of-type(2n):after {display:none;}

	.price .item_price dl {width:calc(50% - 12px);}
	.price .why th, 
	.price .why td {padding:20px;}
	.price .why tbody th {vertical-align:top;}
	.price .why tbody td  {padding-left:50px; vertical-align:top;}
	.price .why tbody td img {left:20px;}
	.price .point dl {padding-left:20px; padding-right:20px;}
	.price .bottom ul {gap:10px;}
	.price .bottom li {gap:10px; padding:30px 20px;}
	.price .bottom li > div:first-child {width:100px;}
	.price .bottom li > img {width:32px;}
	.price .bottom li .img_wrap {width:100px; height:100px;}
	.price .bottom li .img_wrap img {width:50%;}
	.price .bottom .package span {display:block;}

	.history .overview .about {flex-direction:column;}
	.history .overview .info {width:100%;}
	.history .overview .certi {width:80%; margin:0 auto; justify-content:center;}
	.history .bizsec .field_wrap {flex-wrap:wrap;}
	.history .bizsec .field_wrap > dl {width:50%; border:none; border-bottom:1px solid #ebebeb; border-right:1px solid #ebebeb;}
	.history .bizsec .field_wrap > dl:nth-of-type(2n) {border-right:none;}
	.history .his_detail .details {gap:10px;}
	.history .his_detail .details > div {width:100%;}
	.history .his_detail .details .year {margin-bottom: 10px;}
}

@media (max-width:576px) {
	:root {		
		--fsize24 : 20px;		
	}

	.hpdemo .section {margin-bottom: 55px;}

	/**/
	.bottom_inquiry .input_wrap {flex-wrap:wrap;}
	.bottom_inquiry input:not([type="checkbox"]),
	.bottom_inquiry select {flex: auto; width: 36%;}

	.bnr_inquiry {display:none; bottom:164px}

	.bottom_inquiry .conts_wrap {flex-direction:column; align-items:flex-start; gap: 10px;}
	.bottom_inquiry .col1 {flex-direction:row; align-items:center;}
	.bottom_inquiry h2 {font-size:1rem; margin:0; margin-right:4px; }
	.bottom_inquiry .tel {font-size:20px;}
	.bottom_inquiry .logo {margin-left:0;}
	.bottom_inquiry .logo img {height:14px; margin-right:10px;}

	/**/
	.hp .main_visual {word-break:keep-all;}
	.hp .main_visual br {display:none;}
	.hp .main_visual h1 {margin-bottom:24px; font-size:36px;}
	.hp .main_visual h1 span {margin-top:5px; font-size:28px;}
	.hp .main_visual .text_wrap {padding-top:40px;}
	.hp .main_visual .text_wrap .scaleHold {padding-left:15px;}
	.hp .main_visual .img_wrap {margin-right:0;}
	.hp .main_visual .check_wrap {margin-left:0;}
	.hp .main_visual .check_wrap dd {flex-direction:column; align-items:flex-start;}
	.hp .main_visual .txt_weblog {margin-top:0; margin-left:0; padding:20px 20px 24px 20px;}
	    
	.hpdemo .main .partners ul {gap:10px;}
	.hpdemo .main .partners li {width:calc(50% - 10px);}
	.hpdemo .btn {font-size:1em;}

	.hpdemo .counter-section {padding:40px 0;}
	.hpdemo .counter-section .row > div {margin-bottom:40px; border:none!important;}
	.hpdemo .counter-section .row > div:nth-last-child(1),
	.hpdemo .counter-section .row > div:nth-last-child(2) {margin-bottom:0;}
	.hpdemo .fr_count_main_wrapper .icon {margin-bottom:6px;}
	.hpdemo .counter-section .icon img {max-height:44px;}

	.hpdemo .m_sec.sec1 {padding: 60px 0;}
	.hpdemo .m_sec.sec1 h2 {font-size:34px;}
	.hpdemo .m_sec.sec1 h2 strong:after {width: 70px; height: 56px; bottom: -6px; right: 0px;}
	.hpdemo .m_sec.sec1 h2 br:first-child {display:block;}
	.hpdemo .m_sec {padding:20px 0;}
	.hpdemo .m_sec:not(:first-of-type) {gap:24px;}
	.hpdemo .m_sec h3 {margin-bottom:24px; font-size:32px;}
	.hpdemo .m_sec.sec2 em {margin-bottom:24px; font-size:26px;}
	.hpdemo .m_sec ul {padding-bottom:24px;}
		
	.hpdemo .m_sec.point,
	.hpdemo .m_sec.seo {padding:60px 0;}
	.hpdemo .m_sec.point dl {padding:40px 20px; border-radius:20px;}  
	.hpdemo .m_sec.seo .conts_wrap {padding:20px;}
	.hpdemo .m_sec.seo .searchbox1 {gap:20px; padding: 16px 36px;}
	.hpdemo .m_sec.seo h2 {margin-top: 20px; font-size:36px;}
	.hpdemo .m_sec.seo .searchbox2 {gap: 14px; margin-top:30px; padding: 12px 20px;}
	.hpdemo .m_sec.seo .text {font-size:22px;}
	.hpdemo .m_sec.seo .result {margin-top: 30px;}
	.hpdemo .m_sec.seo .result br {display:none;}
	.hpdemo .m_sec.portfolio {padding:60px; 0;}
	.hpdemo .m_sec.portfolio .headline span strong {font-size:28px;}
	.hpdemo .m_sec.portfolio .headline {flex-wrap:wrap; margin-bottom:60px;}
	.hpdemo .m_sec.portfolio .headline span {width:100%;}
	.hpdemo .m_sec.point h2, 
	.hpdemo .m_sec.portfolio .tit_d1,
	.hpdemo .m_sec.weblog .tit_d1 {font-size:28px;}
	.hpdemo .m_sec.portfolio .sec .tit_d1 {margin-bottom:20px;}
	.hpdemo .m_sec.portfolio .sec .tit_d1:after {margin-top:20px;}
	.hpdemo .m_sec.portfolio ul {flex-direction:column; gap:24px;}
	.hpdemo .m_sec.portfolio li {width:100%;}
	.hpdemo .m_sec.portfolio .img_wrap {margin-bottom: 10px; padding-top:60%;}
	.hpdemo .m_sec.portfolio dt {margin-bottom: 4px;}
	.hpdemo .m_sec.weblog {padding:60px 20px;}
	.hpdemo .m_sec.weblog .headline3 {gap:4px;}
	.hpdemo .m_sec.weblog .headline3 span {padding:10px 20px; font-size:16px;}
	.hpdemo .m_sec.weblog .bubble1 {position: relative; top: auto; left:6px; width:fit-content; margin-bottom:30px; text-align:left; }
	.hpdemo .m_sec.weblog .bubble2 {position: relative; top: auto; right:0px; width:fit-content; margin-bottom:20px; text-align:left;  }
	.hpdemo .m_sec.weblog .bubble2 img {height:50px;}

	/**/
	.page_nav {margin-bottom: 30px;}

	.landing .sub_visual .primary_txt {font-size:36px;}
	.landing .sub_visual .sec_txt {margin-top:20px; font-size:18px;}
	.landing .sub_visual ul {margin-top:20px;}
	.sub_visual .primary_img {max-width: 100% !important;}
	.sub_visual .ball1 {top:40px; left: 15px; width:40px;}
	.sub_visual .ball2 {bottom:-40px; right: 23px; width:40px;}
	.sub .conts_wrap {padding: 60px 0;}
	.sub .tit_d1 {font-size:30px;}
	.sub .tit_wrap,
	.landing .tech .tit_wrap {margin-bottom: 30px;}	

	.sub .kingkong h2 i {margin-bottom:14px; font-size:40px;}
	.sub .kingkong h2 {margin-bottom: 20px; font-size:28px;}
	.sub .kingkong .headline3 {margin-bottom: 20px; font-size: 18px; word-break:keep-all;}
	.sub .kingkong .headline4 {font-size:24px;}
	.sub .kingkong ul {margin-bottom:20px; padding:16px;}
	.sub .kingkong li {font-size: 16px; text-align: left; word-break: keep-all;}

	.sub .portfolio ul {gap:24px;}
	.sub .portfolio li {width:100%;}
	.sub .portfolio .img_wrap {margin-bottom:10px;}
	.sub .portfolio dt {margin-bottom: 4px;}

	.sub .bottom {background-position:top 90px left 50%; background-size:auto 60%;}
	.sub .bottom:before {width: calc(100% + 40px); height:94px;}
	.sub .bottom img {margin-top: -100px; border-radius:20px;}
	.sub .bottom h2 {font-size:24px; word-break:keep-all;;}
	.sub .bottom .btn_wrap {gap:4px;}

	.landing .sub_visual .primary_txt {font-size:24px;}
	.landing .sub_visual .primary_txt strong {font-size:36px;}
	.landing .how dl {width:100%; border:none; border-bottom:1px solid #ebebeb;}
	.landing .how dl:last-child {border-bottom:none;}
	.landing .how .num {width:40px; height:40px; margin-bottom:16px; font-size:14px;}
	.landing .function .conts {gap:10px;}
	.landing .function dl {width:100%;}
	.landing .price .conts_wrap {margin:60px auto;}
	.landing .price .tit_d1:after {bottom: -16px;}
	.landing .price .headline3 {margin-bottom: 24px; padding:0 20px; font-size:18px; word-break:keep-all;}
	.landing .price ul  {flex-direction: column; align-items:center; justify-content:center; gap:40px;}
	.landing .price ul li:not(:last-child):after {top:auto; right:auto; left:51%; bottom:-42px; transform:translate(-50%) rotate(90deg);}	
	.landing .tech ul {flex-direction:column;}
	.landing .tech ul li {width:100%; padding: 30px 20px; border:none; border-bottom:1px solid #ebebeb;}
	.landing .tech ul li:last-child {border-bottom:none;}
	.landing .tech dd {font-size:16px;}
	
	.friendme .sub_visual .primary_txt {font-size:36px;}
	.friendme .point .headline3 {font-size:18px;}
	.friendme .point .conts {gap:38px;}
	.friendme .point dl {width:100%; padding:40px 20px; border-radius:20px;}     
	.friendme .point dl:before {top:-20px; width:50px; height:50px;}
	.friendme .auto .img_wrap, 
	.friendme .network .img_wrap,
	.friendme .auto .text_wrap, 
	.friendme .network .text_wrap {width:100%; padding:0;}
	.friendme .auto .img_wrap, 
	.friendme .network .img_wrap {margin-bottom:40px;}
	.friendme .auto .tit_wrap, 
	.friendme .network .tit_wrap {margin-bottom:10px;}
	.friendme .auto .headline3, 
	.friendme .network .headline3 {margin-bottom:20px; font-size:30px;}
	.friendme .auto ul {margin-bottom: 20px;}
	.friendme .network .headline3 br,
	.friendme .network .headline4 br {display:none;}
	.friendme .network dl {margin-bottom: 20px;}
	.friendme .effective .tit_d1 {margin-bottom:20px;}
	.friendme .effective .headline3 {font-size:20px;}
	.friendme .effective li, 
	.friendme .example li {width:100%;}
	.friendme .effective .img_wrap {width:80px; height:80px;}
	.friendme .effective .img_wrap img {height:50px;}
	.friendme .effective li {padding:20px; border-radius:30px;}
	.friendme .example li {border-radius:20px;}
	.friendme .example .img_wrap {height:126px;}
	.friendme .example li .img_wrap > div {width:150px; height:150px;}
	.friendme .example li .img_wrap img {height:80px;}
	.friendme .faq .accordion-item {padding: 10px 16px;}
	.friendme .faq .accordion-body {padding-left:32px; background-position: top 2px left 8px;}
	.friendme .bottom ul:after {height: 24px; margin:16px auto;}

	.friendshop .sub_visual .primary_txt strong {font-size:32px;}
	.friendshop .sub_visual .primary_txt {font-size:26px;}
	.friendshop .sub_visual .txt_box {margin-top:30px; padding:15px; border-radius:15px;}
	.friendshop .sub_visual .txt_box strong {font-size:24px;}
	.friendshop .tb_wrap {width:600px;}
	.friendshop th {padding:10px; padding-left:10px;}
	.friendshop td {padding:10px; padding-left:30px;}
	.friendshop td img {left:8px;}
	.friendshop .ai ul {gap:10px;}
	.friendshop .ai li {width:100%;}
	.friendshop .ai .headline4:before, 
	.friendshop .hub .tit_d2:before, 
	.friendshop .erp .headline4:before, 
	.friendshop .custom .headline4:before {height: 30px; margin: 20px auto;}
	.friendshop .ai .headline4, 
	.friendshop .erp .headline4, 
	.friendshop .custom .headline4 {font-size:20px;}
	.friendshop .hub .tit_wrap, .friendshop .erp .tit_wrap {margin-bottom:30px;}
	.friendshop .summery, 
	.friendshop .tech .sum {margin-top:20px;}
	.friendshop .summery li {width:100%; border:none; border-bottom:1px solid #ebebeb!important;}
	.friendshop .summery li:last-child {border-bottom:none!important;}
	.friendshop .hub .exam {gap:10px; margin-top:10px;}
	.friendshop .hub .exam li {width:100%; padding:20px;}
	.friendshop .custom .summery li {width:100%; border:none; border-bottom:1px solid #ebebeb;}
	.friendshop .custom .summery li:last-child {border-right:none;}
	.sub .example ul {gap:10px;}
	.sub .example li {width:100%; border-radius:20px;}

	.hub .sub_visual .primary_txt {font-size:30px;}
	.hub .point i {margin-bottom: 10px; font-size:40px;}
	.hub .point .conts_wrap {padding-bottom: 0;}
	.hub .link .conts_wrap {padding-top:0; padding-bottom:60px;}
	.hub .link p {margin-bottom:60px;}
	.hub .link .headline3 {margin-top:20px;}
	.hub .link .headline3 strong {margin-bottom: 20px; font-size: 30px;}
	.hub .realtime .tit_d1, 
	.hub .network .tit_d1 {font-size: 28px;}
	.hub .realtime .tit_wrap, .hub .crawling .tit_wrap {margin-bottom: 20px;}
	.hub .realtime .headline3 {margin-top: 20px;}
	.hub .realtime li:first-child:after {width:18px; right:-25px;}
	.hub .realtime ul {gap:30px;}
	.hub .realtime li {width: calc(50% - 15px);}
	.hub .different li > div span {margin-right:6px;}
	.hub .different li > i {margin-left:4px; margin-right:4px; font-size:12px;}
	.hub .different li > div {padding-right:10px;}
	.hub .different li > div span {width:32px;}
	.hub .different li > div span img {width:12px;}
	.hub .different .text {margin-top:30px; padding-top:30px; font-size:18px;}
	.hub .different .text:before {width:20px;}
	.hub .system li {width:100%;}
	.hub .system li:after {display:flex!important; right: auto; top:auto; bottom:-18px; left:50%; width:34px; height:34px; transform:translateX(-50%) rotate(90deg);}
	.hub .system li:last-child:after {display:none!important;}
	.hub .system li {padding:30px 20px 40px;}
	.hub .system img {height:50px;}
	.hub .bottom {background-position: top center; background-size: auto 30%;}
	.hub .bottom .conts_wrap {padding-top:60px;}
	.hub .bottom p {font-size:20px;}
	.hub .bottom h2 {margin-bottom: 24px;}	
	.hub .bottom .btn_wrap {margin-bottom:40px;}
	.sub .bottom button {padding: 14px 12px;}
	.sub .bottom button i {margin-left: 2px;}
	.hub .bottom .headline4 {font-size:16px;}

	.price .sub_visual .primary_txt {font-size:32px;}
	.price .item_price .conts_wrap {gap:10px;}
	.price .item_price dl {width:100%;}
	.price .item_price .pricing {margin-top: 14px; padding-bottom: 16px;}
	.price .item_price ul {margin-top:24px;}
	.price .benefit .accordion-button .icn {flex:none; width:50px; height:40px; margin-right:10px;}
	.price .benefit .accordion-button .icn img {height:22px;}
	.price .benefit .accordion-item {padding:15px 10px;}
	.price .benefit .accordion-button {align-items:flex-start;}
	.price .benefit .accordion-body {margin-left:0; margin-top:10px;}
	.price .faq .accordion-item {padding:15px 3px;}
	.price .faq .accordion-button span {width:40px; height:40px;}
	.price .faq .accordion-body {margin-left:0; margin-top:10px;}
	.price .faq .accordion-body .headline3 {font-size:16px;}
	.price .why th, .price .why td {padding: 10px;}
	.price .bottom li {width:100%;}
	.price .why tbody th {width:auto; word-break:break-all;}
	.price .why tbody th br {display:block;}
	.price .why tbody td {width:36%; padding-left:10px;}
	.price .why tbody td.empha {width:40%;}
	.price .why tbody td img {display:block; position:relative; top:auto; left:auto; margin-bottom:5px;}
	.price .point .headline3 {margin-top:50px; margin-bottom:4px; font-size:16px; font-weight:700;}
	.price .point .conts {gap:38px;}
	.price .point dl {width:100%; padding:40px 20px; border-radius:20px;}     
	.price .point dl:before {top:-20px; width:50px; height:50px;}
	.price .bottom {background-position: top 0 left 50%; background-size: auto 15%;}
	.price .bottom .conts_wrap {padding-top:60px;}
	.price .bottom .tit_d1 {margin-bottom:0; font-size:30px;}
	.price .bottom .headline3 {margin-top:20px;}
	.price .bottom li {gap:4px;}
	.price .bottom li > div {width:calc(50% - 23px);}
	.price .bottom li .img_wrap {width:90px; height:90px;}
	.price .bottom img {margin-top:0; border-radius:0;}
	.price .bottom li > img { width: 24px;}
	.price .bottom .package {font-size:18px;}

	.page .headline .img_wrap {margin-top:30px;}
	.page .headline .row:last-child {margin-bottom:0;}
	.page .headline .row > * {padding-left:0!important; padding-right:0!important;}
	.page .sec .cont_wrap {width:100%;}
	.page .sec1 {margin-top:0;}
	.page .sec .title_d2 span:after {margin-top:5px; margin-bottom:10px;}

	.history .overview .about {gap:30px; margin-top:30px;}
	.history .bizsec .field_wrap > dl {width:100%; border-right:none;}
}


/*모달-가격표*/
.price_table .modal-dialog {max-width:1000px;}
.price_table .modal-header .close {margin-left:auto;}
.price_table .modal-header h5 {display:none; color:var(--black);}
.price_table .modal-header {border-bottom:none;}
.price_table .plans {display: flex; justify-content: center;}
.price_table .plan {border: 1px solid #ddd; border-left:none; border-radius: 8px; padding: 30px 20px; flex:1 0 auto; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);}
.price_table .plan:first-child {border-left:1px solid #ddd;}
.price_table .plan h2 {margin-bottom: 10px; padding-bottom: 10px; border-bottom:1px solid #333; color:var(--black); text-align: center; font-size:var(--fsize24);}
.price_table .plan h2.stand {color: #0178be;}
.price_table .summery {padding:15px; background:#f6f6f6; border-radius:8px;}
.price_table .plan p {text-align: center; margin: 5px 0 20px; font-weight: 500;}
.price_table .plan p:last-child {margin-bottom:0;}
.price_table .plan p strong {color:var(--black);}
.price_table .plan ul {margin-top:20px; padding:0 3px;}
.price_table .plan ul li {display: flex; align-items: center; gap: 8px; margin: 8px 0;}
.price_table .plan ul li::before {content: '○'; color:#079af8; font-weight: 900; }
.price_table .plan ul li.cross::before {content: '×';  color: #e00;}
.price_table .price {text-align: center; margin-top: 25px; font-size:var(--fsize22); font-weight:800; color: #d25730;}

@media (max-width:1200px) {
	.modal .modal-dialog {padding:0 10px;}
}

@media (max-width: 992px) {
	.price_table .plans{flex-wrap:wrap; justify-content:flex-start; gap:20px 0;}
	.price_table .plan:nth-of-type(3n+1):not(:first-of-type) {max-width:33.33%; border-left:1px solid #ddd;}
	.price_table .plan:nth-of-type(3n+1):not(:first-of-type) ~ .plan {max-width:33.33%;}
}

@media (max-width: 576px) {
	.price_table .modal-header {padding:4px 10px 0 10px;}
	.price_table .modal-body {padding:10px;}
	.price_table .plans {flex-direction: column; align-items: center; border:1px solid #ddd; border-radius:10px; overflow:hidden;}
	.price_table .plan,
	.price_table .plan:nth-of-type(3n+1):not(:first-of-type),
	.price_table .plan:nth-of-type(3n+1):not(:first-of-type) ~ .plan {width:100%; max-width:100%; padding:15px; border:none!important; border-bottom:1px solid #ddd!important; border-radius:0; box-shadow:none;}
	.price_table .plan:last-child {border-bottom:none!important;}
	.price_table .plan p {margin-bottom:10px;}
}