#media-640, #media-1024, #media-1025{
  display: none;
  height: 0px;
  overflow: hidden;
}

@media all and (max-width:640px) {
  #media-640 {
    display: block;
  }
}

@media all and (min-width: 641px) and (max-width:1024px) {
  #media-1024 {
    display: block;
  }
}

@media all and (min-width:1025px) {
  #media-1025 {
    display: block;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard-Regular";
  color: #1b1b1b;
}

@font-face {
  font-family: "Pretendard-Regular";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #1b1b1b;
}

a:visited,
a:focus,
a:hover,
a:active {
  text-decoration: none;
}

.container {
  width: 100%;
}


@media (max-width: 1024px) {
  * {
    -webkit-tap-highlight-color: transparent !important;
  }
}

.foot_line {
  margin-top: 50px;
  background-color: #e3e3e3;
  height: 3px;
  border: 1px #e3e3e3 solid;
}

.link_icon img {
  width: auto !important;
  height: auto !important;
}