  html,
  body {
    font-family: "sweet-sans-pro", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    position: relative;
    height: 100%;
    width: 100%;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  ul,
  li {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  header {
    width: 100%;
    height: 200px;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
  }

  header .logo {
    width: 20%;
    height: 100%;
    margin-left: 10px;
  }

  header .logo img {
    width: 150px;
    height: 107px;
  }

  header .menu .menuList {
    text-align: right;
    margin-top: 20px;
    margin-right: 20px;
    align-content: right;
  }

  header .menu .menuList li a {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
  }

  header .menu .menuList li.on a {
    border-bottom: 2px solid #fff;
  }
   header .menu .menuList li a:hover{
    color: blue;
   }


  header .menu .icon {
    display: none;
    width: 100%;
    height: 20px;
    margin-top: 10px;
    padding-right: 30px;
    cursor: pointer;
  }

  header .menu .icon .bar {
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    text-align: right;
  }

  header .menu .icon .mark {
    display: none;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    text-align: right;
  }


  video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  footer {
    width: 100%;
    position: absolute;
    z-index: 3;
    bottom: 50px;
    text-align: center;
  }

  footer p {
    width: 50%;
    margin: auto;
    color: #fff;
    font-size: 12px;
  }

  @media screen and (max-width:1200px) {
    header .logo img {
      width: 70px;
      height: 60px;
      margin-top: 10px;
    }
    
  }
  @media screen and (max-width:1024px) {
    header .logo{
      width: 25%;
    }
    header .menu .menuList{
      display: none;
    }
    header .menu .icon {
      display: block;
    }
  }
  @media screen and (max-width:768px) {
    header .logo{
      width: 35%;
    }
    footer p {
      width: 80%;
      font-size: 10px;
    }
  }
  