/*.titleClass:hover h3 {
    color: #ffff00 !important;
}*/
.formClass {
    outline: none;
    padding: 12px 15px;
    color: #fff;
    font-size: 13px;
    width: 85%;
    border: none;
    background: none;
    letter-spacing: 1px;
}



.custom-underline {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}


.custom-underline::after {
  content: "";
  position: absolute;
}

/*--- Green Box (box-c) ---*/
.box-c .custom-underline::after {
  top: 97%;
  height: 2px !important;
  width: 30%;
  left: 5%;
  background-color: rgba(210, 22, 22, 0.6);
    transition: 0.4s ease-out all .1s;
}

.box-c:hover .custom-underline::after {
  width: 40%;
  transition: 0.5s ease all;
}


/* quick reset and base styles */
* {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  font-family: helvetica, arial, sans-serif;
}

/* relevant styles */
.img__wrap {
  position: relative;
  height: 327px;
  width: 540px;
}

.img__description_layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
 /*background: rgba(36, 62, 206, 0.6); */
 background: rgba(35, 14, 243, 0.6);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* transition effect. not necessary */
  transition: opacity .2s, visibility .2s;
}

.img__wrap:hover .img__description_layer {
  visibility: visible;
  opacity: 1;
}

.img_description_title  /* Add by Amey*/
{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: blue;
  padding-top: 246px;
} 

.img__wrap:hover .img_description_title
{
  visibility: hidden;
}
.img__description {
  transition: .2s;
  transform: translateY(1em);
}

.img__wrap:hover .img__description {
  transform: translateY(0);
}