@charset "utf-8";
/** title */
.basic-title__area {text-align: center;}
.basic-title__fs34 {font-weight: 800;font-size: 3.4rem;line-height: 1.5;}
.basic-title__fs34 > em {font-weight: 400;}
.basic-title__fs54 {font-weight: 800;font-size: 5.4rem;line-height: 1.5;}
.basic-title__fs54 > em {font-weight: 400;}
.basic-title__desc {margin-top: 1.4rem;color: #6b6b6b;font-size: 1.6rem;line-height: 1.6;}

@media  screen and (max-width: 48rem) {
  .basic-title__fs34 {font-weight: 800;font-size: 1.8rem;line-height: 1.5;}
  .basic-title__fs34 > em {font-weight: 400;}
  .basic-title__fs54 {font-weight: 800;font-size: 2.4rem;line-height: 1.5;}
  .basic-title__fs54 > em {font-weight: 400;}
  .basic-title__desc {margin-top: 1.4rem;color: #6b6b6b;font-size: 1.2rem;line-height: 1.6;}
}
/** title style */
.round-title {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 3rem;
  background: #0099A8;
  color: #fff;
  font-size: 1.6rem;
}

/** accordion menu */
.accordion + .accordion {margin-top: 10rem;}
.accordion .subject {
  margin-bottom: 0.7142857142857143em;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.5em;
}
.accordion .ul { border-bottom: 1px solid #000;}
.accordion .ul>li>.q {
  position: relative;
  padding: 0.7083333333333333em 2.5em 0.7083333333333333em 1.25em;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2.75rem;
  cursor: pointer;
  border-top: 1px solid #000;
}
.accordion .ul>li>.q .icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
}
.accordion .ul>li>.q .icon:before,
.accordion .ul>li>.q .icon:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.2rem;
  margin-top: -0.1rem;
  background-color: #000;
  font-size: 0;
  content: '';
  transition: transform 0.4s;
}
.accordion .ul>li>.q .icon:after {transform: rotate(90deg);}
.accordion .ul>li>.q.ttr .icon:after {transform: rotate(0deg);}
.accordion .ul>li>.q.ttr .icon:before {transform: rotate(-180deg);}
.accordion .ul>li>.a {
  display: none;
  padding: 1.875em;
  margin-bottom: 2rem;
  border-radius: 1.2rem;
  background-color: #fff;
  background-color: #ecf1ff;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.5625em;
  border-top: 1px solid #fff;
}
@media  screen and (max-width: 16.7rem) {
  .accordion {margin-right: 1.6rem;margin-left: 1.6rem;}
  .accordion .subject {font-size: 2.4rem;}
  .accordion .ul>li>.q {padding: 1.2rem 4rem 1.2rem 2rem;font-weight: bold;font-size: 2.1rem;}
  .accordion .ul>li>.a {padding: 2.5rem 2rem 2.5rem 2rem;font-size: 1.6rem;}
  .accordion .ul>li>.q .icon {right: 0.2rem;width: 1.6rem;height: 1.6rem;margin-top: -0.8rem;}
  .accordion+.accordion {margin-top: 5rem;}
}
@media  screen and (max-width: 48rem) {
  .accordion .ul>li>.q {
    padding: 0.7083333333333333em 2.5em 0.7083333333333333em .8em;
    font-size: 2.2rem;
  }
  .accordion .ul>li>.a {padding: 1em .8em;}
}

/** button */
label,
button,
input[type='button'],
input[type='submit'] {cursor: pointer;}
label {font-size: 1.6rem;}
button{background: transparent;font:var(--font);text-align: center;outline: none; vertical-align: middle;}
button:disabled, a.btn:disabled {border: 1px solid #a0a0a0; background-color: #a0a0a0;color: #fff; cursor: default;pointer-events: none;}
.btn {display: inline-block;width: 100%; padding: 0 .5rem;border: 1px solid var(--main-color);border-radius: 8px;background-color: var(--main-color); color: #fff;text-align: center;outline: none;vertical-align: middle;} 
.btn-area {width: 100%;}
.gradient-btn {
  display: inline-block;
  width: 9rem;
  min-width: 6rem;
  padding: .5rem .5rem;
  border: none;
	border-radius: 4rem;
	background-size: 300% 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;	
	background-image: linear-gradient(to right, #103db8, #30b9a5, #30b9a5, #103db8);
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
@media(hover: hover) {
  .gradient-btn:hover {
    background-position: 100% 0;
		-o-transition: all .4s ease-in-out;
		-webkit-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
  }
}

/** roll img */
.bg-flow__wrap {overflow: hidden;}
.bg-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 496rem;
  height: 100%;
  background:#000 url(../images/flex/gate-main.jpg);
  background-size: contain;
  animation: bg_flow 20s linear infinite;
}
.bg-flow img {width: calc(496rem / 2);}

@keyframes bg_flow {
  0% {
      transform: translate(0);
  }

  to {
      transform: translate(-50%);
  }
}

#gate-header {
  width: 100%;
  background: #fff;
  box-shadow: 10px 10px 10px 10px #00000008; 
}
.gate-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
  margin: 0 auto;
}
.gate-header .gate-logo__box {width: 12rem;} 
.gate-header .gate-logo__box .gate-logo__link {
  display: inline-block;
  width: inherit;
  vertical-align: middle;
}
.gate-header .gate-logo__box .gate-logo__link img {width: 100%;}

#gate-container {position: sticky; position: -webkit-sticky;}
.gate-main {position: relative;}
.gate-main__contants {
  position: absolute;
  top: 50%;
  right: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
}

.gate-title__area {text-shadow: 1rem 0rem 4rem #35baca;}
.gate-title__area .gate-hash {font-size: 2.5rem;}
.gate-title__area .gate-hash > span {margin: 0 .5rem;}
.gate-title__area .gate-title > p { margin-top: -2rem; font-weight: 800;font-size: 10rem;}
.gate-title__area .gate-title > p + P {font-size: 2rem;}
.gate-title__area .gate-desc {width: 50%; margin: 2rem auto 0; font-size: 1.8rem;}
.gate-title__area .gate-desc > p {font-size: 3.6rem; font-weight: 800;}
.gate-title__area .gate-desc > p + p {font-size: 1.8rem;}

.gate-main__summary {width: 96%; min-width: 32rem; margin: 0 auto;}
.gate-main__summary .round-box .img-holder > img {max-width: 14rem; padding: 1rem;}
.gate-main__summary .round-box p {font-weight: 600;font-size: 2.8rem;}

@media  screen and (max-width: 102.4rem) {
  .gate-main__summary .round-box p {font-size: 1.8rem;}
  .fnb .fnb_list button > em + span {display: none;}
}
@media  screen and (max-width: 64rem) {
  .gate-header {padding: 1.4rem 1rem;}
  .gate-header .gate-logo__box {width: 10rem;} 
  .gate-title__area .gate-hash {font-size: 1.6rem;}
  .gate-title__area .gate-title > p {margin-top: -1rem; font-size: 5.6rem;}
  .gate-title__area .gate-desc {width: 90%;}
  .gate-title__area .gate-desc > p {font-size: 2.6rem;}
}
@media  screen and (max-width: 48rem) {
  .gate-main__summary .round-box {height: 20rem;}
  .gate-main__summary .round-box p {font-size: 1.4rem;}
  #text-gradient {font-size: 2.6rem;}
  .fnb .fnb_list button {font-size: 1rem;}
}

/** 3pro 구독자 보유 */
.threepro-collabo > .img-holder {width: 50%; margin: 0 auto 1.2rem;}
.threepro-collabo .num-container {flex-wrap: wrap;}
.threepro-collabo .num-container .num-item {text-align: center; margin: 0 0; padding-bottom: 3rem;}
.threepro-collabo .num-container .sub-title {font-size: 2rem;}
.threepro-collabo .num-container .nums {
  font-size: 6rem;
  font-weight: 800;
  color: var(--blue70);
  vertical-align: middle;
}
.threepro-collabo #num-unit {
  font-size: 3rem;
  color: var(--sub-color);
  vertical-align: middle;
}

/* * 3pro 콘텐츠 설명 */
.threepro-list { padding: 0 3rem; margin-bottom: 2.5rem;text-align: center;}
.threepro-list .img-holder > img {width: 80%;}
.threepro-list .img-holder + p {margin-top: 1rem; font-size: 1.4rem;}

.threepro-list .row-col-5 { margin-bottom: 4rem;text-align: center;}
.threepro-list .row-col-5 > .img-holder {width: 80%; margin: 0 auto 1rem;}

.threepro-contants .round-box .img-holder > img {max-width: 14rem; padding: 1rem;}
.threepro-contants .round-box .text-box { font-weight: 600;font-size: 2.8rem;}
.threepro-contants .round-box .text-box p + p {font-size: 1.6rem; margin-bottom: .5rem;}

/* * 3pro 전문가 */
.threepro-people__list {width: 100%;}
.threepro-people__list .slides {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.threepro-people__list .slides .slide {
  width: calc(100% / 2 - 1rem);
}
.threepro-people__list .slick-dots li {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0rem 0rem;
}
.threepro-people__list .slick-dots li button:before {
  width: .5rem;
  height: .5rem;
  border-radius: .25rem;
  background-color: #e0e0e0;
  content: '';
  opacity: 1;
}
.threepro-people__list .slick-dots li.slick-active button:before {
  background-color: #00a2be;
  opacity: 1;
}

.threepro-people__slider {
  position: relative;
  width: 100%;
  height: 25.8rem;
  padding: 2rem 2.5rem;
  margin-bottom: 2.4rem;
  border: 1px solid var(--cold-gray90);
  border-radius: 2.6rem;
  color: #000;
  line-height: 1.2;
  box-shadow: 1rem 1rem 1rem #5278b114;
  overflow: hidden;
}
.threepro-people__box .title-box h4 {
  margin-bottom: 2.4rem;
  font-weight: 600;
}
.threepro-people__box .title-box h4 > strong {
  margin-right: 1rem;
  color: var(--main-color);
  font-weight: 800;
  font-size: 3.6rem;
  vertical-align: middle;
}
.threepro-people__box .title-box h4 > em {
  font-size: 1.6rem;
  vertical-align: middle;
}
.threepro-people__box .title-box h4 + p {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.threepro-people__box .img-holder {
  position: absolute;
  right: -2.5rem;
  bottom: 0;
  max-width: 18.9rem;
  z-index: -1;
}

/** flex제도 */
.flex_point.list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex_point.list .list-item {width: 50%;}
.flex_point.list .list-item .flex_point-img {padding-right: 4.5rem;}
.flex_point.list .list-item .flex_point_desc .desc {margin-bottom: 4rem; font-size: 1.6rem;}
.flex_point.list .list-item .flex_point_desc .desc p + p {font-size: 2.8rem; font-weight: 800;}
@media  screen and (max-width: 48rem) {
  .threepro-collabo .num-container .nums {font-size: 4.2rem;}
  .threepro-people__box .img-holder {max-width: 12.9rem;}
  .threepro-contants .round-box p {font-size: 1.8rem;}
  .threepro-contants {-ms-flex-direction: column;flex-direction: column;}
  .threepro-contants .round-box {display: flex;margin-bottom: 1rem;}
  .threepro-contants .round-box .img-holder {width: 30%;}
  .threepro-contants .round-box .text-box {text-align: left;}
  .threepro-contants .round-box .img-holder > img {max-width: 7.8rem;}

  .threepro-people__slider {box-shadow: none;}
  
  .flex_point.list {flex-direction: column;}
  .flex_point.list .list-item {width: 98%;}
  .flex_point.list .list-item .flex_point-img {padding-right: 0rem; margin-bottom: 3rem;}
  .flex_point.list .list-item .flex_point_desc {width:100%;display: -webkit-box;display: -ms-flexbox;display: flex;flex-direction: column;text-align: center;}
  .flex_point.list .list-item .flex_point_desc .desc {font-size: 1.6rem;}
  .flex_point.list .list-item .flex_point_desc .desc p + p {font-size: 2.2rem;}
}

/* Alflix 제도 */
.alflex_benefit {
  width: 50%;
  margin: 0 auto 5rem;
}
.alpaco-logo_img {
  width: 26rem;
  margin-right: 1rem;
}

@media  screen and (max-width: 48rem) { 
  .alflex_benefit {
    width: 90%;
  }
  .alpaco-logo_img {
    width: 14rem;
    margin-right: .2rem;
  }
}

/** CTA */
#CTA {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  bottom: 1rem;
  left: 0;
  z-index: 90;
  margin-bottom: 1rem;
}
.cta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 60vw;
  padding: .5rem .5rem .5rem 4rem;
  margin: 0 auto;
  border-radius: 5rem;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: -1rem 0rem 4rem #0000001f; 
}
#inquiryLink {width: 30%;}
#inquiryLink .gradient-btn {width: 100%; padding: 1.5rem 0; font-size: 2.4rem;}
@media (max-width: 64rem){ 
  .cta-box {
    width: 96vw; 
    padding: .5rem .5rem .5rem 2rem;
    font-size: 1.8rem;
  }
  #inquiryLink {width: 25%;}
  #inquiryLink .gradient-btn {font-size: 1.8rem;}
}
@media (max-width: 48rem){ 
  .cta-box { 
    padding: .5rem .5rem .5rem 2rem;
    font-size: 1.4rem;
  }
  #inquiryLink {width: 50%;}
  #inquiryLink .gradient-btn {font-size: 1.4rem;}
}

/** footer */
.footer {
  padding: 4rem 0 5rem;
  background: #444;
  color: #666;
}
.footer-logo {width: 100%; max-width: 24rem; margin-bottom: 1.5rem;}
.footer-logo > img {width: 100%;}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 0 -1rem 1.5rem;
}
.footer-nav li {margin: 0 1rem;}
.footer-info {font-size: 1.4rem;}
.footer-copyright {font-size: 1.4rem;}
.footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1rem;
}
.footer-sns li {margin: 1rem 1rem;} 



/* * modal */
.modal_pop {
  display: none;
  overflow-y: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  background-color: rgba(0,0,0,0.5);
  box-shadow: 0 10px 10px 0 rgb(48 49 51 / 7%);
  z-index: 1000;
  opacity: 1;
}
.al-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: 95%;
  background-color: #fff;
  z-index: 9999;
}
.al-modal  .modal_header {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #e2e2e2;
}
.al-modal  .modal_header .modal_title {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
}
.al-modal  .modal_header .modal-close_btn {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
}
.al-modal  .modal_header .modal-close_btn > span {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  width: 90%;
  height: 1px;
  background-color: #000;
}
.al-modal  .modal_header .modal-close_btn > span.--close_white {
  background-color: #fff;
}
.al-modal  .modal_header .modal-close_btn > span:last-child {
  transform: translate3d(0, -50%, 0) rotate(-45deg);
}

.al-modal  .modal_contant {
  overflow-y: auto;
  position: relative; 
  top: 0;
  height: calc(100% - 80px);
  padding: 40px;
}
.al-modal  .modal_contant .-modal-prev_btn { /* js */
  height: 40px;
}

@media screen and (max-width: 120rem) {
  .al-modal  {
      width: 90%;
  }
}

@media (max-width: 76.8rem){
  .al-modal  {
    height: 78%;
  }
  .al-modal  .modal_header {
    padding: 12px 0;
  }
  .al-modal  .modal_header .modal_title {
    font-size: 18px;
    font-weight: 600;
  }
  .al-modal  .modal_header .modal-close_btn > span {
    right: 25%;
    width: 50%;
  }
  .al-modal  .modal_header .modal-close_btn {
    right: 11px;
  }
  .al-modal  .modal_contant {
    height: calc(100% - 50px);
    padding: 20px;
  }
}