/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/
.cont_box_spc .fusion-content-boxes.content-boxes-icon-on-side .heading, .cont_box_spc .fusion-content-boxes {
    margin-bottom: 0px !important;
}
.contact_info .fusion-li-item-content {
	line-height: 20px;
}

.subject-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.subject-box img {
  width: 100%;
  height: auto;
  display: block;
}

.subject-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f0b53f; /* gold color */
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
	text-transform: uppercase;
}

.subject-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 5px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  text-align: left;
}

.subject-box:hover .subject-title {
  bottom: 75%; /* slide title up */
}

.subject-box:hover .subject-content {
  bottom: 0; /* reveal content */
	height:75%;
}