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

@font-face {
  font-family: 'Manifold CF Light';
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/uploads/fonts/ManifoldCF-Light.ttf) format('truetype');
}

@font-face {
  font-family: 'Manifold CF Extra Bold';
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/uploads/fonts/ManifoldCF-ExtraBold.ttf) format('truetype');
}

body {
    font-family: 'Manifold CF Light', Arial, sans-serif !important;
    font-size: 13pt;
    letter-spacing: 0.5pt;
	color: #363942;
}

p,li {
	font-family: 'Manifold CF Light', Arial, sans-serif;	
    letter-spacing: 0.5pt;
}

ul {
    list-style-type: square;
}

h1,h2,h3 { 
	font-family: 'Manifold CF Extra Bold', Arial, sans-serif;
	font-weight: 400; 
    letter-spacing: 0.5pt;
}

h4,h5,h6 { 
	font-family: 'Manifold CF Light', Arial, sans-serif;
	font-weight: 400; 
    letter-spacing: 0.5pt;
}

h1 {
	font-size: 34px !important;
    line-height: 1.2;
	text-transform: uppercase;
}

h2 {
	font-size: 26px !important;
	text-transform: uppercase;
}

h3 {
	font-size: 21px !important;
	text-transform: uppercase;
}

h4,h5,h6 {
	font-size: 14pt !important; 
}

h2.fl-post-carousel-title, h2.woocommerce-loop-product__title, h2.fl-post-grid-title {
	font-size: 16pt !important;
	text-transform: uppercase;
}

.header_big {
	font-size: 30pt !important;
    letter-spacing: 5pt !important;
    text-transform: uppercase;
}

.text_on_dark {
	color: white;
}

.wpgmza_markerbox {
	width: 360px !important;
}

.wpgmza_map_image {
	width: 500px !important;
}

.wpgmza_infowindow_image {
	width: 100px !important;
}

/* Easy Hover Effect. 
You could just remove the custom class and use
.fl-photo-content for the whole site*/

.simple-opacity .fl-photo-content A:hover
{
 opacity: 0.88;
}

/*-------

Hover Effect ONE

-------*/

.hover-1 A
{
 color: #FFFFFF;
}
.hover-1 A:hover
{
 text-decoration: none;
}
.hover-1 .fl-photo-content A:hover::before
{
 background-color: #000;
 background-color: rgba(0, 0, 0, 0.573);
 -webkit-transition: 0.4s ease-in-out;
 -moz-transition: 0.4s ease-in-out;
 -o-transition: 0.4s ease-in-out;
 transition: 0.4s ease-in-out;
}

/*this add the icon you could remove.
Use a unicode if your theme does have the FontAwesome library loaded */

.hover-1 .fl-photo-content A:hover::before
{
 font-family: FontAwesome;
 content: "\f0c1";
 color: #FFFFFF;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 30px;
}
.hover-1 .fl-photo-content A::before
{
 content: "";
 height: 100%;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 -webkit-transition: 0.4s ease-in-out;
 -moz-transition: 0.4s ease-in-out;
 -o-transition: 0.4s ease-in-out;
 transition: 0.4s ease-in-out;
 pointer-events: all;
}


/*-------

Hover Effect TWO

grayscale does not work on IE

-------*/

.hover-2 .fl-photo-content A
{
 -webkit-transition: 0.5s ease-in-out;
 -moz-transition: 0.5s ease-in-out;
 -o-transition: 0.5s ease-in-out;
 transition: 0.5s ease-in-out;
 -webkit-filter: grayscale(100%);
 filter: grayscale(100%);
 
}
.hover-2 .fl-photo-content A:hover
{
 -webkit-transition: 0.5s ease-in-out;
 -moz-transition: 0.5s ease-in-out;
 -o-transition: 0.5s ease-in-out;
 transition: 0.5s ease-in-out;
 -webkit-filter: grayscale(0%);
 filter: grayscale(0%);
}


/*-------

Hover Effect THREE

-------*/

.hover-3 .fl-photo-content
{
 -o-transition: all 0.6s ease-in-out;
 -moz-transition: all 0.6s ease-in-out;
 -webkit-transition: all 0.6s ease-in-out;
 transition: all 0.6s ease-in-out;
}

.hover-3 .fl-photo-content:hover
{
 -ms-transform: rotateY(180deg);
 -o-transform: rotateY(180deg);
 -moz-transform: rotateY(180deg);
 -webkit-transform: rotateY(180deg);
 -webkit-transform-style: preserve-3d;
 transform: rotateY(180deg);
 transform-style: preserve-3d;
 -webkit-transition: all 0.6s ease-in-out;
 -moz-transition: all 0.6s ease-in-out;
 -o-transition: all 0.6s ease-in-out;
 transition: all 0.6s ease-in-out;
}
/*-------

Hover Effect FOUR

-------*/

.hover-4 .fl-photo-caption-hover
{
 background-color: #FFC619;
 height: 100%;
 font-weight: bold;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 16px;
 pointer-events: none;
 white-space: normal; /*if only one line remove this*/
}

/* this is here because I added a link
in the caption that is the same colour as the background.
-------*/
.hover-4 .fl-photo-caption A
{
 color: #000000;
 text-decoration: underline;
}