* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

button {
  cursor: pointer;
}

body {
  font-family: "Noto Sans KR";
  background-color: #000;
  color: #fff;
}


header {
  width: 1280px;
  height: 60px;
  margin: auto;
  margin-top: 20px;
  display: flow-root;
}

.logo {
  float: left;
}

.logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

nav {
  float: right;
}

nav ul li {
  display: inline-block;
  line-height: 60px;
}

nav ul li a {
  padding: 5px 15px;
  margin-left: 10px;
}

nav ul li a:hover {
  color: #8f8d8d;
  text-decoration: underline;
}

main {
  width: 1280px;
  margin: 80px auto;
}

video {
  display: block;
  height: 450px;
  margin: auto ;
}

h2 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 150px;
  text-align: center;
  margin: 100px 0;
}

.item-container {
  display: flow-root;
}

.item-container li {
  float: left;
  width: 25%;
  margin-bottom: 50px;
}

.item-container li a {
  display: block;
  width: 95%;
  height: 450px;
  margin: auto;
  background-color: #fff;
  border-radius: 4px;
}

.item-container .image-wrap {
  overflow: hidden;
}

.item-container img {
  transition: all 0.3s;
}

.item-container img:hover {
  scale: 1.05;
}

.item-info {
  padding-top: 7px;
  padding-left: 7px;
}

.item-info span {
  display: block;
  font-weight: 500;
  color: #D33918;
}

.item-info h3 {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.item-info h4:nth-of-type(1) {
  margin-top: -2px;
  font-size: 15px;
  font-weight: 400;
  color: #707072;
}

.item-info h4:nth-of-type(2) {
  margin-top: 5px;
  font-weight: 500;
  color: #111;
}

.item-info s {
  margin-left: 5px;
  font-weight: 400;
  color: #707072;
}

.item-info .sale {
  display: inline;
  margin-left: 8px;
  font-weight: 500;
  color: #007D48;
}

footer{
  width: 100%;
  padding: 14px;
  text-align: center;
  position: fixed;
  bottom: 0;
  background-color: #464646dc;
}