/*
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('assets/fonts/Jubilat-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
  font-family: 'Jubilat';
  src: url('assets/fonts/Jubilat-Medium.otf') format('opentype');
  font-weight: 700;
  font-style: bold;
  }
  @font-face {
  font-family: 'Jubilat';
  src: url('assets/fonts/Jubilat-Semibold.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  }

  @font-face {
	font-family: 'Gilroy';
	src: url('assets/fonts/Gilroy-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
	font-family: 'Gilroy';
	src: url('assets/fonts/Gilroy-Regular.otf') format('truetype');
    font-weight: 700;
    font-style: bold;
  }

  body {
      font-family: 'Gilroy', 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: 'Gilroy', Arial, sans-serif;
  }
  .text-accent {
    font-family: 'Jubilat', Times, serif;
  }
  .subtitle {
    text-align: center;
  }
  
  .fl-builder-content[data-type="header"].fl-theme-builder-header-shrink img {
      min-height: 100px!important;
      height: 100px!important;
  }
  
  .nav-button a {
      background: #16c0dc;
      color: #fff!important;
      border-radius: 10px;
      transition: background 0.25s ease;
  }
  
    .nav-button a:hover {
        background: #434346;
    }