.resource-item-interior{
    border-radius: 10px;
    border: 2px solid var(--color-orange-fade);
    padding: 1.5em;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;  
    justify-content: center; 
    transition: all ease .3s; 
    text-align: center;
}

.resource-item{
    margin: 2em 0;
}

.resource-sub-heading {
    color: var(--color-orange);
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.resource-item-interior h3{
    font-size: var(--font-size-quinary-heading);
    font-family: 'Archivo';
    font-weight: 400;    
    margin: 0;
}


.resource-item a, .resource-item a:hover{
    color: var(--color-white);
    z-index: 10;
    position: relative;
}

.resource-item:hover .resource-item-interior{
    background-color: var(--color-orange);
}

.resource-item:hover .resource-sub-heading{
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
/*XS Devices 0 - 767px*/
@media only screen and (max-width: 47.9375em) {
	.resource-item{
    margin: 1em 0;
}
}

/*Devices 768px in width*/
@media only screen and (min-width: 48em) {}

/*Devices 1024px in width*/
@media only screen and (min-width: 64em) {

}

/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {}