.boxed-links-inner-wrapper {
    grid-template-columns: 1fr 1fr;
    /* max-width: 1190px;
    margin: auto; */
}

.boxed-links-inner-wrapper a {
    min-height: 415px;
    overflow: hidden;
    transform: scale(1);
    border-radius: 26px;
}

.boxed-links-inner-wrapper a:hover .boxed-link {
    transform: scale(1.05);
}

.boxed-link {
    transition: all ease 500ms;
    z-index: 1;
	background-repeat: no-repeat;
    background-size: cover;
}

.boxed-link-wrapper {
    z-index: 10;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
}

.boxed-link-wrapper h2 {
    width: 60%;
    text-wrap: balance;
}

@media (max-width:991px) {
    .boxed-links-inner-wrapper {
        grid-template-columns: 1fr;
    }
    .boxed-link-wrapper h2 {
        width: 50%;
    }
}

@media(max-width:700px){
    .boxed-link-wrapper h2 {
        width: 70%;
        /* font-size: 30px!important; */
    }
}
@media(max-width:577px){
    .boxed-link-wrapper h2 {
        width: 80%;
    }
}
@media(max-width:514px){
    .boxed-link-wrapper h2 {
        width: 90%;
        font-size: 35px !important;
    }
}
@media(max-width:414px){
    .boxed-link-wrapper h2 {
        width: 100%;
    }
}