@import url(https://fonts.googleapis.com/css?family=Raleway);

/* products hover elements */

.item-hover:hover {
  /* background gradient from: #2ed3a2 to #1cc167 opacity 90% */
    background-color: #2ed3a2; /* For browsers that do not support gradients */
    background-image: linear-gradient(to right, #2ed3a2 , #1cc167);
    opacity: 0.9;
  }
  
  .rounded-circle i {
    position: relative;
  }
  
  .btn-circle-xl {
    width: 100px;
    height: 100px;
    font-size: 1.3rem;
  }
  
  .fa-plus {
    color: #23c46e;
  }
  
  .fa-heart {
    color: #e73c68;
  }
  
  /* end of product hover elements */

.hover-container *,.hover-container *:before, .hover-container *:after{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:border-box;
  box-sizing: border-box;
}

.hover-container{
  padding: 1em 0;
  float: left;
  width: 50%;
}
@media screen and (max-width: 640px){
  .hover-container{
    display: block;
    width: 100%;
  }
}

@media screen and (min-width: 900px){
  .hover-container{
    width: 33.33333%;
  }
}

.hover-container .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content {
  position: relative;
  width: 100%;
  /* max-width: 400px; */
  overflow: hidden;
}

.content .content-overlay {
  background: linear-gradient(to right, #2ed3a2 , #1cc167); /* background gradient from: #2ed3a2 to #1cc167 */
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 0.9; /* opacity 90% */
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.fadeIn-bottom{
  top: 80%;
}

.fadeIn-top{
  top: 20%;
}

.fadeIn-left{
  left: 20%;
}

.fadeIn-right{
  left: 80%;
}

.pink-overlay {
  background: linear-gradient(to bottom, #dc5987 , #675b99); /* background gradient from: #2ed3a2 to #1cc167 */
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0.8;
