/*Changes Background color to gray so its not blaring white.*/
.content-padding{
		Background-color:#f2f2f2
}

/*For styling the "Request A Quote" button on the "About Us" page.*/
.quote-button .wp-block-button__link{
color: #ffffff!important;
border: none!important;
}
.quote-button .wp-block-button__link:hover{
color: #ffb400!important;
border: none!important;
}

/*For styling the "Lets Work Together" button on the "Interior Residential Painting" page.*/
.lets-work-together-button .wp-block-button__link{
color: #ffffff!important;
border: none!important;
}
.lets-work-together-button .wp-block-button__link:hover{
color: #ffb400!important;
border: none!important;
}


/*For styling the "Request A Quote" button on the "Home Page" page.*/
.home-quote-button .wp-block-button__link{
color: #000000!important;
border: none!important;
}
.home-quote-button .wp-block-button__link:hover{
color: #ffffff!important;
border: white 1px solid!important;
background-color:#af0717!important;
	
}

/*Controls the Home Page buttons in the Painting Project Squares*/
.home-painting-project-buttons .wp-block-button__link{
	color: #af0717!important;
}
.home-painting-project-buttons .wp-block-button__link:hover {
	color: #ffffff!important;
	background-color:#af0717!important;
}

/*Controls the Home Page "Contact Us" button*/
.home-contact-us-button .wp-block-button__link {
 color: #000000!important;
}
.home-contact-us-button .wp-block-button__link:hover {
 color: #ffffff!important;
 background-color:#89010f!important;
}

/*Home Slider*/
/*Adjust the top margin and padding so there is no white space around the slider*/
.is-layout-flex.wp-container-4.wp-block-columns.alignfull.has-background{
	margin-top:0px!important;
}
.single-blog-wrap.content-padding{
	padding-top:0px!important;
}




/**********CSS Slider***************/
/*This section controls the image sliders across the whole site.*/
.grove-slider {
  width: 940px;
  text-align: center;
  overflow: hidden;
}
.grove-slides {
  display: flex;
  overflow-x: auto;
	overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.grove-slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.grove-slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.grove-slides::-webkit-scrollbar-track {
  background: transparent;
}
.grove-slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 940px;
  height: 600px;
  margin-right: 50px;
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}
.grove-slider > a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.grove-slider > a:active {
  top: 1px;
}
/* Don't need button navigation */
@supports (scroll-snap-type) {
  .grove-slider > a {
    display: none;
  }
}

/*Mobile Style*/
@media only screen and (max-width: 480px) {
.grove-slider {
  width: 340px;
  text-align: center;
  overflow: hidden;
}
.grove-slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 340px;
  height: 300px;
}

/*****End CSS Slider***************/
	
	
	@keyframes bounce {
    0% {
        y-transform: scale(0.9);
        x-transform: scale(0.9);
    }
    40% {
       transform: scale(1.2);
    }

}
	
	
	