@font-face {
  font-family: 'NanumSquareNeoBold';
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.eot);
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.eot?#iefix) format("embedded-opentype"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.woff) format("woff"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.ttf) format("truetype");
}

@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard-Medium';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard-Light';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard-ExtraLight';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard-Bold';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard-ExtraBold';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}


footer {
  background-color: #f5f5f5;
  color: #333;
  padding: 40px 20px 20px;
}

    .footer-container {
      max-width: 800px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-top {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .company-info {
      font-size: 14px;
      line-height: 1.6;
    }

    .legal-dropdown {
      background: #e0e0e0;
      border-radius: 10px;
      padding: 12px 16px;
      cursor: pointer;
      user-select: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 15px;
      color: #333;
      transition: background 0.3s;
    }

    .legal-dropdown:hover {
      background: #e7e7e7;
    }

    .legal-content {
      display: none;
      font-size: 14px;
      margin-top: 8px;
      padding: 15px 20px;
      background-color: #d6d6d6;
      border-radius: 10px;
      color: #333;
      line-height: 1.6;
      text-decoration: none;
    }

    .legal-content a {
      display: block;
      color: #333;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color 0.2s;
    }

    .legal-content a:hover {
      color: #3f3f3f;
    }

    .footer-bottom {
      text-align: center;
      font-size: 13px;
      margin-top: 30px;
      color: #888;
    }

    @media (min-width: 768px) {
      .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }

      .company-info {
        flex: 1;
      }
    }

.notice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  font-family: Pretendard-Medium;
}
.button1 {
  background-color: #d3d3d3;
  border: none;
  padding: 15px 30px;
  width: 50%;
  max-width: 1200px;
  text-align: left;
  font-size: 18px;
  margin: 10px 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  color: black;
}
.button1:hover {
  background-color: #c0c0c0;
}
.arrow {
  font-size: 20px;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px; /* footer와의 간격을 살짝 띄우기 */
}

.pagination div {
  width: 30px;
  height: 30px;
  background-color: #d3d3d3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.pagination div:hover {
  background-color: #c0c0c0;
}

@media screen and (max-width: 768px) {
  .button1 {
      font-size: 16px;
      padding: 15px 20px;
  }
  .arrow {
      font-size: 18px;
  }
}


.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  animation: shrinkVideo 3s ease forwards;
  border-radius: 20px;
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 20px;
  transform-origin: center center;
  filter: blur(4px);
}

.banner-text {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: Pretendard-ExtraBold;
  font-size: 70px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  z-index: 1;
}

.video-controls {
  position: absolute;
  bottom: 15px; /* 버튼을 아래로 이동 */
  right: 20px; /* 버튼을 오른쪽으로 이동 */
  z-index: 2;
}

.play-pause {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-pause:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 600px) {
  .banner {
    animation: none;
    border-radius: 0;
  }

  .banner video {
    border-radius: 0;
  }

  .banner-text {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .video-controls {
    bottom: 10px; /* 모바일에서도 버튼을 아래로 이동 */
    right: 10px; /* 모바일에서도 버튼을 오른쪽으로 이동 */
  }
}

@keyframes shrinkVideo {
  0% {
      transform: scale(1);
  }
  100% {
      transform: scale(0.85);
  }
}



.navigation {
  font-family: NanumSquareNeoBold;
}

.clients-wrapper {
  font-family: Pretendard-Bold;
  font-size: 20px;
}

.features-description {
  font-family: Pretendard-Bold;
  font-size: 20px;
  color: #797979;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: Pretendard-Bold;
  }
  
  body {
    margin: 0;
  }
  
  
  
  html {
    height: 100%;
  }
  
  body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-family: Pretendard-Bold;
    font-size: 14px;
    line-height: 20px;
  }
  
 
  
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px;
  }
  
  h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
  }
  
  h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  
  h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
  }
  
  h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 10px;
  }

  
  :root {
    --white--primary: white;
    --black--primary: black;
    --black--secondary: rgba(0, 0, 0, .5);
    --accent: #3e8bff;
    --gray--primary: whitesmoke;
    --gray--secondary: rgba(0, 0, 0, .1);
    --white--secondary: rgba(255, 255, 255, .5);
    --black: black;
    --white: white;
  }
  
  body {
    background-color: var(--white--primary);
    color: var(--black--primary);
    letter-spacing: -.01em;
    font-family: Pretendard-Bold;
    font-size: 16px;
    line-height: 24px;
  }
  
  h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
  }
  
  h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
  }
  
  h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
  }
  
  h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }
  
  h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  
  p {
    margin-bottom: 0;
  }
  
  a {
    color: var(--black--primary);
    text-decoration: none;
  }
  
  ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 24px;
  }
  
 
  .navigation {
    z-index: 99;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.nav-wrapper {
    background-color: var(--white--primary);
    box-shadow: 0 -1px 0 0 var(--gray--secondary), 0 1px 3px 0 var(--gray--secondary), inset 0 0 0 1px var(--gray--secondary);
    border-radius: 1000px;
    justify-content: space-between;
    align-items: center;
    width: 30%; /* 가로 길이 100% */
    max-width: 1000px; /* 최대 가로 길이 설정 */
    padding: 16px 24px;
    display: flex;
}

  
.nav-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: flex;
  justify-content: flex-end; /* 메뉴 항목들을 오른쪽 정렬 */
  width: 90%; /* 메뉴가 가로로 꽉 차게 */
}
  
  .nav-link {
    transition: color .2s;
  }
  
  .nav-link:hover {
    color: var(--accent);
  }



  

  #loginButton {
    display: flex; /* 텍스트와 아이콘을 가로로 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    padding: 10px 20px; /* 버튼 내부 여백 (가로 20px, 세로 10px) */
    background-color: #272727; /* 버튼 배경 색상 */
    border-radius: 10px; /* 모서리 둥글게 처리 */
    color: white; /* 텍스트 색상 */
    text-decoration: none; /* 링크 텍스트 밑줄 제거 */
    font-size: 16px; /* 텍스트 크기 */
    font-weight: 600; /* 텍스트 두께 */
    transition: background-color 0.3s ease; /* 호버 시 배경 색상 변화 */
}

#loginButton:hover {
    background-color: #272727; /* 호버 시 배경 색상 */
}

#logoutButton {
  display: flex; /* 텍스트와 아이콘을 가로로 정렬 */
  align-items: center; /* 세로 중앙 정렬 */
  padding: 10px 20px; /* 버튼 내부 여백 (가로 20px, 세로 10px) */
  background-color: #272727; /* 버튼 배경 색상 */
  border-radius: 10px; /* 모서리 둥글게 처리 */
  color: white; /* 텍스트 색상 */
  text-decoration: none; /* 링크 텍스트 밑줄 제거 */
  font-size: 16px; /* 텍스트 크기 */
  font-weight: 600; /* 텍스트 두께 */
  transition: background-color 0.3s ease; /* 호버 시 배경 색상 변화 */
}

#logoutButton {
  background-color: #272727; /* 호버 시 배경 색상 */
}






.page-wrapper {
  display: block; /* 기본적으로 페이지 내용이 보이도록 */
}

.mobile_popup {
  display: none; /* 기본적으로 모바일 팝업은 숨김 */
}

/* 모바일 환경에서 하단 고정 팝업 보이기 */
@media screen and (max-width: 768px) {
  .page-wrapper {
    display: none;
  }

  .mobile_popup {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #dfdfdf;
    padding: 10px;
    border-top: 2px solid #c0c0c0;
    border-radius: 10px 10px 0 0;
    z-index: 9999;
  }

  .menu_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333;
    cursor: pointer;
    text-decoration: none;
  }

  .menu_item svg {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
  }

  .menu_item span {
    font-size: 12px;
  }

  .menu_item:hover {
    opacity: 0.8;
  }
}

/* 태블릿(가로 및 세로 방향 모두 포함) */
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .page-wrapper {
    display: none; /* 기존 네비게이션 숨김 */
  }
}




.font-align-center {
  margin: 0;
  padding: 0;
}

.container.luxeret-container {
  text-align: center;
}










button:focus, a:focus {
  outline: 2px dashed #5dbcea; 
}

*:focus {
  outline: 2px dashed #000000; /* 모든 포커스된 요소에 검정 점선 테두리 */
}

::selection {
  background-color: #5dbcea;
  color: white;
}