/* #region: Section 2 */
    .articles .section-2 .nav-row {
        align-items: center;
        margin-bottom: 25px;
    }
    .articles .section-2 .section-description {
        width: 70%;
        margin: auto;
    }
    .articles .section-2 .left .nav-pills {
         overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .articles .section-2 .left .nav-pills::-webkit-scrollbar {
        display: none;
    }
    .articles .section-2 .left .nav-pills .nav-item {
        flex: 0 0 auto;
        margin-right: 40px;
        margin-left: 12px;
    }
    .articles .section-2 .left .nav-pills .nav-item .nav-link {
        font-size: 17px;
        padding: 0;
        padding-bottom: 10px;
        color: var(--gray);
        border-radius: 0;
    }
    .articles .section-2 .left .nav-pills .nav-item .nav-link.active {
        background-color: transparent;
        font-weight: 500;
        color: var(--light_black);
        border-bottom: 2px solid var(--red);
    }
    .articles .section-2 .right {
        text-align: end;
    }
    .articles .section-2 .right i {
        margin-left: 25px;
        cursor: pointer;
        &:hover {
            color: var(--red);
        }
    }
    .articles .section-2 .right i.active {
        color: var(--red);
    }
    .articles .section-2 .single-article {
        align-items: center;
        margin-bottom: 30px;
    }
    .articles .section-2 .single-article:last-child {
        margin-bottom: 0;
    }
    .articles .section-2 .list-view .single-article  .image {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 4px;
    }
    .articles .section-2 .single-article .date {
        font-size: 14px;
        color: var(--gray);
        padding-bottom: 10px;
    }
    .articles .section-2 .single-article .title {
        font-size: 25px;
        font-weight: 500;
        color: var(--black);
        padding-bottom: 5px;
    }
    .articles .section-2 .single-article .category {
        font-size: 14px;
        color: var(--gray);
        border: 1px solid var(--input_border);
        display: inline-block;
        padding: 10px 25px;
        border-radius: 20px;
        margin-bottom: 10px !important;
    }
    .articles .section-2 .single-article .content {
        font-size: 16px;
        color: var(--gray);
        padding-bottom: 10px;
    }
    .articles .section-2 .single-article .read-more {
        font-size: 15px;
        color: var(--gray);
        font-weight: 600;
        &:hover {
            font-weight: 700;
        }
    }
    .articles .section-2 .grid-view .single-article .image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 10px;
    }
    .articles .section-2 .grid-view .row > .single-article:nth-last-child(-n+3) {
        margin-bottom: 0;
    }
    .articles .section-2 .pagination .active>.page-link, .articles .section-2 .pagination .page-link.active {
        color: var(--white);
        background-color: var(--red);
        border-color: var(--red);
    }
    .articles .section-2 .pagination .page-link {
        color: var(--light_black);
    }
    .articles .section-2 .pagination .page-item:first-child .page-link, .articles .section-2 .pagination .page-item:last-child .page-link {
        border-radius: 0;
    }
    .articles .section-2 .pagination .page-link:focus {
        box-shadow: none;
    }
    .articles .section-2 .pagination .page-link:hover {
        color: var(--light_black);
        background-color: var(--input_border);
    }
/* #endregion */


/* #region: Responsive */
    @media (width <= 1921px) {}
    @media (width <= 1901px) {}
    @media (width <= 1851px) {}
    @media (width <= 1801px) {}
    @media (width <= 1751px) {}
    @media (width <= 1681px) {}
    @media (width <= 1601px) {}
    @media (width <= 1537px) {}
    @media (width <= 1441px) {}
    @media (width <= 1367px) {
        .articles .section-2 .left .nav-pills .nav-item .nav-link {
            font-size: 16px;
        }
        .articles .section-2 .list-view .single-article .image {
            height: 250px;
        }
        .articles .section-2 .single-article .date {
            padding-bottom: 5px;
        }
        .articles .section-2 .single-article .title {
            font-size: 22px;
        }
        .articles .section-2 .single-article .category {
            font-size: 14px;
            padding: 5px 15px;
        }
    }
    @media (width <= 1301px) {}
    @media (width <= 1281px) {}
    @media (width <= 1151px) {}
    @media (width <= 1076px) {}
    @media (width <= 1025px) {}
    @media (width <= 992px) {
        .articles .section-2 .right {
            display: none;
        }
    }
    @media (width <= 845px) {}
    @media (width <= 768px) {}
    @media (width <= 721px) {}
    @media (width <= 651px) {}
    @media (width <= 576px) {
        .pagination {
            margin-bottom: 0;
            margin: auto;
        }
        .pagination .page-link {
            font-size: 14px;
        }
    }
    @media (width <= 481px) {}
    @media (width <= 429px) {
        .articles .section-2 .nav-row {
            margin-bottom: 10px;
        }
        .articles .section-2 .list-view .single-article .image {
            height: 200px;
        }
        .articles .section-2 .left .nav-pills .nav-item .nav-link {
            font-size: 15px;
            padding-bottom: 0px;
        }
        .articles .section-2 .single-article .date {
            font-size: 13px;
            padding-bottom: 2px;
        }
        .articles .section-2 .single-article .title {
            font-size: 20px;
        }
        .articles .section-2 .single-article .category {
            font-size: 12px;
        }
        .articles .section-2 .single-article .content {
            font-size: 14px;
            padding-bottom: 5px;
        }
    }
    @media (width <= 415px) {}
    @media (width <= 396px) {}
    @media (width <= 377px) {}
    @media (width <= 361px) {}
    @media (width <= 331px) {}
/* #endregion */