@charset "UTF-8";

/*******************************************************************************************************************************
 *** 헤더
*******************************************************************************************************************************/
header.header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: 100%;
  height: 100px;
  transition: 0.9s;
  font-weight: 500;
  color: #2e2e2e;
}

header.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
}

header.fix {
  position: fixed;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 70px;
  top: 0;
  color: #333;
  background: #ffffff6e;
  border-bottom: 1px solid #b6b6b6b6;
}

header .tel {
  display: none;
}

.logo {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

header.fix .logo {
  width: 200px;
}

nav {
}

nav .logo {
  display: none;
}

nav ul {
  display: flex;
}

nav ul li a {
  display: block;
  margin: 0 9px;
  font-weight: 500;
  padding: 8px 10px;
  transition: 0.2s;
  border-radius: 3px;
  font-size: 17px;
}

nav ul li a:hover {
}

nav ul li a.on {
}

/* 드롭다운 */
nav .drop {
  position: relative;
}

.toggle {
  width: 100%;
  background: #dbdbdbd0;
  padding: 1rem 0;
  position: absolute;
  border-radius: 10px;
  display: none;
}

.toggle a {
  font-size: 14px;
  font-weight: normal;
  padding: 2px 18px;
}

.toggle a:hover {
  opacity: 0.6;
}

/* 드롭다운 모바일 */
.toggle_m {
  width: 100%;
  background: #e0e0e0d0;
  padding: 1rem 0;
  position: relative;
  border-radius: 10px;
  display: none;
}

.toggle_m a {
  font-size: 14px;
  font-weight: normal;
  padding: 0px 10px;
}

.toggle_m a:hover {
  opacity: 0.6;
}

/* hamburger Button */
input[id="hamburger"] {
  display: none;
}

label[for="hamburger"] {
  /*border: 1px solid red;*/
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 2000;
}

label[for="hamburger"] div {
  display: none;
  position: absolute;
  height: 2px;
  background-color: #4d4d4d;
  width: 100%;
  left: 0;
  transition: 0.3s;
}

label[for="hamburger"] div:nth-child(1) {
  top: 0;
}

label[for="hamburger"] div:nth-child(2) {
  top: 50%;
}

label[for="hamburger"] div:nth-child(3) {
  top: 100%;
}

input[id="hamburger"]:checked + label[for="hamburger"] div:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
  background-color: #4d4d4d;
}

input[id="hamburger"]:checked + label[for="hamburger"] div:nth-child(2) {
  opacity: 0;
}

input[id="hamburger"]:checked + label[for="hamburger"] div:nth-child(3) {
  top: 50%;
  background-color: #4d4d4d;
  transform: rotate(-45deg);
}

/*quick 시작*/
.quick {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  grid-gap: 6px;
}

.quick a.call {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  display: block;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.quick a.call i {
  font-size: 24px;
  line-height: 50px;
}

.quick button {
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333;
  margin-top: 6px;
  color: #fff;
}

/*quick 끝//*/

/**PC 모바일 이미지 사이즈 조정 시작**/
.d-block {
  display: block;
}

.m-block {
  display: none;
}

/**PC 모바일 이미지 사이즈 조정 끝**/

/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
@media (max-width: 1000px) {
  header.header {
    width: 100%;
  }

  label[for="hamburger"] div {
    display: block;
  }

  nav {
    position: absolute;
    left: -300px;
    top: 0;
    z-index: 999;
    width: 270px;
    height: 100vh;
    background: #ececec;
    padding: 0rem;
    transition: 0.2s;
    box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.15);
  }

  nav .logo {
    display: block;
    width: 100%;
    height: 78px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: #d4d4d4;
  }

  nav .logo img {
  }

  nav ul {
    display: block;
    padding: 0px 20px;
    padding-top: 30px;
  }

  nav ul li a {
    padding: 11px 0px;
    font-size: 18px;
    font-weight: normal;
    color: #000000;
  }

  div.toggle {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  div.toggle_m {
    display: block;
  }

  .hamburger {
    display: block;
  }

  input[id="hamburger"]:checked ~ nav {
    left: 0;
  }
}

/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/

/*******************************************************************************************************************************
 *** 푸터
*******************************************************************************************************************************/

/* Footer */
.footer {
  background: #f9fafb;
  border-top: 1px solid var(--border);
  padding: 70px 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  text-align: left;
}

.footer__company h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__company p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer__links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__links ul {
  list-style: none;
}

.footer__links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

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

.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/
@media (max-width: 768px) {
  .logo {
    width: 220px;
  }

  header.header {
    position: relative;
    height: 80px;
  }

  header.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
  }

  /**PC 모바일 이미지 사이즈 조정 시작**/
  .d-block {
    display: none;
  }

  .m-block {
    display: block;
  }

  /**PC 모바일 이미지 사이즈 조정 끝**/
}
