
.link-block__intro {
    display: flex;
    padding-bottom: 30px;
    justify-content: space-between;
}

.link-block__listing {
    justify-content: center;
}

.link-block__listing .card-icon-item {
    margin-bottom: 20px;
}

.link-block__wrap {
    text-decoration: none;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear;
    display: block;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.link-block__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 230px;
}

.link-card__url {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border: none;
}

.link-card__icon {
    padding-bottom: 20px;
}

.link-card__icon span {
    font-size: 50px;
    color: #0033A0;
}

.link-card__title {
    padding-bottom: 0;
}

.link-card__content p {
    padding-top: 20px;
}

.link-card__icon span,
.link-card__title,
.link-card__content p {
	transition: all 0.3s ease 0s;
}

@media (min-width: 600px) {
	.link-block-intro_cta {
		text-align: right;
	}
}

@media (min-width: 1025px) {
	.link-block__wrap::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 0;
		background: #0033A0;
		transition: all ease-in-out 0.3s;
		border-radius: 10px;
		z-index: -1;
	}

	.link-block__wrap:hover::before {
		height: 100%;
	}
	
	.link-block__wrap:hover * {
		color: #fff;
	}

}
