﻿.products
{
    margin-bottom:100px;
    /*font-family: Poppins-Regular;*/
  font-family: "Roboto", sans-serif, Lato, Arial, Tahoma, 'Open Sans';
}

.prod
{
    background: red; 
    padding:20px;
}

.prod-main
{
   background: gray; 
  
   
   
}

.prod-head
{
    background: #fafafa;
    border-radius: .5rem;
    box-shadow: 0 9px 12px 0 rgba(0, 0, 0, .1);
   
    
}
.prod-head:hover
{
   
    box-shadow:0  9px 12px 0 rgba(0, 0, 0, 0.2);

}
.prod-img
{
    /*display:flex;
    align-items:center;
    justify-content : center;
*/

  
    
}

/* .prod-head:hover .img-center
{
    box-shadow:0  9px 12px 0 rgba(0, 0, 0, 0.2);
}
*/

.img-center
{
    width: 90%;
  margin: auto;
  border-radius: .5rem;
  display: block;
  
  position:relative;
  top:-30px;
}


.prod-title
{
    text-align:center;
    padding:15px;
     margin-bottom:40px;
}

.hover-item {
  transition: 0.3s;
}
.hover-item:hover {
  transform: translate(0, -12px);
}

.prod-title h3
{
    color:#3a4a97;/*#052a61;*/
    font-size:18px;
    font-weight:600;
    text-align:center;
   
    position:relative;
    margin-bottom:20px;
}

.prod-title h3:after
{
    content:   url(../images/home/double_arrows_right.png); 
    width: 40px;
    height: 40px;
    position:absolute;
    top:-5px;
        
}

.hover-item:hover  .prod-title h3:after 
{
    content:   url(../images/home/double_arrows_right.png); 
    width: 40px;
    height: 40px;
    position:absolute;
    /*left:280px;*/
    transform: translateX(8px);
    transition: all .6s ease; 
    
    
}

.hover-item:hover  .prod-title h3
{
    
    /*background-color :Orange;*/
    
}

.prod-row
{
     background-color:white;
     margin-top:60px;
     margin-bottom:60px;   
}

.prod-row-title
{
    background-color:white;
    margin-top:60px;
    margin-bottom:60px;
}

.bg-gray
{
    background-color:#edf3f8;
}



/* unvisited link */
a.prod-link:link {
  color: #555555;
}

/* visited link */
a.prod-link:visited {
  color: navy;
}

/* mouse over link */
a.prod-link:hover {
  color: orange;
}

/* selected link */
a.prod-link:active {
  color: blue;
}

