.instructions {
    display: flex;
    flex-direction: row;
    
}
.instruction {


    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
	/*filter: drop-shadow(0px 0px 4px #3333);*/
    border: 1px solid #F2F2F2;
	background: white;
	border-radius: 2px;
    transition: 0.5s;
}
.instruction>a{
    color: #000;
    text-decoration: none;
    padding: 32px 171px;
    white-space: nowrap;
}
.instruction.active {
    border-color: transparent;
    box-shadow: 0px 8px 32px rgb(27 30 37 / 16%);
    z-index: 1;
}
.instruction.active a {
	color: #333;
	text-decoration: none;
}
.instruction:hover{
    box-shadow: 0px 8px 32px rgb(27 30 37 / 16%);
}
.instruction a:hover{
    color: #333 !important;
}
@media(min-width: 992px){
    .instruction>a{
        padding: 32px 30px;
        white-space: unset;
    }
}
@media(min-width: 1200px){
    .instruction{
        max-width: 33.3%;
    }
    .instruction>a{
        padding: 32px 60px;
        white-space: unset;
    }
}
@media(max-width: 768px){
    .instruction>a{
        white-space:unset;
        padding: 32px 25px;
    }
}