@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input[type=checkbox],
input[type=radio],
input[type=file] {
  vertical-align: middle;
}

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

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  font-style: normal;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  background: #000;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 84px;
}
@media (max-width: 991px) {
  .container {
    padding: 0 16px;
  }
}

button {
  cursor: pointer;
}

.content {
  padding: 44px 0;
  background: #000;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .content {
    padding: 20px 0;
  }
}

.name {
  position: relative;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
  text-align: left;
  letter-spacing: -0.6px;
  margin-left: 15px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .name {
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    text-align: left;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }
}
.name::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #8100ff;
}

.title {
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  letter-spacing: -1.44px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .title {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }
}

.tags {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .tags {
    gap: 12px;
    margin-bottom: 20px;
  }
}

.tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 32px;
  padding: 1px 22px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.48px;
  border-radius: 3px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .tag {
    height: 24px;
    padding: 1px 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
  }
}
.tag.active {
  color: #ffffff;
  background: #8100ff;
}
.tag:hover {
  color: #ffffff;
  background: #8100ff;
}

.list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.list__card {
  position: relative;
  height: 284px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  box-shadow: 0 0 36px #ffffff;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .list__card {
    height: 260px;
    box-shadow: 0 0 32px #ffffff;
  }
}
@media (max-width: 480px) {
  .list__card {
    height: 240px;
    box-shadow: 0 0 24px #ffffff;
  }
}
.list__card:hover {
  border-color: #8100ff;
  box-shadow: 0 0 36px #8100ff;
}
.list__card:hover .list__card-overlay {
  opacity: 1;
}
.list__card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.list__card-tags {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  width: calc(100% - 40px);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .list__card-tags {
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    gap: 4px;
  }
}
.list__card-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 22px;
  padding: 1px 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.39px;
  border-radius: 3px;
  background: #8100ff;
}
@media (max-width: 991px) {
  .list__card-tag {
    height: 20px;
    padding: 1px 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }
}
.list__card-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.list__card-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 34px;
  padding: 2px 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.48px;
  border-radius: 5px;
  background: #8100ff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .list__card-link {
    width: 150px;
    height: 30px;
    padding: 2px 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }
}
.list__card-link:hover {
  transform: scale(1.1);
}

.show-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .show-more-wrapper {
    margin-top: 16px;
  }
}

.show-more {
  width: fit-content;
  height: 40px;
  padding: 5px 25px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  border-radius: 5px;
  background: #8100ff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .show-more {
    height: 36px;
    padding: 4px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .show-more {
    width: 100%;
  }
}
.show-more:hover {
  transform: scale(1.05);
}

.html-color {
  background: #e34f26;
}

.css-color {
  background: #1572b6;
}

.js-color {
  color: #000000;
  background: #f7df1e;
}

.wp-color {
  background: #21759b;
}

.bootstrap-color {
  background: #7952b3;
}

.figma-color {
  background: #000000;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}