* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: auto;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(https://images3.alphacoders.com/135/thumb-1920-1352926.png) no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(0) contrast(1.3) blur(1px);
}

/* HEADER */
.main-header {
  width: 100%;
  height: 153px;
  position: relative;
}

.thumb-header-top {
  position: relative;
  top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .thumb-header-top {
    display: none;
  }
}

.thumb-header-upper {
  position: relative;
  top: 82px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .thumb-header-upper {
    display: none;
  }
}

.header-top {
  position: relative;
  width: 100%;
  height: 71px;
  background-color: #212121;
  z-index: 3;
}
@media (max-width: 768px) {
  .header-top {
    position: fixed;
  }
}

.header-upper {
  width: 100%;
  height: 82px;
  position: absolute;
  background-color: #000;
  border-radius: 0 0 5px 5px;
}
@media (max-width: 768px) {
  .header-upper {
    display: none;
  }
}

.logo-img, .logo-btn {
  width: 100px;
  height: 100px;
  z-index: 2;
  border-radius: 50%;
  border: 1px solid black;
  cursor: pointer;
}
@media (max-width: 768px) {
  .logo-img, .logo-btn {
    width: 40px;
    height: 40px;
  }
}

.logo {
  position: relative;
  top: -50px;
  left: -2.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .logo {
    top: 0px;
    left: 10px;
    justify-content: left;
  }
}

.title-logo {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 20px;
  display: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .title-logo {
    display: block;
  }
}

.top-left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 800px;
  height: 71px;
  line-height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .top-left {
    display: none;
  }
}

.input {
  width: 260px;
  height: 40px;
  font-family: "Montserrat", sans-serif;
  padding-left: 2.5rem;
  box-shadow: 0 0 0 1.5px #2b2c37, 0 0 25px -17px #000;
  border: 0;
  border-radius: 12px;
  background-color: #16171d;
  outline: none;
  color: #bdbecb;
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: text;
  z-index: 0;
}
.input::-moz-placeholder {
  color: #bdbecb;
}
.input::placeholder {
  color: #bdbecb;
}
.input:hover {
  box-shadow: 0 0 0 2.5px #2f303d, 0px 0px 25px -15px #000;
}
.input:active {
  transform: scale(0.95);
}
.input:focus {
  box-shadow: 0 0 0 2.5px #fff;
}

.search-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  left: 1.7rem;
  fill: #bdbecb;
  pointer-events: none;
  z-index: 1;
}

.gh, .ig, .tw {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(146, 146, 146);
  border: rgb(146, 146, 146) solid 2.5px;
  text-decoration: none;
  border-radius: 50%;
  background-color: #333;
  font-size: 30px;
}
@media (max-width: 768px) {
  .gh, .ig, .tw {
    display: none;
  }
}

.gh:hover, .ig:hover, .tw:hover {
  color: #fff;
  border: #fff solid 2.5px;
}

.menu, .search {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  z-index: 3;
  display: none;
}
.menu .fa-bars, .search .fa-bars {
  transition: transform 0.5s ease;
}
.menu.active, .search.active {
  background-color: #333;
}
.menu.active .fa-bars, .search.active .fa-bars {
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .menu, .search {
    display: flex;
  }
}

.list-search {
  width: 100vw;
  height: auto;
  position: fixed;
  background-color: #212121;
  z-index: 3;
  top: -100%;
  right: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.list-search .list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #333;
  font-size: 20px;
  font-weight: bold;
}
.list-search.active {
  opacity: 1;
  top: 71px;
}

.list-menu {
  width: 100vw;
  height: auto;
  position: fixed;
  background-color: #212121;
  z-index: 3;
  top: -100%;
  right: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.list-menu .list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #333;
  font-size: 20px;
  font-weight: bold;
}
.list-menu .ba {
  margin-right: 10px;
}
.list-menu.active {
  opacity: 1;
  top: 71px;
}

.top-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  height: 71px;
  top: 0;
  right: 0;
  position: absolute;
}
@media (max-width: 768px) {
  .top-right {
    justify-content: right;
  }
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.upper-left, .upper-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 800px;
  height: 82px;
  float: left;
  gap: 90px;
  position: absolute;
  color: black;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  z-index: 3;
}
@media (max-width: 768px) {
  .upper-left, .upper-right {
    display: none;
  }
}

.upper-left {
  top: 0;
  left: 0;
}

.upper-right {
  top: 0;
  right: 0;
}

.list {
  color: rgb(146, 146, 146);
  text-decoration: none;
  transition: 0.2s ease;
}

.list:hover, .list.active {
  color: #fff;
}

/* Background */
.bg-main {
  width: 100%;
  height: 400px;
  position: relative;
  background-image: url(../../assets/Image/bg-main.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .bg-main {
    top: -82px;
    width: 100%;
    height: 150px;
  }
}

.bg-color {
  width: 100%;
  height: 10px;
  position: absolute;
  background-color: #000;
  bottom: -5px;
}

/* Main */
.content-main {
  position: relative;
  top: 50px;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .content-main {
    top: -50px;
  }
}

.section {
  position: relative;
  border-radius: 20px;
  margin: 0 auto;
}

.card-page {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  left: calc(50% - 625px);
  flex-wrap: wrap;
  width: 1250px;
  height: auto; /* Imortant */
}
@media (max-width: 768px) {
  .card-page {
    width: 100%;
    left: -2.5%;
  }
}

.card {
  position: relative;
  top: 78px;
  left: 20px;
  list-style: none;
  width: calc(22.22% - 10px);
  margin: 22px;
  height: 200px;
  transition: 0.3s ease;
  cursor: pointer;
  border-radius: 15px;
  margin-bottom: 100px;
  margin-left: 22px;
}
.card::before {
  content: "";
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .card {
    width: calc(33% - 9.65px);
    height: 100px;
    top: 0;
    margin: 11px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

.card-bg {
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 15px 15px 2px 2px;
  background-size: 100%;
  background-position: center;
  filter: brightness(0.9) saturate(1) contrast(1);
  transform-origin: bottom;
  transform: scale(1) translateZ(0);
  transition: 0.3s ease;
  background-repeat: no-repeat;
  background-color: black;
}
@media (max-width: 768px) {
  .card-bg {
    left: 10px;
    width: 100px;
    height: 100px;
    border-radius: 5px;
  }
}

.card:hover .card-bg {
  transform: scale(1);
  background-size: 299px; /* Imortant */
}
@media (max-width: 768px) {
  .card:hover .card-bg {
    background-size: 120px;
  }
}

.card-page:hover .card:not(:hover) {
  transform: scale(0.95);
}

.content {
  display: flex;
  bottom: 0;
  right: 0;
  position: absolute;
  overflow: hidden;
}
@media (max-width: 768px) {
  .content {
    left: 10px;
  }
}

.card-category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100px;
  text-align: center;
  position: relative;
  color: white;
  border-radius: 12px 12px 2px 2px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: default;
  pointer-events: none;
  fill-opacity: 0.5;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  bottom: -100px;
}
@media (max-width: 768px) {
  .card-category {
    width: 100px;
    height: 100px;
    font-size: 7px;
    border-radius: 5px;
    letter-spacing: 1px;
  }
}

.card:hover .card-category {
  opacity: 1;
  bottom: 0;
}

.see {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 25px;
  position: absolute;
  top: -90px;
  left: -20px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  background-color: #000;
  border-radius: 30px;
  z-index: 2;
}
.see .fa-eye {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
}
.see .view-count {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .see {
    width: 23px;
    height: 12px;
    top: 5px;
    left: 15px;
    font-size: 5px;
  }
  .see .fa-eye {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
  }
  .see .view-count {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
  }
}

#no-results {
  font-size: 40px;
  width: 100%;
  height: 31vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #no-results {
    top: 30vw;
    font-size: 20px;
  }
}

.hidden {
  display: none !important;
}

/* Footer */
footer {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 200px;
  gap: 20px;
  top: 200px;
  padding: 25px;
  font-size: 30px;
  background-color: #212121;
  border-top: #333 2px solid;
  box-shadow: #333 0 0 5px 2px;
}
@media (max-width: 768px) {
  footer {
    width: 100%;
    height: 115px;
    bottom: 0;
    gap: 10px;
    padding: 12px;
    font-size: 15px;
  }
}

.icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  background-color: #333;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .icon {
    font-size: 14px;
    width: 25px;
    height: 25px;
  }
}

.copyright, .mail {
  position: absolute;
  cursor: default;
}

.copyright {
  top: 75px;
  font-size: 17px;
}
@media (max-width: 768px) {
  .copyright {
    top: 40px;
    font-size: 10px;
  }
}

.mail {
  top: 110px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .mail {
    top: 60px;
    font-size: 8px;
  }
}

.contact-me {
  position: absolute;
  top: 145px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-me {
    top: 85px;
  }
}

.help {
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 6px;
}
.help:hover {
  background-color: #333;
}
@media (max-width: 768px) {
  .help {
    width: 75px;
    height: 20px;
    font-size: 8px;
  }
}/*# sourceMappingURL=pages.css.map */