/*
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... */

/* Load in fonts */
  @font-face {
    font-family: 'Jubilat';
    src: url('/wp-content/themes/bb-theme-child/assets/fonts/Jubilat-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
  font-family: 'Jubilat';
  src: url('/wp-content/themes/bb-theme-child/assets/fonts/Jubilat-Medium.otf') format('opentype');
  font-weight: 700;
  font-style: bold;
  }
  @font-face {
  font-family: 'Jubilat';
  src: url('/wp-content/themes/bb-theme-child/assets/fonts/Jubilat-Semibold.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  }

  @font-face {
	font-family: 'Poppins';
	src: url('/wp-content/themes/bb-theme-child/assets/fonts/Poppins-ExtraLight.ttf') format('truetype');
	font-weight: 200;
  }
  @font-face {
	font-family: 'Poppins';
	src: url('/wp-content/themes/bb-theme-child/assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
	font-family: 'Poppins';
	src: url('/wp-content/themes/bb-theme-child/assets/fonts/Poppins-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
  }
  @font-face {
	font-family: 'Poppins';
	src: url('/wp-content/themes/bb-theme-child/assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
  }

  body {
      font-family: 'Poppins', Arial, sans-serif;
      font-weight: 400;
      font-size: 16px;
  }

  h1, h2, h3, h4, h5, h6 {
      font-family: 'Jubilat', Times, serif;
      font-weight: bold;
  }

  h1 {
    font-size: 3.2778rem;
  }

  h2 {
    font-size: 2.4em;
  }

  h3 {
    font-size: 1.5em;
  }

  .text-body {
    font-family: 'Poppins', Arial, sans-serif;
  }
  .text-accent {
    font-family: 'Jubilat', Times, serif;
  }
  .subtitle {
    text-align: center;
  }