.w-70 {
    width: 70% !important;
}

.resources-section {
    margin-bottom: 13rem;
}

#myTabContent {
    background-color: #F3F3F3;
    border-radius: 10px;
    margin-top: -40px;
    padding: 40px;
}

.tabs-collection {
    width: 50%;
    margin: 0 auto;
    border-radius: 16px;
    background-color: #ffffff;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    position: relative;

}

.resources-section .nav-tabs .nav-link {
    border-radius: 6px;
    background-color: #ffffff;
    color: #393939;
    border: 1px solid #707070;
    margin: 5px;
    flex: 1;
    text-align: center;
    padding: 15px;
    position: relative;
}

.resources-section .nav-link.active {
    background-color: #F99B1E;
    color: #ffffff;
}

#article-tab::before {
    content: "";
    background: url(/resources/img/icon-article-black.webp) no-repeat;
    height: 17px;
    width: 17px;
    display: block;
    position: absolute;
    top: 18px;
    left: 60px;
    z-index: 0;
    text-align: center;
}

#article-tab.active::before {
    content: "";
    background: url(/resources/img/icon-article-white.webp) no-repeat;
    height: 17px;
    width: 17px;
    display: block;
    position: absolute;
    top: 18px;
    left: 60px;
    z-index: 0;
    text-align: center;
}


#infographic-tab::before {
    content: "";
    background: url(/resources/img/icon-infographics-black.webp) no-repeat;
    width: 13px;
    height: 16px;
    display: block;
    position: absolute;
    top: 18px;
    left: 95px;
    z-index: 0;
    text-align: center;
}

#infographic-tab.active::before {
    content: "";
    background: url(/resources/img/icon-infographics-white.webp) no-repeat;
    width: 13px;
    height: 16px;
    display: block;
    position: absolute;
    top: 18px;
    left: 95px;
    z-index: 0;
    text-align: center;
}

#white-paper-tab::before {
    content: "";
    background: url(/resources/img/icon-whitepaper-black.webp) no-repeat;
    width: 13px;
    height: 17px;
    display: block;
    position: absolute;
    top: 18px;
    left: 100px;
    z-index: 0;
    text-align: center;
}

#white-paper-tab.active::before {
    content: "";
    background: url(/resources/img/icon-whitepaper-white.webp) no-repeat;
    width: 13px;
    height: 17px;
    display: block;
    position: absolute;
    top: 18px;
    left: 100px;
    z-index: 0;
    text-align: center;
}

.border-right-dashed {
    border-right: 1px dashed #c5c5c5;
}

.border-bottom-dashed {
    border-bottom: 1px dashed #c5c5c5;
}

.article-link {
    display: flex;
    gap: 10px;
    display: grid;
    place-items: center;
    color: #393939;
    text-decoration: none;
}

.white-paper-link,
.infographic-link {
    place-items: center;
    color: #393939;
    font-weight: bold;
    text-decoration: none;
}

.published-date {
    color: #8A8A8A;
    font-size: 13px;
    font-weight: normal;
    border-top: 1px solid #8A8A8A;
    padding-top: 7px;
}

.article-link:hover,
.white-paper-link:hover,
.infographic-link:hover {
    color: #F99B1E;
}

.article-desc,
.white-paper-desc,
.infographic-desc {
    position: relative;
    padding-right: 36px;
    margin-bottom: 10px;
}

.article-desc::after {
    content: "";
    background: url(/resources/img/dark-arrow.webp) no-repeat;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 10px;
    right: 0px;
    z-index: 0;
    text-align: center;
}


.article-link:hover .article-desc::after {
    content: "";
    background: url(/resources/img/yellow-arrow.webp) no-repeat;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 10px;
    right: 0px;
    z-index: 0;
    text-align: center;
}


.infographic-desc::after {
    content: "";
    background: url(/resources/img/dark-arrow.webp) no-repeat;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 1px;
    right: 10px;
    z-index: 0;
    text-align: center;
}

.infographic-link:hover .infographic-desc::after {
    content: "";
    background: url(/resources/img/yellow-arrow.webp) no-repeat;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 1px;
    right: 10px;
    z-index: 0;
    text-align: center;
}

.white-paper-desc::after {
    content: "";
    background: url(/resources/img/dark-arrow.webp) no-repeat;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 1px;
    right: 10px;
    z-index: 0;
    text-align: center;
}

.white-paper-link:hover .white-paper-desc::after {
    content: "";
    background: url(/resources/img/yellow-arrow.webp) no-repeat;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 1px;
    right: 10px;
    z-index: 0;
    text-align: center;
}