* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-family: segoe-ui_normal, Segoe UI, Segoe, Segoe WP, Helvetica Neue, Helvetica, sans-serif;
  background-color: #18181b;
  display: content;
  width: auto;
  height: auto;
  height: -moz-fit-content;
  height: fit-content;
  overflow: auto;
}
@media screen and (min-width: 780px) {
  body {
    display: grid;
    grid-template-areas: "nav header header" "nav section aside" "nav footer footer";
    grid-template-rows: 80px 1fr 50px;
    grid-template-columns: 15% 1fr 0%;
    height: 100vh;
    overflow: hidden;
  }
}
body .card-loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loader-loading 1.5s infinite;
  width: 30rem;
  height: 30rem;
  margin-bottom: 20px;
  border-radius: 24px;
}
body .card-loader .content-loader {
  width: 30rem;
  height: 30rem;
}
body .card-loader .content-loader .img-loader,
body .card-loader .content-loader .title-loader,
body .card-loader .content-loader .description-loader {
  background: rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 24px 24px 0px 0px;
}
body .card-loader .content-loader .img-loader {
  width: 100%;
  height: 50%;
}
body .card-loader .content-loader .title-loader,
body .card-loader .content-loader .description-loader {
  width: 60%;
  border-radius: 4px 4px;
  margin: 10px 10px;
}
body .card-loader .content-loader .title-loader {
  height: 30px;
}
body .card-loader .content-loader .description-loader {
  height: 70px;
}
@keyframes loader-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
body header {
  background: #18181b;
  grid-area: header;
  position: sticky;
  top: 0px;
  z-index: 999;
  height: 90px;
  padding: 1rem;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.086);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
body header .logo-menu {
  display: flex;
  justify-content: space-between;
  margin: 0px 25px;
  align-items: center;
}
body header .logo-menu .logo-name {
  display: flex;
  align-items: center;
  gap: 17px;
}
body header .logo-menu .logo-name .picture-profil {
  width: 70px;
  height: 70px;
  border-radius: 99px;
  border: 2px solid #d41f1f;
}
body header .logo-menu .logo-name .span-name {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: 500;
  gap: 10px;
  font-size: 1.5rem;
}
body header .logo-menu .logo-name .span-name .name {
  font-weight: 700;
}
body header .logo-menu .burger #checkbox {
  display: none;
}
body header .logo-menu .burger .toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transform: rotate(180deg);
  gap: 10px;
  transition-duration: 0.5s;
}
body header .logo-menu .burger .bars {
  width: 100%;
  height: 4px;
  background-color: #d41f1f;
  border-radius: 4px;
}
body header .logo-menu .burger #bar1 {
  width: 100%;
}
body header .logo-menu .burger #bar2 {
  width: 75%;
}
body header .logo-menu .burger #checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}
body header .logo-menu .burger #checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.1s;
}
body header .logo-menu .burger #checkbox:checked + .toggle #bar1,
body header .logo-menu .burger #checkbox:checked + .toggle #bar3 {
  width: 100%;
  transition-duration: 0.5s;
}
body header .logo-menu .burger #checkbox:checked + .toggle #bar1 {
  transform: rotate(45deg);
}
body header .logo-menu .burger #checkbox:checked + .toggle #bar3 {
  transform: rotate(-45deg);
}
body header .logo-menu .burger #checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
body header .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 80px auto;
  transition: opacity 0.85s ease;
}
body header .modal h5 {
  font-size: 3rem;
  color: red;
}
body nav {
  grid-area: nav;
  display: none;
}
@media screen and (min-width: 780px) {
  body nav {
    display: flex;
    background: #151515;
    flex-direction: column;
    justify-content: space-around;
  }
  body nav h1 {
    font-size: 1.5rem;
    color: #ff0000;
    text-align: center;
    margin-top: 2rem;
  }
  body nav h1 span {
    font-size: 2rem;
    color: #eaff08;
  }
}
@media screen and (min-width: 880px) {
  body nav h1 {
    font-size: 2rem;
    color: #ff0000;
    text-align: center;
    margin-top: 2rem;
  }
  body nav h1 span {
    font-size: 2rem;
    color: #eaff08;
  }
}
body nav .comming_soon {
  width: 100%;
}
body #content {
  width: 100%;
  height: 100%;
  grid-area: section;
  overflow: scroll;
}
body #content .layout {
  width: 100%;
  height: 100%;
  max-width: 97%;
  margin: 0 auto;
  margin-top: 50px;
}
body #content::-moz-progress-bar {
  color: #d41f1f;
}
body #content::-webkit-scrollbar {
  display: none;
  color: #d41f1f;
}
@media screen and (min-width: 780px) {
  body #content {
    overflow: scroll;
  }
}
body #content h2 {
  color: #fff;
  font-size: 2rem;
  font: 400;
  margin-top: 20px;
}
body #content .slider-wrapper,
body #content .container_filter_cards {
  width: auto;
  margin: 20px auto;
  display: flex;
  overflow: scroll;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 780px) {
  body #content .slider-wrapper,
  body #content .container_filter_cards {
    height: 400px;
  }
}
body #content .slider-wrapper::-webkit-scrollbar,
body #content .container_filter_cards::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 780px) {
  body #content .slider-wrapper::-webkit-scrollbar,
  body #content .container_filter_cards::-webkit-scrollbar {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1450980392);
  }
}
@media screen and (min-width: 780px) {
  body #content .slider-wrapper::-webkit-scrollbar-thumb,
  body #content .container_filter_cards::-webkit-scrollbar-thumb {
    background: #9f3c3c;
    border-radius: 99px;
    width: 6rem;
  }
}
body .card {
  margin: auto;
  width: 100%;
}
@media screen and (min-width: 780px) {
  body .card:hover {
    transform: scale3d(1.1, 1.1, 1.1) translateX(40px);
    z-index: 99;
  }
}
body .card .content_card {
  position: relative;
  width: 100%;
  min-width: 280px;
  background-size: cover;
  height: 197px;
  margin: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.42%, rgba(0, 0, 0, 0.75) 99.48%);
}
@media screen and (min-width: 780px) {
  body .card .content_card {
    width: 550px;
    height: 321px;
  }
  body .card .content_card:hover {
    cursor: pointer;
    box-shadow: rgba(255, 247, 16, 0.3) 0px 0px 10px 1px;
    border: 34px;
  }
}
body .card .content_card .img_card {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
}
body .card .content_card .title {
  width: auto;
  display: flex;
  position: absolute;
  justify-content: space-between;
  flex-direction: column;
  bottom: 0px;
  row-gap: 5px;
  width: 100%;
  padding: 1rem;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0);
  border-radius: 0px 0px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media screen and (min-width: 780px) {
  body .card .content_card .title {
    font-size: 2.5rem;
    padding: 2rem;
  }
}
body .card .content_card .title .text_maj {
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (min-width: 780px) {
  body .card .content_card .title .text_maj {
    font-size: 2.5rem;
  }
}
body .card .content_card .title .studio {
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 1.4rem;
}
@media screen and (min-width: 780px) {
  body .card .content_card .title .studio {
    font-size: 2rem;
  }
}
body .filter {
  width: 100%;
  height: auto;
  margin-top: 52px;
  display: flex;
  gap: 20px;
}
body .filter span {
  color: rgba(255, 255, 255, 0.7176470588);
  font-size: 2.4rem;
  cursor: pointer;
}
body .container_filter_cards .card {
  max-width: 30rem;
  height: 29.95rem;
  position: relative;
}
body .container_filter_cards .card .content_card {
  width: 100%;
  height: 100%;
}
body .container_filter_cards .card .content_card .img_card {
  width: 100%;
  height: 100%;
}
body .container_filter_cards .card .content_card .text_maj {
  color: #fff;
  font-size: 2rem;
}
body .container_filter_cards .card .content_card .studio {
  color: rgba(255, 255, 255, 0.7333333333);
  font-size: 1.5rem;
  margin: 0px 10px;
}

footer {
  width: 100%;
  background: #242a32;
  grid-area: footer;
  position: sticky;
  bottom: 0;
  background-color: #242a32;
}
@media screen and (min-width: 780px) {
  footer {
    display: none;
  }
}
footer .menu_icon {
  width: 100%;
  height: 78px;
  display: flex;
  justify-content: center;
}
footer .menu_icon button,
footer .menu_icon .icon {
  width: 33%;
  height: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
}
footer .menu_icon button:active,
footer .menu_icon .icon:active {
  color: #d41f1f;
}
footer .menu_icon button img,
footer .menu_icon .icon img {
  width: 21.74px;
  height: 24px;
  margin: auto;
}
footer .menu_icon button span,
footer .menu_icon .icon span {
  margin: 4px auto;
  font-size: 1.2rem;
  white-space: nowrap;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font: 400;
  color: #fff;
}/*# sourceMappingURL=style.css.map */