.hero-banner {
    background: var(--primary-400);
}

.grid-links {
    padding: var(--gap3) 0px;
}

.grid-links .ctnr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.link {
    background: var(--primary-400);
    width: 100%;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.link1 {
    grid-area: 1 / 1 / 2 / 3;
}

.link2 {
    grid-area: 1 / 3 / 2 / 4;
}

.link3 {
    grid-area: 2 / 1 / 4 / 2;
}

.link4 {
    grid-area: 2 / 2 / 3 / 4;
}

.link5 {
    grid-area: 3 / 2 / 4 / 4;
}

.link6 {
    grid-area: 3 / 1 / 4 / 2;
}

@media (max-width: 1000px) {
    .link1, .link2, .link3, .link4, .link5, .link6 {
        grid-area: unset;
    }

    .grid-links .ctnr {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: unset;
    }
}

.link .title {
    position: absolute;
    top: 28px;
    left: 30px;
    right: 30px;
    z-index: 10;
}

.link .title h2 {
    color: var(--white);
    font-size: 29px;
    font-weight: 700;
    line-height: 120%;
    max-width: 270px;
    width: 100%;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.link .desc {
    color: var(--white);
    font-size: 16px;
    background: transparent;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 1s;
    line-height: 150%;
}

.link a {
    position: absolute;
    bottom: var(--gap15);
    right: var(--gap15);
    z-index: 10;
}

.link .bck {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #092844;
    opacity: 0.3;
    z-index: 1;
    transition: 0.5s;
    top: 0;
    bottom: 0;
}

.link:hover .bck {
    opacity: 0.6;
    z-index: 1;
}

.link:hover .desc {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.link img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    object-fit: cover;
}