html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  color: #222222;
  box-sizing: border-box;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 40px;
  width: 100%;
}
.header .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f8f8f8;
  border-radius: 40px;
  padding: 10px;
}
.header .btn-wrapper .btn {
  padding: 0px 15px;
  border-right: 1px solid #f8f8f8;
  opacity: 0.7;
}
.header .btn-wrapper .btn:hover {
  opacity: 1;
}
.header .btn-wrapper .btn:last-child {
  border-right: 0;
}

.menu-slide-wrapper {
  position: sticky;
  top: 0;
  display: flex;
  width: 15%;
  max-width: 250px;
  flex-direction: column;
  gap: 20px;
  padding: 35px 40px;
}
.menu-slide-wrapper .icon-box {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-slide-wrapper .icon-box:hover {
  opacity: 0.7;
}
.menu-slide-wrapper .icon-box:hover .menu-name {
  border-bottom: 2px solid #222222;
  opacity: 0.7;
}
.menu-slide-wrapper .icon-box .menu-name {
  border: 2px solid transparent;
}

.main-list {
  padding: 30px 40px;
  display: flex;
  width: 85%;
  gap: 20px;
  flex-wrap: wrap;
}
.main-list .item-box {
  max-width: 250px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  width: calc(25% - 15px);
  gap: 10px;
}
.main-list .item-box .thumbnail {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  border: 1px solid #f8f8f8;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-list .item-box .thumbnail:hover img {
  width: 120%;
}
.main-list .item-box .thumbnail img {
  transition: 0.2s;
  width: 100%;
}
.main-list .item-box .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  height: 250px;
  border-top: 1px solid #d9d9d9;
}/*# sourceMappingURL=style.css.map */