.toc_section__wrapper {
    background: #F0F3F7;
}

.toc_section {
    padding: 50px 16px;
}

.toc_section__title {
    font-family: var(--primary-font-family);
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 10px;
    text-transform: capitalize;
    color: #1C2642;
}

.toc_section__title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px;
    content: '';
    border-radius: 30px;
    background: #3CB371;
}

.toc_section__opening_paragraph {
    font-family: 'Arial', serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    margin-bottom: 16px;
    color: #2E364E;
}

.toc_section__links {
    display: grid;
    margin: 0 !important;
    padding: 0;
    list-style: none !important;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 8px;
    column-gap: 16px;
}

.toc_section__links > li {
    padding-bottom: 0 !important;
    list-style: none;
    border-radius: 4px;
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.toc_section__links a {
    font-family: var(--primary-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 44px;
    position: relative;
    display: block;
    overflow: hidden;
    height: 44px;
    padding: 0 32px 0 16px;
    text-decoration: none !important;
    text-transform: capitalize;
    color: #1C2642;
}

.toc_section__links a:before {
    position: absolute;
    top: 0;
    right: 13px;
    width: 17px;
    height: 44px;
    content: '';
    -webkit-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    background: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.23997 5.66407H14.6642L12.4404 7.98244C12.1923 8.24116 12.1913 8.66161 12.4383 8.92156C12.6852 9.18154 13.0866 9.1825 13.3347 8.92381L16.6469 5.47069C16.6471 5.47049 16.6473 5.47026 16.6474 5.47006C16.8949 5.21134 16.8957 4.78953 16.6475 4.52995C16.6473 4.52975 16.6471 4.52951 16.6469 4.52932L13.3348 1.07619C13.0867 0.817539 12.6853 0.818435 12.4383 1.07845C12.1914 1.3384 12.1923 1.75885 12.4405 2.01757L14.6642 4.33594H1.23997C0.889879 4.33594 0.606092 4.63324 0.606092 5C0.606092 5.36676 0.889879 5.66407 1.23997 5.66407Z' fill='%231C2642'/%3E%3C/svg%3E%0A") no-repeat center;
}

.toc_section__links a:hover:before {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

@media only screen and (max-width: 991px) {
    .toc_section {
        padding: 24px 16px;
    }

    .toc_section__title {
        font-size: 20px;
        line-height: 25px;
        padding-bottom: 12px;
    }

    .toc_section__links {
        grid-template-columns: unset;
        row-gap: 2px;
    }

    .toc_section__links a {
        font-size: 16px;
        line-height: 40px;
        height: 40px;
    }

    .toc_section__links a:before {
        right: 16px;
        height: 40px;
    }
}
