@charset "UTF-8";
/*-------------------------------------------------
title : mixin style sheet 
Author : Gahye Park
Create date :2021. 12. 06
-------------------------------------------------*/
/*-------------------------------------------------
title : variables style sheet
Author : Gahye Park
Create date :2021. 12. 06
-------------------------------------------------*/
@import "/font/pretendard/fonts.css";
@import "/font/NotoSansKR/fonts.css";
@import "/font/line-awesome/line-awesome.min.css";
@import "/font/xeicon/xeicon.min.css";
/*************************************
    # dashboard 공통 변수 
************************************/
/* font family */
/* font color */
#header .hdt-link .util > ul:after {
  content: "";
  display: block;
  clear: both;
}

/* responsive */
/*-- layout common --*/
html {
  position: relative;
}

/*-- header --*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  /* 윗쪽 header */
}
#header .hdt-link {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  color: #fff;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  /* landing-page */
  /* //landing-page */
}
#header .hdt-link .ht-tit {
  float: left;
  max-width: calc(100% - 15rem);
  display: flex;
  justify-content: space-between;
  height: 1.5rem;
}
#header .hdt-link .ht-tit .logo a {
  display: block;
  width: 5rem;
  height: 1.5rem;
  background: url(/img/layout/logo.png) no-repeat center/100%;
}
#header .hdt-link .ht-tit span {
  font-size: 1rem;
  font-weight: 600;
  width: 6.5rem;
  max-width: 8rem;
  line-height: 1.85;
}
#header .hdt-link .util {
  float: right;
}
#header .hdt-link .util > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .hdt-link.landing {
  padding: 1.7rem 2rem;
  width: 100%;
}
#header .hdt-link.landing .util > ul > li {
  margin-left: 0.5rem;
}
#header .hdt-link.landing .util > ul > li > a {
  padding: 0.2rem 1rem;
  font-size: 0.8rem;
  border-radius: 1.5rem;
  border: 1px solid;
}
#header .hdt-link.landing .util > ul > li:first-child a {
  color: #4FB8C8;
  background-color: rgba(255, 255, 255, 0.2);
}
#header .hdt-link.landing .util > ul > li:nth-child(2) a {
  background: #4FB8C8;
  border-color: #76EDFF;
}
#header .hdt-link .c-member {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0 4rem 3rem 0;
  padding: 2rem 1.1rem;
  border-radius: 50%;
  background: #7DC5B2;
  z-index: 900;
}

/* landing page */
#container-landing {
  width: 100%;
}
#container-landing .fullpage {
  height: 100vh;
  color: #262626;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#container-landing .fullpage > section {
  height: 100%;
  scroll-snap-align: start;
}
#container-landing .fullpage::-webkit-scrollbar {
  display: none;
}

/* //landing page */
/* 1200px */
@media (max-width: 1200px) {
  /*-- header --*/
  #header .hdt-link .ht-tit span {
    display: none;
  }
  #header .hdt-link .c-member {
    margin: 0 2rem 2rem 0;
    padding: 1.6rem 0.8rem;
  }
  /*-- sub layout --*/
  #sub_container {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #header {
    /* 윗쪽 header */
  }
  #header .hdt-link.landing {
    padding: 1rem;
    width: 100%;
  }
  #header .hdt-link.landing .util > ul > li {
    margin-left: 0.2rem;
  }
  #header .hdt-link.landing .util > ul > li > a {
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
  }
}