@charset "UTF-8";
@import url('../fonts/btolat/font.css');

:root {
    --size: min(2.5vh, 14px);
    --mian-font: "Readex Pro", sans-serif;
    --max-width: min(1200px, calc(100% - 20px));
    --gap: 5px;
    --shadow: 0 0 10px #ddd;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
    background-color: rgb(0, 0, 0 / 0%);
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2E8BF4;
}
::-webkit-scrollbar-thumb {
    background: #53576b;
}
::-webkit-scrollbar-track {
    background: #333435;
}


@media screen and (min-width: 1200px) {
    :root {
        --max-width: min(calc(100vw - 320px), 1150px);
    }
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    transition: all .2s;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

::placeholder {
    font-size: calc((1vw / 1vh) * var(--size));
    font-family: var(--mian-font), system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 200;
}

h1 {
    font-size: calc(1.2 * var(--size));
}

h2 {
    font-size: calc(1.5 * var(--size));
}

    h2.title {
        width: 100%;
        padding: 10px 15px 0;
    }

h3 {
    font-size: calc(1.25 * var(--size));
}

html {
    direction: rtl;
    overflow-x: hidden;
}

body {
    font-family: var(--mian-font), system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    background: #f9f9f9;
    position: relative;
}

    body:before {
        content: "";
        background: url(../images/p1.png);
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        min-height: 80vh;
        z-index: -1;
    }

    body:after {
        content: "";
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        min-height: 80vh;
        background: linear-gradient(0deg, transparent, rgba(249, 249, 249, .75) 0, #f9f9f9 80%);
        z-index: -1;
    }


.cm-page-header {
    width: 100%;
    background: #640000;
    color: #fff;
    padding: 10px 10px;
}


.card {
    box-shadow: var(--shadow);
    padding: 10px;
    background: #fefefe;
    border-radius: var(--gap);
    position: relative;
}

header {
    position: sticky;
    top: 0;
    background: rgb(120 0 0);
    z-index: 999999999;
}

    header nav {
        display: flex;
        justify-content: space-between;
        max-width: var(--max-width);
        margin: 0 auto;
        position: relative;
        min-height: 50px;
        z-index: 3;
        background: rgb(120 0 0);
        gap: 20px;
    }

        header nav ul {
            display: flex;
            gap: 10px;
            align-items: center;
        }

            header nav ul.announcements {
                overflow-x: auto;
                white-space: nowrap;
                background: rgb(120 0 0);
                justify-content: flex-start;
                padding: 0 var(--gap);
                max-width: 50%;
            }

                header nav ul.announcements li {
                    position: relative;
                    padding: 2px;
                }

                    header nav ul.announcements li a {
                        padding: var(--gap) 15px;
                        background: rgba(200, 200, 200, .1);
                        border-radius: var(--gap);
                    }

    header ul li.logo {
        margin: 0px 0 0 20px;
        position: relative;
    }

    /*                header nav ul li.logo:after {
                    content: "Ø§Ù„Ø¥ØµØ¯Ø§Ø± Ø§Ù„Ø¬Ø¯ÙŠØ¯";
                    position: absolute;
                    bottom: 110%;
                    right: 0;
                    color: #fff;
                    font-size: 9px;
                    font-weight: 300;
                }*/

    header nav ul li a {
        color: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
    }

    header nav ul li:hover a {
        color: #fff;
    }

    header nav ul:last-child li a {
        color: #f5f5f5;
    }

ul.social-icons {
    gap: 2px var(--gap);
    width: 125px;
    white-space: nowrap;
    background: rgb(120 0 0);
    flex-direction: row-reverse;
    padding: var(--gap);
    flex-wrap: wrap;
    flex-grow: 1;
    display: flex;
}

    ul.social-icons li.icon_btn.ico a {
        background: #ffffff;
        padding: 2px;
        border-radius: 500px;
        width: 23px;
        mix-blend-mode: hard-light;
        filter: grayscale(1) drop-shadow(2px 4px 0 rgba(0, 0, 0, 0)) invert(0);
        display: inline-flex;
    }

    ul.social-icons li.icon_btn.ico.hover a,
    ul.social-icons li.icon_btn.ico:hover a {
        mix-blend-mode: unset;
        filter: none;
    }

header.mini {
    height: 50px;
    overflow: hidden;
    transition: all .5s;
}

    header.mini:hover {
        height: 100px;
        overflow: unset;
    }

#menu_toggle_icon {
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    padding: 0 18px;
    background: inherit;
    border: none;
    outline: none;
    display: none;
}

    #menu_toggle_icon i,
    #menu_toggle_icon::before,
    #menu_toggle_icon::after {
        position: absolute;
        width: 100%;
        height: 4px;
        background: #fff;
        border-radius: var(--gap);
        display: flex;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    #menu_toggle_icon::before {
        content: "";
        top: 0;
    }

    #menu_toggle_icon::after {
        content: "";
        position: absolute;
        top: 100%;
    }

    #menu_toggle_icon:hover i,
    #menu_toggle_icon:hover::before,
    #menu_toggle_icon:hover::after {
        width: 90%;
    }

.open-menu #menu_toggle_icon i {
    animation: menu_toggle_icon_opened_i .15s linear forwards;
}

.open-menu #menu_toggle_icon::before {
    animation: menu_toggle_icon_opened_before .15s linear forwards;
}

.open-menu #menu_toggle_icon::after {
    animation: menu_toggle_icon_opened_after .15s linear forwards;
}

@keyframes menu_toggle_icon_opened_i {
    100% {
        width: 4px;
    }
}

@keyframes menu_toggle_icon_opened_before {
    100% {
        width: 4px;
        height: 30px;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
}

@keyframes menu_toggle_icon_opened_after {
    100% {
        width: 4px;
        height: 30px;
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
}

/******************** |  | ********************/

#menu_toggle_icon i {
    animation: menu_toggle_icon_i .15s linear forwards;
}

#menu_toggle_icon::before {
    animation: menu_toggle_icon_before .15s linear forwards;
}

#menu_toggle_icon::after {
    animation: menu_toggle_icon_after .15s linear forwards;
}

@keyframes menu_toggle_icon_i {
    100% {
        width: 100%;
    }
}

@keyframes menu_toggle_icon_before {
    100% {
        width: 100%;
        height: 4px;
        top: 0%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes menu_toggle_icon_after {
    100% {
        width: 100%;
        height: 4px;
        top: 100%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/******************** |  | ********************/

header menu {
    background: rgb(100 0 0);
    margin: 0 auto;
    position: relative;
}

    header menu > ul {
        display: flex;
        max-width: var(--max-width);
        margin: 0 auto;
        gap: 15px;
        overflow-x: auto;
    }

    header menu ul li a {
        color: #f5f5f5;
        display: block;
        padding: 15px;
        position: relative;
        white-space: nowrap;
    }

    header menu ul li:hover a {
        color: #fff;
    }

    header menu > ul > li:hover {
        background: rgb(120 0 0);
    }

    header menu > ul > li > sub {
        display: none;
        font-size: inherit;
        vertical-align: unset;
    }

    header menu > ul > li:hover > sub {
        display: flex;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 9;
        width: 100%;
        padding: 10px calc(((100% - var(--max-width))/2) + 10px);
        background: rgb(120 0 0);
        flex-direction: row;
    }

    header menu > ul > li > sub ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        max-height: 250px;
    }

        header menu > ul > li > sub ul li {
            width: 50%;
        }

            header menu > ul > li > sub ul li a {
                padding: 10px 0;
            }

            header menu > ul > li > sub ul li:hover a {
                color: #bbb;
            }

/******************** | END MENU | ********************/

.max.leaderboard {
    width: max-content;
    position: relative;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px 10px;
    background: rgb(100 0 0);
    border-radius: var(--gap);
}

    .max.leaderboard::after {
        content: "Ù…Ø§Ø¯Ø© Ø¥Ø¹Ù„Ø§Ù†ÙŠØ©";
        font-size: 12px;
        color: #ccc;
        width: 100%;
        position: absolute;
        top: 0;
        text-align: center;
    }

/******************** |  | ********************/
/******************** |  | ********************/

header nav ul.setting {
    width: 80px;
    justify-content: flex-end;
    gap: 15px;
    flex-grow: 1;
}

    header nav ul.setting li.icon_btn.search button {
        width: 40px;
        height: 40px;
        padding: var(--gap);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: var(--gap);
        background: inherit;
        border: none;
        outline: none;
        cursor: pointer;
    }

        header nav ul.setting li.icon_btn.search button svg {
            fill: #fff;
            transform: rotateZ(-90deg);
            transition: all .5s;
        }

            header nav ul.setting li.icon_btn.search button svg .search-ball {
                transform: rotate3d(0, 0, 1, 0deg);
                transform-origin: 310px 204px;
                transition: all .5s;
            }

                header nav ul.setting li.icon_btn.search button svg .search-ball .x {
                    fill: rgba(0, 0, 0, 0);
                }

    header nav ul.setting li.icon_btn.search.hover a svg,
    header nav ul.setting li.icon_btn.search:hover button svg {
        transform: rotateZ(0deg);
    }

        header nav ul.setting li.icon_btn.search.hover a svg .search-ball,
        header nav ul.setting li.icon_btn.search:hover button svg .search-ball {
            transform: rotate3d(0, 0, 1, 360deg);
            transform-origin: 310px 204px;
        }

            header nav ul.setting li.icon_btn.search.hover a svg .search-ball .x,
            header nav ul.setting li.icon_btn.search:hover button svg .search-ball .x {
                fill: rgba(255, 255, 255, 1);
            }

    header nav ul.setting li.icon_btn.user a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--gap);
        white-space: nowrap;
        font-size: 12px;
        gap: 3px;
        min-width: 40px;
    }

        header nav ul.setting li.icon_btn.user a img {
            filter: grayscale(1) brightness(0.9);
            background: #555;
            border-radius: 600px;
            height: 30px;
            width: 30px;
            padding: var(--gap);
        }

        header nav ul.setting li.icon_btn.user.active a img,
        header nav ul.setting li.icon_btn.user a:hover img {
            filter: none;
            background: #fff;
        }

    header nav ul.setting li.icon_btn.user.active a img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 600px;
    }


main,
.main {
    display: flex;
    max-width: var(--max-width);
    margin: var(--gap) auto;
    gap: var(--gap);
    align-items: flex-start;
    min-height: 100vh;
    flex-wrap: wrap;
}

    main > section {
        flex-grow: 1;
        width: 70%;
        max-width: 705px;
    }

    main > aside {
        flex-grow: .367;
        min-width: 330px;
        width: 30%;
    }

    main *.card {
        margin-bottom: var(--gap);
    }

        main *.card:last-child {
            margin-bottom: 0;
        }

.card .category {
    position: absolute;
    bottom: min(25%, 55px);
    right: 15px;
    background: rgb(120 0 0);
    padding: 5px;
    line-height: 12px;
    font-size: 12px;
    color: #fff;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--gap);
}

    .cards .card {
        width: calc((100% / 3) - 4px);
        margin: 0;
        box-shadow: none;
    }

        .cards .card img {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            object-position: top center;
        }

        .cards .card h3 {
            font-size: 14px;
            color: #252525;
            padding-bottom: 10px;
        }

    .cards.video .card {
        box-shadow: none;
    }

        .cards.video .card::before, .video.card::before {
            content: "";
            position: absolute;
            bottom: min(25%, 64px);
            left: 25px;
            width: 25px;
            z-index: 2;
            --r: 2px;
            --_g: calc(tan(60deg)*var(--r)) bottom var(--r), red 98%, #0000 101%;
            aspect-ratio: 1/cos(30deg);
            -webkit-mask: conic-gradient(from -30deg at 50% calc(200% - 3*var(--r)/2), #000 60deg, #0000 0) 0 100%/100% calc(100% - 3*var(--r)/2) no-repeat, radial-gradient(var(--r) at 50% calc(2*var(--r)), #000 98%, #0000 101%), radial-gradient(var(--r) at left var(--_g)), radial-gradient(var(--r) at right var(--_g));
            clip-path: polygon(50% 0, 100% 100%, 0 100%);
            transform: rotate(90deg);
            background: #fff;
            transition: all .2s;
            pointer-events: none;
        }

        .cards.video .card::after {
            content: "";
            position: absolute;
            bottom: min(25%, 55px);
            left: 15px;
            z-index: 1;
            background: linear-gradient(45deg, rgb(120 0 0), #c05429);
            width: 40px;
            height: 40px;
            border-radius: 50px;
            transition: all .3s;
            pointer-events: none;
        }

        .cards.video .card:hover::before {
            width: 20px;
            bottom: min(25%, 66px);
            left: 27px;
        }

        .cards.video .card:hover::after {
            filter: invert(1);
        }

/* 
.cards.video .card:hover::before {
    background: linear-gradient(45deg, rgb(120 0 0), #c05429);
}

.cards.video .card:hover::after {
    background: #fff;
} */

.sticky-scroll {
    position: sticky;
    top: 0;
}

.leagueMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background: rgb(120 0 0);
    margin: 10px 0;
    padding: 10px;
    border-radius: var(--gap);
    gap: 10px;
}

    .leagueMenu a {
        color: #fff;
        flex-grow: 1;
        min-width: 100px;
        padding: 10px;
        text-align: right;
        padding: var(--gap) 15px;
        background: rgba(200, 200, 200, .1);
        border-radius: var(--gap);
        text-align: center;
    }

    .leagueMenu .leagueTitle {
        min-width: 40%;
        display: flex;
        align-items: center;
        background: none !important;
        padding: 0;
    }

    .leagueMenu a.leagueTitle img {
        width: 40px;
        background: #fff;
        padding: var(--gap);
        margin-left: var(--gap);
        border-radius: var(--gap);
    }

.breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
    padding-right: 0;
}

    .breadcrumb li {
        list-style: none;
        position: relative;
        padding: 10px 0;
        line-height: 0;
    }

        .breadcrumb li:hover a {
            background: rgb(120 0 0 / 3.5%);
        }

        .breadcrumb li::after {
            content: ">";
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            color: rgb(120 0 0);
        }

        .breadcrumb li:last-child::after {
            display: none;
        }

        .breadcrumb li a {
            color: rgb(120 0 0);
            padding: var(--gap) 10px;
            margin: var(--gap);
            border-radius: var(--gap);
            line-height: 0;
        }



.author {
    display: flex;
    width: 100%;
    margin-top: 10px;
    align-items: flex-start;
    gap: 10px;
}

    .author .author-data a {
        display: flex;
        color: #000;
        gap: 10px;
        align-items: flex-start;
        flex-direction: row-reverse;
        padding: 0 10px;
    }

        .author .author-data a .name {
            color: rgb(120 0 0);
            font-size: 12px;
            text-align: left;
            text-wrap: nowrap;
        }

        .author .author-data a .author-name {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

.xpublished-date {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 0 10px;
    margin: 25px auto 15px;
}

.published-date span {
    font-size: 12px;
    color: rgb(120 0 0);
}

.author .xpublished-date span.day {
    font-size: unset;
    color: #000;
}

.author .author-data a img.author-image {
    border-radius: 3px;
    position: relative;
    z-index: 2;
    height: 40px;
}

.xpublished-date .modified, .xpublished-date .modified * {
    font-size: 9px;
    margin-top: 3px;
}


article .article-body {
    margin: 10px 0;
    padding: 10px;
    font-size: var(--size);
}

    article .article-body .article-content {
        line-height: 30px;
        font-size: 16px;
        word-spacing: 3px;
    }

        article .article-body .article-content p {
            margin-bottom: 15px;
        }

        article .article-body .article-content a {
            display: inline-block;
            color: rgb(120 0 0);
            background: rgb(120 0 0 / 3.5%);
            border-bottom: 1px solid rgb(120 0 0);
            padding: 3px var(--gap);
        }

        article .article-body .article-content iframe {
            width: 100%!important;
        }


article .article-image-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    article .article-image-box .article-image-top {
        display: none;
    }

    article .article-image-box .article-image-bottom {
        display: none;
    }

    article .article-image-box.sponsored {
        padding: var(--gap) 10px;
        border-radius: var(--gap);
        margin-bottom: var(--size);
    }

        article .article-image-box.sponsored .article-image img {
            border-radius: var(--gap);
        }

        article .article-image-box.sponsored .article-image-top {
            display: flex;
            align-content: end;
            flex-wrap: wrap;
            justify-content: center;
        }

        article .article-image-box.sponsored .article-image-bottom {
            display: flex;
            align-content: start;
            flex-wrap: wrap;
            justify-content: center;
        }

.article-image.video {
    min-height: auto;
}

.article-image {
    text-align: center;
    /*width: 100%;
    height: max-content;
    min-height: max(50vh,400px);
    position: relative;*/
}
    .article-image img {
        width: 100%;
        /* height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: top center;*/
    }

article.card {
    padding: 0;
}

    article.card h1 {
        padding: 10px 10px 0;
    }

.readMore {
    max-width: min(300px, 100%);
    float: left;
    position: relative;
    padding: 60px 10px 30px;
    margin: 0 15px 15px 0;
    border-radius: var(--gap);
    overflow: hidden;
    background: rgb(120 0 0 / 3.5%);
}

    .readMore::after {
        content: "اقرأ ايضا";
        font-size: 14px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        padding: 15px 0;
        background: rgb(120 0 0 /.125);
        color: rgb(120 0 0);
    }

    .readMore ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-right: 20px;
    }

        .readMore ul li {
            list-style: square;
            color: rgb(120 0 0);
        }

            .readMore ul li a {
                color: #fff;
                color: rgb(120 0 0);
                font-size: 12px;
            }

                .readMore ul li a:hover {
                    color: #385e6d;
                }




.atags {
    padding-top: 30px;
}

    .atags ul {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        flex-grow: 1;
        padding: var(--gap);
    }

    .atags li:first-child {
        background: #7b0c05;
        color: #fff;
    }

    .atags li {
        border: 1px solid rgb(120 0 0);
        border-radius: 4px;
        width: auto;
        flex-grow: 1;
        overflow: hidden;
        text-align: center;
        max-width: 200px;
    }

        .atags li a {
            color: rgb(120 0 0);
            background: rgb(120 0 0 / 3.5%);
            padding: 3px 10px var(--gap);
            display: block;
        }

        .atags li:hover a {
            background: rgb(120 0 0);
            color: #fff;
        }

.card.da {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: var(--gap);
    padding-top: var(--gap);
}

    .card.da:before {
        content: attr(data-da);
        font-size: 12px;
        color: #999;
    }

.widget {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

    .widget h3 {
        color: rgb(120 0 0);
        padding: var(--gap) 0 var(--gap) var(--gap);
        font-weight: 600;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

        .widget h3 a.more {
            font-size: 13px;
            font-weight: 400;
            color: rgb(120 0 0);
            position: relative;
            padding-bottom: var(--gap);
        }

            .widget h3 a.more:after {
                content: "";
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0;
                height: 2px;
                width: 0%;
                background: rgb(120 0 0);
                transition: all .2s;
            }

    .widget > a {
        display: flex;
        gap: var(--gap);
        padding: var(--gap) 0;
    }

        .widget > a img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            object-position: top center;
        }

        .widget > a .news {
            height: 60px;
            overflow: hidden;
            font-size: 13px;
            color: rgb(120 0 0);
            position: relative;
        }

            .widget > a .news .time {
                position: absolute;
                bottom: 0;
                right: 0;
                font-size: 8px;
                color: rgb(120 0 0);
            }

    .widget ol {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

        .widget ol li {
            display: flex;
            gap: var(--gap);
            padding: var(--gap) 0;
            counter-increment: line-number;
            position: relative;
        }

            .widget ol li:before {
                content: counter(line-number);
                background: rgb(120 0 0);
                color: #fff;
                min-width: 25px;
                width: 25px;
                max-width: 25px;
                min-height: 25px;
                height: 25px;
                max-height: 25px;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 2;
            }

            .widget ol li:after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                height: 100%;
                width: 100%;
                z-index: 1;
                background: rgb(120 0 0 / 3.5%);
            }


            .widget ol li:nth-child(1)::after {
                background: rgb(120 0 0 / 10%);
            }

            .widget ol li:nth-child(2)::after {
                background: rgb(120 0 0 / 7%);
            }

            .widget ol li:nth-child(3)::after {
                background: rgb(120 0 0 / 5%);
            }

            .widget ol li a {
                color: rgb(120 0 0);
                font-size: 13px;
                line-height: 1.5;
                display: flex;
                gap: var(--gap);
                align-items: center;
                z-index: 2;
                padding: 0 var(--gap);
            }

    .widget > a.more:last-child {
        color: #fff;
        background: rgb(120 0 0);
        width: 150px;
        font-size: 12px;
        padding: 10px;
        margin: var(--gap) auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .widget:hover h3 a.more:after {
        width: 100%;
    }

    .widget:hover > a.more:last-child {
        width: 100%;
        background: rgb(120 0 0);
    }

.widgets {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

    .widgets .widget {
        width: min(350px, 100%);
        flex-grow: 1;
    }





.loadMoreContainer {
    width: 100%;
}

.loadMoreBtn {
    color: #fff;
    background: rgb(120 0 0);
    font-size: 12px;
    padding: 10px;
    margin: var(--gap) auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    cursor: pointer;
}

    .loadMoreBtn:hover {
        background: rgb(150 0 0);
    }










footer {
    background: rgb(120 0 0);
    color: #fff;
    position: relative;
    z-index: 9999;
}

    footer * {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        flex-wrap: wrap;
    }

    /*footer a {
    color: #ddd;
}
*/
    footer section {
        max-width: var(--max-width);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 15px;
    }

.footer-links ul {
    display: flex;
    gap: 20px;
}

.powered-by {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .powered-by img {
        width: 80px;
    }



