/*-------------------------------------*\
  #media_query.css
\*-------------------------------------*/

/**
 * copyright 2021 @codewithsadee 
 */





/*-------------------------------------*\
  #RESPONSIVE FOR 1200px
\*-------------------------------------*/

@media screen and (max-width: 1200px) {

  :root {

    /**
     * Spacing 
     */

    --px: 80px; /* padding-left & padding-right */

  }

  
  /**
   * BANNER SECTION RESPONSIVE
   */

  .banner { margin-top: 100px; }

  .banner-card .card-title { font-size: 2.5em; }



  /**
   * CATEGORY SECTION RESPONSIVE
   */

  .category-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }



  /**
   * FOOTER SECTION RESPONSIVE
   */

  .footer-content { flex-direction: column; }

  .footer-brand {
    margin-right: 0;
    margin-bottom: 60px;
  }

  .footer-links { grid-template-columns: repeat(auto-fit, minmax(125px, 1fr)); }
  
}





/*-------------------------------------*\
  #RESPONSIVE FOR 1024px
\*-------------------------------------*/

@media screen and (max-width: 1024px) {

  :root {

    /**
     * Spacing 
     */

    --px: 60px; /* padding-left & padding-right */

  }

  /**
   * BANNER SECTION 
   */
  .banner-card .card-content {
    bottom: 40px;
    left: 60px;
    right: 60px;
  }

}





/*-------------------------------------*\
  #RESPONSIVE FOR 768px
\*-------------------------------------*/

@media screen and (max-width: 768px) {

  :root {

    /**
     * Spacing 
     */

    --px: 40px; /* padding-left & padding-right */

  }

  /**
   * BANNER SECTION 
   */

  .banner { display: none; }



  /**
   * MOVIE SECTION
   */
  
  .movies { margin-top: 120px; }

  /**
   * filter bar responsive
   */
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar select { margin-bottom: 20px; }

  .filter-radios { width: 100%; }

}





/*-------------------------------------*\
  #RESPONSIVE FOR 575px
\*-------------------------------------*/

@media screen and (max-width: 575px) {
  :root {

    /**
     * Spacing 
     */

    --px: 20px; /* padding-left & padding-right */

    /**
     * Typography 
     */
    --section-heading: 32px;
    --fs-lg:           20px;

  }

  .navbar-search-btn { margin-right: 20px; }

  .navbar-form-search { margin-right: 20px; }

  .navbar-form-btn { right: 55px; }

  
  /**
   * FOOTER SECTION RISPONSIVE
   */

  .footer-copyright { flex-direction: column-reverse; }

  .wrapper { margin-bottom: 20px; }
}