/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

:root {
    --multa-color-main: black;
    --multa-color-1: #FB962B;
    --multa-color-2: #9E4717;
    --multa-color-3: #F36823;
    --multa-color-4: #000000;
    --multa-color-white: white;
    --font-size-small: clamp(0.8rem, -0.08vw + 0.82rem, 0.75rem);
    --font-size-base: clamp(1rem, 0vw + 1rem, 1rem);
    --font-size-medium: clamp(1.25rem, 0.13vw + 1.22rem, 1.33rem);
    --font-size-large: clamp(1.56rem, 0.33vw + 1.48rem, 1.78rem);
    --font-size-xlarge: clamp(1.95rem, 0.64vw + 1.79rem, 2.37rem);
    --font-size-xxlarge: clamp(2.44rem, 1.1vw + 2.17rem, 3.16rem);
    font-size: 16px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  }
  
  /**
   * Please note that we are using clamp values to set 
   * these font sizes for headings to make them resize
   */
  h1 {
    font-size: var(--font-size-xxlarge);
  }
  
  h2 {
    font-size: var(--font-size-xlarge);
  }
  
  h3 {
    font-size: var(--font-size-large);
  }
  
  h4 {
    font-size: var(--font-size-medium);
  }
  