 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;*/
     font-family: "sweet-sans-pro";
      position: relative;
      height: 100%;
      width: 100%;
      background-color: #fff;
    }
    *{
      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;
    margin-top: 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: #333;
  }

  header .menu .menuList li.on a {
    border-bottom: 2px solid #333;
  }


  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: #333;
    text-align: right;
  }

  header .menu .icon .mark {
    display: none;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #333;
    text-align: right;
  }
   .title h1{
    position: absolute;
    top: 60px;
    left: 45%;
    font-size: 45px;
    font-weight: 500;
   }
   .main{
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
   }
   .main .img{
    width: 45%;
    height: auto;
    margin-left: 5%;
   }
   .main .img img{
    width: 100%;
    height: auto;
   }
   .main .txt {
    width: 45%;
    margin-left: 5%;
   }
   .main .txt .navmenu{
    width: 100%;
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
   }
   .main .txt .navmenu a{
    color:#555;
    font-size: 16px;
    font-weight: 500;
   }
   .main .txt .navmenu li.on a{
    font-weight: bold;
    color: #222;
   }
   .main .txt p{
    width: 100%;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
   } 
   .icons{
    display: flex;
    gap: 20px;
    margin-top: 30px;
   }
   .icons i{
    color: #333;
    font-size: 24px;
   }
   footer {
    width: 100%;
    height: 50px;
    text-align: center;
    margin-top: 30px;
  }

  footer span {
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
  }

    @media screen and (max-width:1200px) {
    header .logo img {
      width: 70px;
      height: 60px;
      margin-top: 10px;
    }
   
  }

  @media screen and (max-width:1024px) {
    header .menu .menuList {
      display: none;
    }
    header .menu .icon {
      display: block;
    }
    .main .txt p{
      font-size: 14px;
    }
  } 
  @media screen and (max-width:768px) {
    .main {
      display: block;
      height: auto;
    }
    .main .img{
      width: 80%;
      height: auto;
      margin: auto;
      margin-bottom: 30px;
    }
    .main .txt{
      width: 80%;
      margin-left: 10%;
      text-align: center;
    }
    .main .txt .navmenu{
      width: 60%;
      margin: auto;
     }
     .main .txt .navmenu a{
      font-size: 12px;
     }
     .main .txt p{
      font-size: 12px;
    }
     .main .icons{
      width: 35%;
      margin: auto;
      margin-bottom: 30px;
     }
     footer span{
      font-size: 12px;
     }
  }