section{
    padding:6rem 0;
}

#hero .container {
    min-height: 50vh;
}

.item{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow: visible;
}

.item h2{
    color: initial;
}

.item:hover {
    text-decoration: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    transform: translateY(-8px);
}

.item img{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.item:hover img{
    opacity: .5;
}






/* Small devices (landscape phones, 576px and below) */
@media (max-width: 576px) { 
    .item h2{

    }
}

/* Medium devices (tablets, 768px and below) */
@media (max-width: 768px) { 
    #hero h1 {
        font-size: 4rem;
        text-align: center;
    }
    section{
        padding: 4rem 0;
    }
    .item h2{
        font-size: 1.5rem;
        margin: 0;
        margin-left: 0!important;
    }
}