.innovation_report {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-gap: clamp(20px, 8vw, 140px);
    align-items: flex-start;
}

.quick_links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.quick_links > div > ul > li > a {
    color: rgb(34, 34, 34);
    transition: .3s;
    display: block;
    padding: 1rem 0;
    border-top: 1px solid #dbdbdb;
    font-weight: 700;
}

.quick_links > div > ul > li:hover > a {
    color: #7f1f3a;
}


.quick_links > div > ul ul a {
    font-size: .875rem;
    line-height: 1.5rem;
    display: block;
    margin-bottom: 0.6rem;
    line-height: 1rem;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
    color: rgb(99, 94, 94);
}

.quick_links > div > ul ul a:hover {
    color: #7f1f3a;
}

.quick_links {
    position: sticky;
    top: 20px;
    z-index: 9;
    background-color: #fff;
    overflow: hidden;
}

.quick_links > div {
    overflow-y: scroll;
    width: calc(100% + 20px);
    height: 100vh;
}

.innovation_report_pagination {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.innovation_report_pagination .next {
    margin-left: auto;
}

.innovation_report_pagination .prev span {
    flex-direction: row-reverse;
}

.innovation_report_pagination .prev span:after {
    transform: rotate(180deg);
}

.page_section_title {
    margin-bottom: 2rem;
    padding: 2rem 40px;
    background-color: #f4f4f4;

    box-sizing: border-box;
}

.page_section_title p:nth-child(1) {
    margin: 0;
    color: #7f1f3a;
}

.page_section_title p:nth-child(2) {
    font-weight: 700;
}


.mobile_filer {
    display: none;
}

iframe {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .innovation_report {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .quick_links {
        top: 0;
        box-shadow: 0 4px 16px 0 rgba(34,34,34,.1);
        padding: 0 20px;
        width: calc(100% + 50px);
        margin-left: -25px;
        box-sizing: border-box;
    }
    .mobile_filer {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
        color: rgb(34, 34, 34);
        transition: .3s;
        padding: 1rem 0;
        font-weight: 700;
    }

    .quick_links > div {
       height: auto;
        width: 100%;
    }

    .quick_links.open > div {
        height: 100vh;
    }


    .quick_links > div > ul {
        max-height: 0;
        overflow: hidden;
        transition: .3s;
    }

    .quick_links > div > ul > li {
        margin-bottom: 20px;
    }

    .mobile_filer:after {
        content: '';
        width: 18px;
        height: 18px;
        background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 64 64'%3E%3Cpath fill='%237f1f3a' d='M32 51.5 0 18.83l6.62-6.33L32 38.76 57.38 12.5 64 18.83Z' data-name='&lt;Compound Path&gt;'/%3E%3C/svg%3E");
        transition: .2s;
    }
    .open .mobile_filer:after {
        transform: rotate(180deg);
    }

    .open.quick_links > div > ul {
        max-height: 2000px;
    }
}