
/*more_icon,author,title,summary,image,date كلاسات اجزاء البلوك*/
/*
علاقة العناصر في حالة الماوس على عنصر ونريد التغيير على عنصر اخر
If the cube is directly inside the container:#container:hover > #cube
If cube is next to (after containers closing tag) the container:#container:hover + #cube
If the cube is somewhere inside the container:#container:hover #cube
If the cube is a sibling of the container:#container:hover ~ #cube
*/

/*zoom*/
.hover_ee_zoom .image-box{
  overflow:hidden;
}
.hover_ee_zoom .image {
  background-position:center;
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
}
.hover_ee_zoom:hover .image {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1); /* IE 9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')"; /* IE8 */
   filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand'); /* IE6 and 7 */
}
/*END zoom*/
/*continuous_zoom*/
.hover_ee_continuous_zoom .image-box{
  overflow:hidden;
}
.hover_ee_continuous_zoom .image {
  background-position:center;
  transition: all 20s ease;
  -moz-transition: all 20s ease;
  -ms-transition: all 20s ease;
  -webkit-transition: all 20s ease;
  -o-transition: all 20s ease;
}
.hover_ee_continuous_zoom:hover .image {
  transform: scale(2.5);
  -moz-transform: scale(2.5);
  -webkit-transform: scale(2.5);
  -o-transform: scale(2.5);
  -ms-transform: scale(2.5); /* IE 9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')"; /* IE8 */
   filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand'); /* IE6 and 7 */
}
/*END continuous_zoom*/
/*gray_to_color*/
.hover_ee_gray_to_color .image{
  filter: grayscale(100%);
  }
  .hover_ee_gray_to_color:hover .image{
    filter: grayscale(0%);
  }
/*END gray_to_color*/
/*color_to_gray*/
  .hover_ee_color_to_gray .image{
    filter: grayscale(0%);
    }
    .hover_ee_color_to_gray:hover .image{
      filter: grayscale(100%);
    }
/*END color_to_gray*/
/*overwrite_shadow*/
.hover_ee_overwrite_shadow  .div_hover_effect1{
  position: absolute;
  width: 100%;
  height: 100%;
  background:rgba(68,67,90,0) ;
  transition:  0.5s;
}
.hover_ee_overwrite_shadow:hover  .div_hover_effect1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background:rgba(68,67,90,0.5) ;
  transition:  0.5s;

}
/*END overwrite_shadow*/
/*title_top_to_center*/
.hover_ee_title_top_to_center .title{
    position: absolute !important;
      color:rgba(0,0,0,0)  !important;
      top:0;
      bottom:0;

  }
.hover_ee_title_top_to_center:hover .title{
    position: absolute !important;
  padding-top:25% !important;
  color:#fff !important;
    transition:  0.5s;
    z-index:1000;
    top:0;
    bottom:0;
    background:rgba(68,67,90,0.5) ;
}
/*END title_top_to_center*/
/*writer_fade_in*/
.hover_ee_author_fade_in .author{
    position: absolute !important;
    border:1px solid #fff;
    text-align:center !important;
    z-index:1000000;
    transition:  0.5s;
    background:rgba(255, 255, 255, 0.2) !important;

    margin:0  !important;
    top: 50% ;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);


  }
.hover_ee_author_fade_in:hover .author{
  transition:  0.5s;
  padding: 10% !important;
  opacity: 1 !important;
  }
/*END writer_fade_in*/
