.category-select {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}

.category-select__button a {
  background: #fff;
  border-radius: 70px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 250px;
  padding: 16px 0;
  color: #333;
  border: solid 2px #333;
  transition: 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.category-select__button a:hover {
  color: #333;
}

.button-hover-orange a:hover {
  background: #FF6E24;
}

.button-select-orange a {
  background: #FF6E24;
}

.button-hover-red a:hover {
  background: #F54645;
}

.button-select-red a {
  background: #F54645;
}

.button-hover-green a:hover {
  background: #358C3E;
}

.button-select-green a {
  background: #358C3E;
}

.button-hover-pink a:hover {
  background: #FE94D4;
}

.button-select-pink a {
  background: #FE94D4;
}

.button-hover-blue a:hover {
  background: #4256D5;
}

.button-select-blue a {
  background: #4256D5;
}

.button-hover-black a:hover {
  color: #fff;
  background: #333;
}

.button-select-black a {
  color: #fff;
  background: #333;
}

@media (max-width: 768px) {
  .category-select {
    grid-template-columns: repeat(2, 160px);
    gap: 16px;
  }
  .category-select__button a {
    font-size: 14px;
  }
}
.catetory__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  max-width: 960px;
  gap: 48px;
  margin: 48px auto 0;
}

.banner__container {
  grid-template-columns: repeat(3, 1fr);
}

.work__link-area {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.work__link-area:hover {
  opacity: 0.5;
}

.work__link-area--image {
  border: solid 2px #333;
  margin: 0 auto 32px;
  overflow: hidden;
}
.work__link-area--image img {
  width: 100%;
  transition: transform 0.6s ease;
}
.work__link-area--image:hover img {
  transform: scale(1.1);
}

.work__link-area--title p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.work__link-area--title h4 {
  position: relative;
  font-size: 20px;
  color: #333;
}
.work__link-area--title h4 img {
  width: 17px;
  vertical-align: middle;
  margin: 0 0 3px 5px;
}

.work__detail h5, .work__learned h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.work__detail {
  margin: 24px 0;
}
.work__detail ul {
  list-style: none;
}
.work__detail li {
  font-size: 14px;
  margin-left: 16px;
  margin-bottom: 16px;
}

.work__learned p {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 786px) {
  .catetory__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 56px;
    margin: 40px auto 0;
  }
  .work {
    max-width: 550px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=works.css.map */