.block-call-to-actions-balk {
    position: relative;
    padding-top: 1px !important;
}




.call-to-actions-balk-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    grid-gap: 2.5rem;
    position: relative;
	width: 100%;
    margin: auto;
}

.block-call-to-actions-balk.has-two-items .call-to-actions-balk-inner {
    grid-template-columns: 1fr 1fr;
    max-width: 100rem;
}

.call-to-actions-balk-cta {
    transition: .4s ease;
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* .call-to-actions-balk-cta:hover {
    transform: translateY(-15px);
} */

.call-to-actions-balk-cta:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: #d4e7ee;
    transition: .4s ease;
    top: 0;
}
.call-to-actions-balk-cta:hover:before {
    width: 100%;
}

.call-to-actions-balk-cta a {
    padding: 2rem;
    border-radius: 5px;
    display: block;
    height: 100%;
	text-decoration: none;
	display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}
.call-to-actions-balk-cta p {
    margin-bottom: 0;
	margin-top: auto;
	    font-weight: 500;
}
.call-to-actions-balk-cta img {
    height: 40px;
}
.call-to-actions-balk-cta h4 {
    margin: 2rem 0 1rem 0;
}


/* Desktop small */
@media only screen and (max-width: 1200px) {
  .block-call-to-actions-balk {
    padding-top: 6rem !important;
}

.block-call-to-actions-balk:before {
    display: none;
}

.call-to-actions-balk-inner {
    grid-template-columns: 1fr 1fr;
}
}

/* Desktop small */
@media only screen and (max-width: 1000px) {
  .block-call-to-actions-balk {
    padding-top: 4rem !important;
}
}

/* Tablet */
@media only screen and (max-width: 700px) {
  
}


/* Iphone */
@media only screen and (max-width: 500px) {
  .call-to-actions-balk-inner {
    grid-template-columns: 1fr !important;
	      gap: 2rem;
    grid-gap: 2rem;
}
	
}