/*********callout boxes1 *******/
.featured-boxes{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	gap: 10px 20px;
	margin: 40px 5px;
	padding: 35px 5px;
	-webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  }
  @-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
  @keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.featured-products{
	flex-shrink: 3;
	width: 300px;
}
.feature-page-img a.button {
    margin-top: 25%;
}
/*****/
.feature-page-img{
	position: relative;
    background-color: none;
    width: 100%;
    float: left;
    margin-right: 15px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y:center;
	height: 215px;
	text-align:center;	
}
.buttonoverlapmulti{
	position: absolute;
    z-index: 2;
    top: 40%;
    display: none;
    left: 22%;
    width: 150px;
	background: #8B95C9;
	padding: 10px 15px;
	color:white;
}
.feature-page-img:hover .buttonoverlapmulti{ 
	display:block;
}
.feature-page-img:hover > .overlay {
    width:100%;
    height:100%;
    position:absolute;
    background-color:#000;
    opacity:0.5;
    border-radius:30px;
	 border-radius: calc(0.25rem - 1px);
}
.product-info {
    text-align: center;
    margin: 20px 0px;
}
.product-info p {
    text-align: justify;
}
.product-info h3 {
    color: #8B95C9 !important;
    line-height: 1.7 !important;
}