.gallery-title span {

    font-family: 'Teko', sans-serif !important;
    
    
    font-weight: 300;

    margin-bottom: 22px;
    color: rgb(240, 78, 60);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
/* left: 300px; */
    padding-top: 20px;



}


.gallery-title span::before{

    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: rgb(240, 78, 60);
    left: -67px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 10px;




}

.container {
    position: relative;
    width: 100%;
  }
  
  .image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
  }
  
  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* -ms-transform: translate(-50%, -50%); */
    text-align: center;
  }
  
  .container:hover .image {
    opacity: 0.5;


  }
  
  .container:hover .middle {
    opacity: 1;
  }
  
  .text {
    /* background-color: rgb(240, 78, 60); */
    color: white;
    font-size: 16px;
    padding: 16px 32px;
  }


.text i{

font-size: 40px;

}


.text a{
    color: rgb(240, 78, 60);
}

