/***********
custom igo styles
**********/
/******************
Headings
******************/

h1{
    font-family: Arial, Helvetica, sans-serif;
	font-size: 3em;
	line-height: 1.2;
	}
h2{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 2.5em;
	line-height: 1.2;
	margin-bottom:30px;
	}
h3{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	line-height: 1.2;
	}
h4{
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 1.2em;
	line-height: 1.2;
	}
	a {
    text-decoration: none;
}
p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.4;
}
/**************
butttons
****************/
.button {
    font-size: 17px;
    padding: 7px 20px;
    background-color: red;
    color: white;
    font-weight: 600;
}


/*********
container
****************/
.wp-site-blocks {
    overflow: hidden;
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
	display:block;
	max-width:100%;
}
.site-inner {
    max-width: 100%;
	width:100%;
	padding: 60px 0px;
}
.content-row{
	display:flex;
	flex-wrap:wrap;
	flex-direction:row;
	justify-content:space-evenly;
}
.col-md-6{
	flex:1;
	width:50%;
	min-width: 280px;
	padding: 15px;	
}


@media only screen and (min-width: 768px){
.container {
    width: 750px;
	max-width:100%;
}
}
@media only screen and (min-width: 992px){
.container {
    width: 970px;
	max-width:100%;
}
}
@media only screen and (min-width: 1200px){
.container {
    width: 1170px !important;
	max-width:100%
}    
}
/************general CSS
*****************/
/****shadow boxes***********/
.shadowbox {
	-webkit-box-shadow: -2px 12px 8px 1px rgba(206,206,206,0.79);
	-moz-box-shadow: -2px 12px 8px 1px rgba(206,206,206,0.79);
	box-shadow: -2px 12px 8px 1px rgba(206,206,206,0.79);
}
/**********buttons***********/
a.wp-block-post-excerpt__more-link {
    background: #FFE2C7;
    padding: 10px 20px;
}
a.wp-block-post-excerpt__more-link:hover {
    background: #f6f6f6;
    padding: 10px 20px;
}
/***styling for ACF Gallery shortcode*************/
.gallery ul {
	display: flex;
	list-style:none;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	padding-left:0px;
}
.gallery img {
	padding: 10px;
	flex-grow: 1;
}
.gallery_image img{max-width:100%;}
/********featured products shortcode*********/
.product_search {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.featured-swproduct {
    flex: 1;
	min-width:280px;
	margin-top:15px;
}
/**********issue with on hover gravity forms button fix****/
body .gform_footer .gform_button {
  cursor: pointer!important;  
}