

#tools-block-overflow > div:nth-child(1) > h2 {
    margin: 36px 0 32px 0;
    padding-left: 0;
}

#tools-block-overflow {
    overflow: visible;
    margin-top: 100px;
    scroll-behavior: smooth;
    transition: 0.3s;
}

.tools-wrapper {
    z-index: 9998;
    justify-content: center;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 102px;
    background:#f3f4fdcc;
    transition: background-color 0.3s, backdrop-filter 0.3s;
    backdrop-filter: blur(10px);
}

.tools-category {
    z-index: 1;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
    max-width: 1328px;
    display: flex;
    position: relative;
    padding: 8px;
    }

.tools_category_class {
        flex: none;
    padding: 5px 4px;
}

.tools_link{
    color: rgba(22, 13, 61, .6);
    background-color: rgba(22, 13, 61, .1);
    border-radius: 40px;
    padding: 5px 15px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity .15s;
    font-size: 14px;
    font-family: arial;
}
.anchor-section {
    padding-top: 27px;
    padding-bottom: 77px;
}

.text_sections {
    font-size: 28px;
    font-weight: 500;
    line-height: 110%;
    margin-top: 48px;
    margin-bottom: 20px;
    
}

.resources-grid-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 52px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.resource-tile-container {
    cursor: pointer;
    background-image: linear-gradient(rgba(255, 255, 255, .7), rgba(251, 250, 255, .7));
    border-radius: 20px;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    position: relative;
}

.resource-image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    justify-content: flex-end;
    width: 100%;
    display: flex;
    position: relative;
}

.resource-tile-bottom {
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    display: flex;
}
.resource-tile-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;

    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    padding-bottom: 78px;
}

.text__tool-tile-heading {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 125%;
    color: rgba(22, 13, 61, .9);
    letter-spacing: .5px;
    width: 100%;
    font-weight: 700;
}

.resource-description {
    color: rgba(22, 13, 61, .7);
    font-size: 16px;
    line-height: 140%;
}

.resource-tag {
    letter-spacing: .4px;
    text-transform: uppercase;
    border-radius: 20px;
    align-self: flex-start;
    height: auto;

    padding: 6px 15px;
    font-family: Arial;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-decoration: none;
    display: block;
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.tools_link.active {
    color: #fff;
    background-color: rgba(22, 13, 61, .9);
}


@media screen and (max-width: 991px) {
    .resources-grid-wrapper {
      grid-column-gap: 4vw;
        grid-row-gap: 5.5vw;
        grid-template-columns: 1fr 1fr;
    }
    .tools-category {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-left: 4.5%;
        padding-right: 4.5%;
        overflow: scroll;
    }
    .tools-wrapper {
        top: 75px;
    }
}


@media screen and (max-width: 767px) {
        .resources-grid-wrapper {
        grid-template-columns: 1fr;
    }
}