.directions{
    width: 100%;
    min-height: 100px;

    background-color: lavender;

    display: flex;
    flex-direction: column;


    border: 2px solid darkblue;

    transition: box-shadow .5s ease-in ;

}

.directions:hover{
    box-shadow: 10px 10px 10px #000;
}

.directions__header{
    font-size: 25px;
    text-align: center;
    text-decoration: underline;
    margin: 20px;
}

.directions__card-wrapper{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.directions__card{
    width: 30%;
    min-width: 300px;
    margin: 10px;
    background-color: #fff;
    cursor: pointer;

    transition: box-shadow .3s ease-in ;
}

.directions__link{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    border: 1px #000 solid;
}

.directions__img{
    width: 100%;
}

.directions__card-header{
    text-transform: uppercase;
    color: #000;
    font-size: 17px;
    text-align: center;

    padding: 10px;
}
.directions__card:hover{
    box-shadow: 10px 10px 10px #000;
}

@media (max-width: 900px) {
    .directions__header{
        font-size: 23px;
    }
}

@media (max-width: 600px) {
    .directions__header{
        font-size: 20px;
    }
}