
/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
  }
  .chefs .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
  }
  .chefs .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
  }
  .chefs .member .member-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
  }
  .chefs .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
  }
  .chefs .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
  }
  .chefs .member .social a {
    transition: color 0.3s;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
  }
  .chefs .member .social a:hover {
    color: #ffbf00;
  }
  .chefs .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  .chefs .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
  }
  .chefs .member:hover .member-info-content {
    bottom: 60px;
    transition: bottom 0.4s;
  }
  .chefs .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
  }
  

.category {
    display: grid;
    grid-template-columns: [inicio] 1fr 1fr 1fr [fin];
    column-gap: 1rem;
    row-gap: 0.5rem;
    grid-template-rows: minmax(min-content,max-content) minmax(100px, min-content);
}
.category-title{
    grid-column: inicio / fin;
    margin: 0;
}
.movie-item {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.2);
    background-color: #000;
}
.movie-item img {
    max-width: 100%;
    display: block;
}
@media screen and (max-width: 780px) {
    .page {
        grid-template-rows: 50px 50px;
    }
    .navigation-bar {
        grid-column: start / end;
    }
    .content {
        grid-column: start / end;
    }
    .category {
        grid-template-columns: [inicio] 1fr 1fr 1fr 1fr [fin];
    }
    .movie-item {
        grid-column: span 2;
    }
    .movie-item:nth-last-child(1){
        /* background-color: green; */
        grid-column: 2 / span 2;
    }
}


.play-btn {
    width: 44px;
    height: 44px;
    background: radial-gradient(#ffbf00 50%, rgba(205, 164, 94, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
  }
  .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .play-btn::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(205, 164, 94, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  .play-btn:hover::after {
    border-left: 15px solid #ffbf00;
    transform: scale(20);
  }
  .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }
  
  @media (max-width: 992px) {
    .play-btn {
      margin-top: 30px;
    }
  }
  
  @-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
    
.tinyvideotext {
  font-size: smaller;
}