@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url("../fonts/IBMPlexSansArabic-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url("../fonts/IBMPlexSansArabic-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-color: #56a07b;
    --sec-color: #497574;
    --bg-color: #f4f4f4;
    --dark-color: #00140a;
    --text-color: #333333;
    --text-color2: #414141;
    --muted-color: #4b5563;
    --gray-color: #6b7280;
    --white-color: #ffffff;
    --line-color: #e5e7eb;
    --btn-radius: 5px;
    --font-body: "IBM Plex Sans Arabic", sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
}

button {
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg-color);
    color: var(--text-color);
    text-align: start;
    direction: rtl;
}

section,
footer {
    position: relative;
}

p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
}

li {
    display: block;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Keep media frames from stretching/squashing photos */
.media-frame,
.activist-avatar,
.founder-card .img,
.article-card .img,
.issue-card,
.banner-media,
.about-media {
    overflow: hidden;
}

.media-frame img,
.activist-avatar img,
.founder-card .img img,
.article-card .img img,
.issue-card img,
.banner-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

input,
button,
input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: none !important;
}

main {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
    margin: 0;
}

.container {
    max-width: 1139px;
}

.title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}

.title h2 {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.title h2::before {
    content: "";
    display: inline-block;
    width: 29px;
    height: 2px;
    background: var(--main-color);
    margin-inline-end: 10px;
    vertical-align: middle;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-color);
    font-size: 17px;
}

.more-link svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

.more-link-light {
    color: #9ca3af;
}

.section-more {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 46px;
    padding: 8px 20px;
    background: var(--main-color);
    color: var(--white-color);
    border: 0;
    border-radius: var(--btn-radius);
    font-size: 14px;
    font-weight: 700;
}

/* Start Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
    /* z-index: -1; */
    opacity: 0;
    transition: all 0.6s;
    background: #fff;
    visibility: hidden;
    left: -100%;
    max-width: 350px;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    padding: 0 20px 50px;
    z-index: 5;
    background: var(--white-color);
}

.mobile-menu .menu-box .menu-outer {
    padding-top: 20px;
}

.mobile-menu .close-btn {
    position: relative;
    font-size: 22px;
    color: var(--dark-color);
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
    line-height: 1;
}

.side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.side-header .logo-h {
    width: 90px;
    height: auto;
}

.side-header .logo-h img {
    width: 100%;
    /* height: auto; */
}

.mobile-menu .navigation>li {
    margin-bottom: 8px;
}

.mobile-menu .navigation>li>a {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid var(--line-color);
}

.mobile-menu .navigation>li.current-menu-item>a {
    color: var(--main-color);
}

body.mobile-menu-visible .menu-backdrop {
    z-index: 99;
    opacity: 0.7;
    visibility: visible;
}

body.mobile-menu-visible .mobile-menu {
    z-index: 100;
    opacity: 1;
    visibility: visible;
    left: 0;
}

/* Start Header | Figma 8051:1366 — padding 22/26, logo 112×143 */
header.sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--white-color);
}

header.sticky.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-med {
    padding: 15px 0 17px;
    transition: padding 0.3s ease;
}

header.sticky.active .header-med,
header.header-page.is-fixed .header-med {
    padding: 10px 0;
}

.head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

header .logo-h {
    width: 125px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

header .logo-h a {
    display: block;
    width: 100%;
    transition: width 0.3s ease;
}

header .logo-h img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center top;
}

header.sticky.active .logo-h,
header.header-page.is-fixed .logo-h {
    width: 65px;
}

/* Inner pages header: relative over the banner, then fixed on scroll */
header.header-page {
    position: relative;
    z-index: 50;
    background: var(--white-color);
}

header.header-page.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    /* flex: 1; */
    /* margin-top: 19px; */
    /* Figma: nav top 40.66 âˆ’ header top 22 */
}

.nav-inner ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28.86px;
}

.nav-inner ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.86px;
    white-space: nowrap;
}

.nav-inner ul li.current-menu-item a {
    color: var(--main-color);
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    /* margin-top: 19px; */
}

.lang-h a {
    color: #4B5563;
    font-size: 16px;
    line-height: 28.86px;
    margin-inline-end: 9px;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: clip;
    /* margin-inline-end: 9px; */
}

.search-btn svg {
    width: 24px;
    height: 24px;
    color: #374957;
    display: block;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 14vh 20px 40px;
    visibility: hidden;
    pointer-events: none;
}

.search-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 10, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-modal.is-open .search-modal-backdrop {
    opacity: 1;
}

.search-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    background: var(--white-color);
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(-28px) scale(0.96);
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-modal.is-open .search-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.search-modal.is-closing .search-modal-backdrop {
    opacity: 0;
}

.search-modal.is-closing .search-modal-dialog {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
}

.search-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-dialog h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.search-modal-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-color);
    border: 1px solid var(--line-color);
    border-radius: 10px;
    padding: 8px 8px 8px 8px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-modal-field:focus-within {
    border-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(86, 160, 123, 0.15);
}

.search-modal-field svg {
    width: 22px;
    height: 22px;
    margin-inline-start: 10px;
    flex-shrink: 0;
    color: #374957;
}

.search-modal-field input {
    flex: 1;
    min-width: 0;
    height: 46px;
    border: 0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-color);
}

.search-modal-field input::placeholder {
    color: var(--gray-color);
}

.search-modal-field .btn {
    min-width: 90px;
    height: 42px;
    flex-shrink: 0;
}

body.search-modal-open {
    overflow: hidden;
}

.mobile-nav-toggler {
    width: 42px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    border: 0;
    padding: 0;
    border-radius: 7px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.13);
    cursor: pointer;
}

.mobile-nav-toggler .lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 18px;
}

.mobile-nav-toggler .lines i {
    display: block;
    height: 2px;
    background: #111;
    border-radius: 2px;
}

/* Start Banner */
.banner-h {
    margin-top: 0;
}

.banner-block {
    /* min-height: 655px; */
    overflow: hidden;
}

.banner-media {
    position: absolute;
    inset: 0;
}

.banner-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, #000 100%);
}

.banner-text {
    position: relative;
    z-index: 2;
    /* padding: 180px 0 90px; */
    color: var(--white-color);
    max-width: 795px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white-color);
    color: var(--sec-color);
    border-radius: 26px;
    padding: 6px 18px;
    box-shadow: 0 21px 26px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 28px;
    font-weight: 500;
}

.banner-badge .badge-num {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
}

.banner-badge .badge-label {
    font-size: 13px;
    font-weight: 500;
}

.banner-heading h1,
.banner-heading h2 {
    font-size: 48.888px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 32px;
    /* text-shadow: 0 7px 3px rgba(0, 0, 0, 0.1); */
}

.banner-h .slick-dots {
    bottom: 65px;
    right: 0;
    left: 0;
    text-align: start;
    width: auto;
    max-width: 1139px;
    margin: 0 auto;
    padding: 0 15px;
}

.banner-h .slick-dots li {
    margin: 0 4px;
    width: 11px;
    height: 11px;
}

.banner-h .slick-dots li button:before {
    font-size: 11px;
    width: 11px;
    height: 11px;
    color: #D9D9D9;
    opacity: 1;
}

.banner-h .slick-dots li.slick-active button:before {
    color: #51F2A1;
}

/* Start Ticker */
.ticker-h {
    background: var(--white-color);
    border-bottom: 1px solid var(--line-color);
}

.ticker-inner {
    display: flex;
    align-items: center;
    min-height: 52px;
    overflow: hidden;
}

.ticker-label {
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 21.581px;
    padding-block: 22px;
    padding-inline-end: 24px;
    margin-inline-end: 18px;
    border-inline-end: 3px solid #F4F4F4;
    white-space: nowrap;
    line-height: 33.015px;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
}

.ticker-list {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: ticker 28s linear infinite;
}

.ticker-list a {
    color: var(--text-color2);
    font-size: 18px;
    white-space: nowrap;
    line-height: 32.403px;
    text-decoration: underline;
}

.ticker-sep {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 33px;
}

.ticker-sep .icon-ticker-flag,
.ticker-sep svg {
    display: block;
    width: 35px;
    height: 33px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

/* Start About | Figma 8052:1478 */
.about-h {
    padding: 116px 0 40px;
}

.about-card {
    background: var(--white-color);
    border: 1.1px solid #f3f4f6;
    border-radius: 8.86px;
    box-shadow: 0 1.1px 1.1px rgba(0, 0, 0, 0.05);
    padding: 36.56px;
}

.about-inner {
    display: flex;
    flex-direction: row;
    /* direction: ltr; */
    /* align-items: center; */
    gap: 35.45px;
}

.about-media-wrap {
    position: relative;
    flex: 0 0 483px;
    width: 483px;
    max-width: 42.4%;
    height: 284px;
}

.about-media {
    width: 100%;
    height: 284px;
    background: #e4e4e4;
    border-radius: 8.86px;
    box-shadow: 0 1.1px 2.2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-media img {
    width: 225px;
    height: 249px;
    object-fit: contain;
    mix-blend-mode: darken;
}

/* Figma 8052:1531 â€” Floating Cards */
.about-badge {
    position: absolute;
    right: -145px;
    bottom: 23px;
    z-index: 2;
    display: inline-flex;
    flex-direction: row;
    direction: ltr;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 25.4px;
    background: var(--white-color);
    color: #497574;
    border-radius: 39.05px;
    white-space: nowrap;
    box-shadow:
        0 31.75px 39.69px -7.94px rgba(0, 0, 0, 0.1),
        0 12.7px 15.88px -9.53px rgba(0, 0, 0, 0.1);
    animation: about-badge-float 12.5s linear both;
    min-width: 249.787px;
}

@keyframes about-badge-float {

    0%,
    28% {
        opacity: 0;
        transform: translateY(30px);
    }

    36% {
        opacity: 1;
        transform: translateY(0);
    }

    56% {
        transform: translateY(-5px);
    }

    76%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-badge .badge-num {
    margin-block: -4px;
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0.25px;
    color: #497574;
}

.about-badge .badge-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #497574;
}

.about-badge .odometer,
.about-badge .odometer-theme-default .odometer-digit {
    font-family: var(--font-body);
    font-weight: 700;
    color: #497574;
}

.about-text {
    flex: 1 1 auto;
    min-width: 0;
    /* direction: rtl; */
    /* text-align: right; */
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
}

.about-text h2 {
    color: #56a07b;
    font-size: 32.16px;
    font-weight: 700;
    line-height: 49.2px;
    max-width: 118px;
    margin: 0 0 8px;
}

.about-text p {
    color: #374151;
    font-size: 18px;
    line-height: 32.4px;
    margin: 0 0 12px;
    width: 100%;
}

.about-text .more-link {
    margin-top: 4px;
}

/* Inner page banner | Figma 8123:1066 */
.inner-banner {
    position: relative;
    height: 395px;
    overflow: hidden;
}

.inner-banner-media {
    position: absolute;
    inset: 0;
}

.inner-banner-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, #000 100%);
}

.inner-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.inner-banner-text {
    width: 100%;
    padding: 70.633px 0;
    color: var(--white-color);
}

.inner-banner-text h1 {
    font-size: 48.888px;
    font-weight: 700;
    line-height: 70.633px;
    margin: 0;
    text-shadow:
        0 7.063px 2.649px rgba(0, 0, 0, 0.1),
        0 17.658px 7.063px rgba(0, 0, 0, 0.04);
}

.inner-banner .breadcrumb {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.inner-banner .breadcrumb li:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
}

/* About page intro | Figma 8123:1085 */
.about-page .about-h {
    padding: 100px 0 0;
}

.about-page .about-inner {
    align-items: center;
}

.about-page .about-media, .about-page .about-media-wrap {
    height: 472px;
}

.about-page .about-media img {
    width: auto;
    height: auto;
    max-width: 325px;
    max-height: 360px;
}

.about-page .about-text p {
    margin-bottom: 0;
}

/* Vision / Mission / Goals | Figma 8130:1797 */
.values-h {
    padding: 100px 0;
}

.values-row {
    --bs-gutter-x: 27.918px;
    --bs-gutter-y: 27.918px;
    align-items: stretch;
}

.value-card {
    height: 100%;
    background: var(--white-color);
    border: 1.163px solid #c2eed8;
    border-radius: 13.959px;
    padding: 57px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9.306px;
}

.value-icon {
    width: 55.837px;
    height: 55.837px;
    border-radius: 50%;
    background: #edfff6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: auto;
    height: auto;
    max-width: 26px;
    max-height: 24px;
    display: block;
    flex-shrink: 0;
}

.value-card h3 {
    color: #56a07b;
    font-size: 25.592px;
    font-weight: 700;
    line-height: 34.898px;
    margin: 0;
    padding-top: 18.612px;
}

.value-card p,
.value-card ul {
    color: #4c444e;
    font-size: 18.612px;
    line-height: 32.571px;
    margin: 0;
    width: 100%;
}

.value-card ul {
    display: flex;
    flex-direction: column;
    gap: 9.306px;
}

.value-card ul li {
    position: relative;
    padding-inline-start: 22px;
}

.value-card ul li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    inset-inline-start: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4c444e;
}

/* Start Activists */
.activists-h {
    padding-block: 52px 0;
}

.activist-card {
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    gap: 16px;
    background: var(--white-color);
    border: 1px solid #f3f4f6;
    border-radius: 80px;
    padding: 15.666px;
    box-shadow: 0 1.305px 2.611px 0 rgba(0, 0, 0, 0.05);
    min-height: 97px;
}

.activist-info {
    /* text-align: end; */
}

.activist-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.activist-info p {
    font-size: 16px;
    color: var(--muted-color);
}

.activist-avatar {
    position: relative;
    width: 63px;
    height: 63px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.activist-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.activists-slider .slick-list {
    margin: 0 -10px;
}

.activists-slider .slick-slide {
    padding: 0 10px;
}

/* Activists listing page | Figma 8176:14691 */
.activists-listing {
    padding: 100px 0;
}

.activists-list {
    --bs-gutter-x: 21.02px;
    --bs-gutter-y: 32.2px;
}

.activists-list .col {
    display: flex;
}

.activists-page .activist-card {
    width: 100%;
    min-height: 97px;
    padding: 17.077px;
    gap: 15.763px;
    border: 1.314px solid #f3f4f6;
    border-radius: 999px;
    box-shadow: 0 1.314px 1.314px rgba(0, 0, 0, 0.05);
}

.activists-page .activist-avatar {
    width: 63.052px;
    height: 63.052px;
}

.activists-page .activist-info {
    min-width: 0;
    flex: 1 1 auto;
}

.activists-page .activist-info h2 {
    font-size: 18.39px;
    line-height: 26.272px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.activists-page .activist-info p {
    font-size: 15.763px;
    line-height: 21.017px;
    color: #4b5563;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activists-page .pagination-h {
    margin-top: 48px;
}

/* ثائر وثائرة listing | Figma 8159:2598 */
.thaer-listing,
.activists-listing.thaer-listing {
    padding: 100px 0;
}

.thaer-page .activists-listing {
    padding: 100px 0;
}

.thaer-grid,
.thaer-page .activists-grid {
    --bs-gutter-x: 23.91px;
    --bs-gutter-y: 32px;
}

.thaer-page .rebel-card {
    display: flex;
    flex-direction: column;
    gap: 12.064px;
    height: 100%;
    min-height: 402px;
    padding: 12.064px;
    background: var(--white-color);
    border-radius: 6.032px;
    box-shadow: 0 1.508px 1.508px rgba(0, 0, 0, 0.05);
}

.thaer-page .rebel-card .img {
    position: relative;
    width: 100%;
    height: 267.129px;
    overflow: hidden;
    border-radius: 6.032px;
    background: #f3f3f4;
}

.thaer-page .rebel-card .img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.thaer-page .rebel-card .details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.thaer-page .rebel-card .news-author {
    margin: 0;
}

.thaer-page .rebel-card .news-author .icon-user {
    width: 12.639px;
    height: 12.639px;
}

.thaer-page .rebel-card h2 {
    font-size: 18px;
    line-height: 24.128px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.thaer-page .pagination-h {
    margin-top: 53px;
}

/* Timeline | Figma 8159:3170 */
.timeline-listing {
    padding: 100px 0;
}

.timeline-track {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.timeline-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: #cfc3cf;
}

.timeline-item {
    position: relative;
    display: flex;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-card {
    width: 408.33px;
    max-width: calc(50% - 24px);
    background: #f9f9f9;
    border: 1px solid #cfc3cf;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: start;
}

.timeline-year {
    display: inline-block;
    background: #e2e2e2;
    color: #4c444e;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 4px 8px;
    border-radius: 4px;
}

.timeline-card h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: #1a1c1c;
    margin: 0;
    padding-top: 8px;
}

.timeline-card p {
    font-size: 16px;
    line-height: 28px;
    color: #4c444e;
    margin: 0;
}

.timeline-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border-radius: 50%;
    background: #cacaca;
    border: 4px solid #56a07b;
    box-shadow: 0 0 0 4px #f9f9f9;
    z-index: 1;
    transition: background .35s, border-color .35s;
}

/* Achievements | Figma 8160:3945 */
.achievements-metrics {
    padding: 93px 0 40px;
}

.achievements-metrics-row {
    --bs-gutter-x: 27.918px;
    --bs-gutter-y: 27.918px;
}

.achieve-metric {
    background: #f9f9f9;
    border: 1.163px solid #cfc3cf;
    border-radius: 9.306px;
    box-shadow: 0 1.163px 1.163px rgba(0, 0, 0, 0.05);
    padding: 29.081px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.653px;
}

.achieve-metric .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    color: #56a07b;
}

.achieve-metric .icon svg {
    display: block;
    width: auto;
    height: auto;
    max-height: 40px;
}

.achieve-metric .num {
    color: #56a07b;
    font-size: 18.612px;
    font-weight: 400;
    line-height: 27.918px;
    padding-top: 4.653px;
}

.achieve-metric p {
    color: #4c444e;
    font-size: 18.612px;
    font-weight: 700;
    line-height: 27.918px;
    margin: 0;
}

.achievements-logo {
    padding-bottom: 93px;
}

.achievements-logo-box {
    background: #dfdfdf;
    border-radius: 13.959px;
    height: 582px;
    overflow: hidden;
    box-shadow: 0 1.163px 2.327px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements-logo-box img {
    width: 476px;
    max-width: 42%;
    height: auto;
    max-height: 526px;
    object-fit: contain;
    mix-blend-mode: darken;
}

.achievements-milestones {
    padding-bottom: 93px;
}

.achievements-milestones .milestones-title {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 27.918px;
}

.achievements-milestones .milestones-title h2 {
    color: #1a1c1c;
    font-size: 25px;
    font-weight: 700;
    line-height: 27.918px;
    margin: 0;
    padding-bottom: 10.469px;
    border-bottom: 1.163px solid #000;
}

.achievements-milestones-row {
    --bs-gutter-x: 55.837px;
    --bs-gutter-y: 55.837px;
}

.milestone-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18.612px;
    background: #fff;
    border-inline-start: 4.653px solid #56a07b;
    border-start-end-radius: 9.306px;
    border-end-end-radius: 9.306px;
    padding-block: 18.612px;
    padding-inline-start: 23.265px;
    padding-inline-end: 18.612px;
    min-height: 163px;
    height: 100%;
}

.milestone-card .milestone-icon {
    flex-shrink: 0;
    padding-top: 4.653px;
    color: #56a07b;
}

.milestone-card .milestone-icon svg {
    display: block;
    width: auto;
    height: auto;
}

.milestone-card .milestone-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.653px;
    min-width: 0;
    text-align: start;
}

.milestone-card .milestone-date {
    color: #56a07b;
    font-size: 18.612px;
    font-weight: 400;
    line-height: 27.918px;
}

.milestone-card h3 {
    color: #1a1c1c;
    font-size: 18.612px;
    font-weight: 400;
    line-height: 27.918px;
    margin: 0;
}

.milestone-card p {
    color: #4c444e;
    font-size: 18.612px;
    font-weight: 400;
    line-height: 27.918px;
    margin: 0;
    padding-top: 4.653px;
}

/* Official statements | Figma 8162:4347 */
.official-feed {
    padding: 100px 0 0;
}

.official-feed-row {
    --bs-gutter-x: 27.918px;
    --bs-gutter-y: 27.918px;
}

.official-side {
    display: flex;
    flex-direction: column;
    gap: 27.918px;
    height: 100%;
}

.statement-featured,
.statement-card {
    background: #fff;
    border: 1.163px solid #cfc3cf;
    border-radius: 9.306px;
    padding: 29.081px;
    height: 100%;
}

.statement-featured {
    border-color: #c0c0c0;
    min-height: 577px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.statement-featured-body {
    display: flex;
    flex-direction: column;
    gap: 18.612px;
    padding-bottom: 27.918px;
}

.statement-featured-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.statement-badge {
    background: #0e4b2c;
    color: #88ceab;
    font-size: 16.286px;
    font-weight: 700;
    line-height: 23.265px;
    padding: 4.653px 18.612px;
    border-radius: 11631px;
}

.statement-date {
    display: inline-flex;
    align-items: center;
    gap: 4.653px;
    color: #858e97;
    font-size: 13.959px;
    font-weight: 400;
    line-height: 20.939px;
}

.statement-date svg {
    display: block;
    flex-shrink: 0;
}

.statement-featured h2 {
    color: #1a1c1c;
    font-size: 41.878px;
    font-weight: 700;
    line-height: 51.184px;
    margin: 0;
}

.statement-featured p {
    color: #4c444e;
    font-size: 20.939px;
    font-weight: 400;
    line-height: 37.224px;
    margin: 0;
}

.statement-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 9.294px;
    color: #56a07b;
    font-size: 16.286px;
    font-weight: 700;
    line-height: 23.265px;
    border-top: 1.163px solid #cfc3cf;
    padding-top: 30.245px;
    width: 100%;
}

.statement-doc-link svg {
    flex-shrink: 0;
}

.statement-card .statement-date {
    margin-bottom: 9.306px;
}

.statement-card h3 {
    color: #1a1c1c;
    font-size: 25.592px;
    font-weight: 700;
    line-height: 34.898px;
    margin: 0 0 9.306px;
}

.statement-card p {
    color: #4c444e;
    font-size: 18.612px;
    font-weight: 400;
    line-height: 32.571px;
    margin: 0 0 18.612px;
}

.statement-more {
    display: inline-flex;
    align-items: center;
    gap: 4.653px;
    color: #56a07b;
    font-size: 16.286px;
    font-weight: 700;
    line-height: 23.265px;
}

.statement-more svg {
    flex-shrink: 0;
}

.official-archive {
    padding-top: 55.837px;
    padding-bottom: 100px;
}

.official-archive h2 {
    color: #1a1c1c;
    font-size: 32.571px;
    font-weight: 700;
    line-height: 41.878px;
    margin: 0 0 27.918px;
    padding-bottom: 10.469px;
    border-bottom: 1.163px solid #cfc3cf;
}

.official-archive-item {
    display: flex;
    align-items: center;
    gap: 18.612px;
    padding: 27.918px 0 29.081px;
    border-bottom: 1.163px solid #cfc3cf;
}

.official-archive-item time {
    flex: 0 0 149px;
    color: #858e97;
    font-size: 16.286px;
    font-weight: 700;
    line-height: 23.265px;
}

.official-archive-item h3 {
    flex: 1 1 auto;
    min-width: 0;
    color: #1a1c1c;
    font-size: 25.592px;
    font-weight: 700;
    line-height: 34.898px;
    margin: 0;
}

.official-download {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10.469px 19.775px;
    border: 1.163px solid #56a07b;
    border-radius: 4.653px;
    color: #56a07b;
    font-size: 16.286px;
    font-weight: 700;
    line-height: 23.265px;
    text-align: center;
}

.official-page .pagination-h {
    margin-top: 55.837px;
}

/* Contact | Figma 8162:4925 */
.contact-section {
    padding: 100px 0;
}

.contact-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.contact-form-card,
.contact-info-card {
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    height: 100%;
}

.contact-form-card {
    padding: 56px 28px 40px;
}

.contact-form-card h2 {
    color: #282727;
    font-size: 33.618px;
    font-weight: 700;
    line-height: 47.065px;
    margin: 0 0 34px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1.16px solid #d4d4d4;
    border-radius: 34.64px;
    background: #fff;
    color: #1a1c1c;
    font-size: 18.565px;
    font-weight: 400;
    line-height: 1.4;
    padding: 12.763px 19.725px;
    text-align: right;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6b7280;
}

.contact-form textarea {
    min-height: 147px;
    height: 147px;
    resize: vertical;
    border-radius: 34.64px;
}

.contact-page .btn.contact-submit {
    align-self: flex-start;
    width: 246.72px;
    min-width: 246.72px;
    height: 51.85px;
    padding: 13.924px 18.565px;
    border-radius: 44.64px;
    font-size: 16.245px;
    line-height: 23.207px;
    font-weight: 700;
    box-shadow: none !important;
}

.contact-info-card {
    padding: 51px 28px 28px;
    height: auto;
}

.contact-info-card h2 {
    color: #000;
    font-size: 32.568px;
    font-weight: 400;
    line-height: 45.604px;
    letter-spacing: -0.6514px;
    margin: 0 0 35px;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-list li,
.contact-info-list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    color: #000;
    font-size: 17.37px;
    font-weight: 400;
    line-height: 45.604px;
    letter-spacing: -0.3474px;
}

.contact-info-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #56a07b;
    font-size: 17.37px;
    line-height: 1;
}

.contact-info-icon i {
    font-size: inherit;
}

.contact-map {
    margin-top: 33px;
    height: 188px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

/* Privacy | Figma 8163:5397 */
.privacy-section {
    padding: 77px 0 100px;
}

.privacy-card {
    display: flex;
    flex-direction: column;
    gap: 34px;
    /* padding: 48px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); */
}

.privacy-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    /* max-width: 709px; */
}

.privacy-block:last-child {
    padding-bottom: 0;
}

.privacy-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #56a07b;
}

.privacy-head-icon svg {
    display: block;
}

.privacy-head h2 {
    margin: 0;
    color: #56a07b;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
}

.privacy-block > p {
    color: #454d49;
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
    max-width: 709px;
}

.privacy-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background: #cfc3cf;
}

.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-inline-start: 16px;
}

.privacy-list li {
    color: #454d49;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.privacy-list strong {
    font-weight: 700;
}

.privacy-rights-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.privacy-right-box {
    height: 100%;
    padding: 37px 27px;
    background: #f3f3f4;
    border: 1px solid #cfc3cf;
    border-radius: 4px;
}

.privacy-right-box h3 {
    margin: 0 0 14px;
    color: #1a1c1c;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

.privacy-right-box p {
    color: #454d49;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.privacy-mail {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 8px 24px;
    background: #56a07b;
    color: #96dfbb;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.privacy-mail-icon {
    display: flex;
    align-items: center;
    color: #96dfbb;
}

.privacy-mail-icon svg {
    display: block;
}

/* Copyright | Figma 8163:6059 */
.copyright-section {
    padding: 100px 0;
}

.copyright-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.copyright-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 709px;
}

.copyright-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright-head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #56a07b;
}

.copyright-head-icon svg {
    display: block;
}

.copyright-head h2 {
    margin: 0;
    color: #1a1c1c;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
}

.copyright-block > p {
    color: #46514b;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.copyright-divider {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid #e0e0e0;
}

.copyright-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-inline-start: 23px;
}

.copyright-list li {
    display: list-item;
    list-style: disc;
    color: #46514b;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* FAQ | Figma 8163:6516 */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18.758px;
}

.faq-accordion .accordion-item {
    margin: 0;
    background: #fff;
    border: 1.172px solid #e2e2e2;
    border-radius: 14.068px;
    overflow: hidden;
}

.faq-accordion .accordion-item:not(:first-of-type) {
    border-top: 1.172px solid #e2e2e2;
}

.faq-accordion .accordion-item.is-open:not(:first-of-type) {
    border-top-color: #cfc3cf;
}

.faq-accordion .accordion-item.is-open {
    border-color: #cfc3cf;
    box-shadow: 0 1.172px 2.345px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    cursor: pointer;
    padding: 23.447px 28.137px;
    background: #fff;
    color: #1a1c1c;
    font-size: 25.792px;
    font-weight: 700;
    line-height: 35.171px;
    text-align: right;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #1a1c1c;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    width: 26.068px;
    height: 15.676px;
    margin: 0;
    margin-inline-start: auto;
    background-size: 26.068px 15.676px;
}

.faq-accordion .accordion-item:first-of-type .accordion-button {
    border-radius: 14.068px;
}

.faq-accordion .accordion-item:first-of-type .accordion-button:not(.collapsed) {
    border-radius: 14.068px 14.068px 0 0;
}

.faq-accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 14.068px;
}

.faq-accordion .accordion-body {
    padding: 19.93px 28.137px 28.137px;
    background: #f9f9f9;
    border-top: 1.172px solid #f3f3f4;
    color: #4c444e;
    font-size: 18.758px;
    font-weight: 400;
    line-height: 32.826px;
}

/* Archive page | Figma 8131:2157 */
.archive-listing {
    padding: 100px 0;
}

.archive-layout {
    --bs-gutter-x: 56px;
    --bs-gutter-y: 32px;
}

.archive-filter {
    border-inline-start: 1.163px solid #cfc3cf;
    padding-inline-start: 29.081px;
}

.archive-filter h2 {
    display: inline-block;
    font-size: 25px;
    line-height: 1.4;
    font-weight: 700;
    color: #000;
    margin: 0 0 9.306px;
    padding-bottom: 5.816px;
    border-bottom: 1.163px solid #000;
}

.archive-filter ul {
    display: flex;
    flex-direction: column;
    gap: 4.653px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.archive-filter a {
    display: block;
    padding: 4.653px 9.306px;
    border-radius: 4.653px;
    font-size: 18.612px;
    line-height: 32.571px;
    color: #4c444e;
}

.archive-filter a.is-active {
    background: #f3f3f4;
    color: #220034;
    font-weight: 700;
}

.archive-items {
    display: flex;
    flex-direction: column;
    gap: 27.918px;
}

.archive-item {
    display: flex;
    align-items: flex-start;
    gap: 27.918px;
    padding: 18.612px 18.612px 29.081px;
    border-bottom: 1.163px solid #e2e2e2;
    border-radius: 9.306px;
}

.archive-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.archive-meta {
    font-size: 13.959px;
    line-height: 20.939px;
    letter-spacing: 0.698px;
    color: #5c5f60;
    margin: 0 0 9.306px;
}

.archive-item-body h2 {
    font-size: 25.592px;
    line-height: 31.99px;
    font-weight: 700;
    color: #1a1c1c;
    margin: 0 0 9.306px;
}

.archive-item-body p:last-child {
    font-size: 18.612px;
    line-height: 32.571px;
    color: #4c444e;
    margin: 0;
}

.archive-item-media {
    position: relative;
    width: 279.184px;
    height: 186.122px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4.653px;
    background: #eee;
}

.archive-item-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.archive-page .pagination-h {
    margin-top: 48px;
}

/* News listing | Figma 8148:816 */
.news-listing {
    padding: 100px 0;
}

.news-layout {
    --bs-gutter-x: 27.848px;
    --bs-gutter-y: 40px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 55.696px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 27.848px;
    padding-bottom: 29.008px;
    border-bottom: 1.16px solid #e2e2e2;
}

.news-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.news-item-meta {
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    gap: 4.641px;
    margin-bottom: 9.283px;
    font-size: 13.924px;
    line-height: 20.886px;
    color: #4c444e;
}

.news-cat {
    background: #f3f3f4;
    color: #1a1c1c;
    border-radius: 4.641px;
    padding: 4.641px 9.283px;
    padding-inline-start: 0;
}

.category-page .news-cat {
    padding: 4.641px 9.283px;
}

.news-item-body h2 {
    font-size: 25.528px;
    line-height: 34.81px;
    font-weight: 700;
    color: #1a1c1c;
    margin: 0 0 9.283px;
    transition: color .4s;
}

.news-item.is-lead .news-item-body h2 {
    font-size: 32.49px;
    line-height: 41.772px;
}

.news-item-body p {
    font-size: 18.565px;
    line-height: 32.49px;
    color: #4c444e;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-media {
    width: 288.38px;
    height: 186px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4.641px;
    background: #eee;
}

.news-item-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-page .pagination-h,
.category-page .pagination-h {
    margin-top: 48px;
}

.news-sidebar {
    background: var(--white-color);
    border: 1.16px solid #cfc3cf;
    border-radius: 4.641px;
    padding: 29.008px;
    display: flex;
    flex-direction: column;
    gap: 55.696px;
}

.widget-search h2,
.widget-cats h2 {
    font-size: 25.528px;
    line-height: 34.81px;
    font-weight: 700;
    color: #1a1c1c;
    margin: 0 0 18.565px;
}

.widget-cats h2 {
    padding-bottom: 10.443px;
    border-bottom: 1.16px solid #e2e2e2;
}

.widget-search form {
    position: relative;
}

.widget-search input {
    width: 100%;
    background: #f9f9f9;
    border: 1.16px solid #cfc3cf;
    border-radius: 4.641px;
    padding: 17.405px 19.725px;
    padding-inline-end: 48px;
    font-size: 18.565px;
    color: #1a1c1c;
}

.widget-search input::placeholder {
    color: #6b7280;
}

.widget-search .icon-search {
    position: absolute;
    top: 50%;
    inset-inline-end: 17.41px;
    transform: translateY(-50%);
    color: #6b7280;
    /* pointer-events: none; */
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
}

.widget-cats ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13.924px;
}

.widget-cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18.565px;
    line-height: 32.49px;
    color: #1a1c1c;
}

.widget-cats b {
    font-weight: 400;
    font-size: 13.924px;
    line-height: 20.886px;
    background: #f3f3f4;
    border-radius: 4.641px;
    padding: 4.641px 9.283px;
}

/* Archive single | Figma 8147:106 */
.article-single {
    padding: 100px 0 93px;
}

.article-layout {
    --bs-gutter-x: 27.918px;
    --bs-gutter-y: 40px;
}

.article-canvas {
    display: flex;
    flex-direction: column;
    gap: 27.918px;
}

.article-head {
    border-bottom: 1.163px solid #cfc3cf;
    padding-bottom: 19.775px;
    display: flex;
    flex-direction: column;
    gap: 9.306px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 9.306px;
    font-size: 13.959px;
    line-height: 20.939px;
    color: #4c444e;
}

.article-cat {
    background: #f3f3f4;
    color: #1a1c1c;
    border-radius: 4.653px;
    padding: 4.653px 9.306px;
}

.article-head h2 {
    font-size: 37.224px;
    line-height: 46.531px;
    font-weight: 700;
    color: #1a1c1c;
    margin: 0;
    padding-top: 9.306px;
}

.article-lead {
    font-size: 25.592px;
    line-height: 34.898px;
    font-weight: 700;
    color: #4c444e;
    margin: 0;
}

.article-figure {
    margin: 0;
    padding-top: 27.918px;
}

.article-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f3f3f4;
}

.article-figure figcaption {
    margin-top: 9.306px;
    font-size: 13.959px;
    line-height: 20.939px;
    color: #4c444e;
    text-align: center;
}

.article-body {
    display: flex;
    flex-direction: column;
    gap: 18.612px;
}

.article-body p {
    font-size: 20.939px;
    line-height: 37.224px;
    color: #1a1c1c;
    margin: 0;
}

.article-body h3 {
    font-size: 32.571px;
    line-height: 41.878px;
    font-weight: 700;
    color: #1a1c1c;
    margin: 0;
}

.article-quote {
    background: #f3f3f4;
    border: 0;
    border-inline-start: 4.653px solid var(--main-color);
    padding: 9.306px 0;
    padding-inline-start: 23.265px;
    margin: 0;
}

.article-quote p {
    color: var(--main-color);
    font-size: 25.592px;
    line-height: 34.898px;
    font-weight: 700;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18.612px;
    border-top: 1.163px solid #cfc3cf;
    padding-top: 19.775px;
    background: transparent;
}

.article-tags span {
    font-size: 16.286px;
    line-height: 23.265px;
    font-weight: 700;
    color: #1a1c1c;
}

.article-tags a {
    background: #f3f3f4;
    border-radius: 4.653px;
    padding: 4.653px 18.612px;
    font-size: 16.286px;
    line-height: 23.265px;
    font-weight: 700;
    color: #1a1c1c;
}

.article-sidebar {
    border-inline-start: 1.163px solid #cfc3cf;
    padding-inline-start: 29.081px;
    display: flex;
    flex-direction: column;
    gap: 55.837px;
}

.widget-read {
    background: var(--white-color);
    border: 1.163px solid #ccc;
    border-radius: 10.64px;
    padding: 39.773px 29.773px;
}

.widget-read h2 {
    font-size: 25.592px;
    line-height: 34.898px;
    font-weight: 700;
    color: #000;
    margin: 0 0 18.612px;
    padding-bottom: 11.633px;
    border-bottom: 2.327px solid #000;
    display: inline-block;
}

.widget-read ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18.612px;
}

.widget-read li:not(:last-child) {
    border-bottom: 1.163px solid #cfc3cf;
    padding-bottom: 19.775px;
}

.widget-read a {
    display: flex;
    flex-direction: column;
    gap: 4.653px;
}

.widget-read span {
    font-size: 13.959px;
    line-height: 20.939px;
    color: #000;
}

.widget-read strong {
    font-size: 18.612px;
    line-height: 32.571px;
    font-weight: 400;
    color: #1a1c1c;
    transition: all .4s;
}

.widget-news {
    border: 1.16px solid #cfc3cf;
    border-radius: 10.64px;
    padding: 56.856px 29.008px;
    text-align: center;
}

.news-page .widget-news,
.category-page .widget-news {
    background: #f4f4f4;
    border: 0;
    border-radius: 14.64px;
    padding: 55.696px 27.848px;
}

.widget-news-icon {
    display: block;
    margin: 0 auto 9.283px;
}

.widget-news h2 {
    font-size: 25.528px;
    line-height: 34.81px;
    font-weight: 700;
    color: #1a1c1c;
    margin: 9.283px 0 0;
}

.widget-news p {
    font-size: 18.565px;
    line-height: 32.49px;
    color: #4c444e;
    margin: 9.283px 0 0;
}

.widget-news form {
    display: flex;
    flex-direction: column;
    gap: 18.565px;
    margin-top: 18.565px;
}

.widget-news input {
    width: 100%;
    border: 1.16px solid #d4d4d4;
    border-radius: 34.64px;
    background: var(--white-color);
    padding: 12.763px 19.725px;
    font-size: 18.565px;
    color: #1a1c1c;
    text-align: right;
}

.widget-news input::placeholder {
    color: #6b7280;
}

.widget-news button {
    width: 100%;
    border: 0;
    background: var(--main-color);
    color: var(--white-color);
    border-radius: 44.64px;
    padding: 13.924px 18.565px;
    font-size: 16.245px;
    line-height: 23.207px;
    font-weight: 700;
}

.archive-single-page .inner-banner-text h1 {
    max-width: 795px;
}

/* News single | Figma 8166:6859 */
.news-single {
    padding: 100px 0 93.061px;
}

.news-single-page .inner-banner-text h1 {
    max-width: 795px;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    font-size: 14.429px;
    line-height: 19.239px;
    color: #6b7280;
}

.news-author .icon-user {
    flex-shrink: 0;
}

/* Video gallery | Figma 8159:1904 */
.video-listing {
    padding: 100px 0;
}

.video-grid {
    --bs-gutter-x: 27.82px;
    --bs-gutter-y: 32.28px;
}

.video-card {
    position: relative;
    display: block;
    height: 259.621px;
    overflow: hidden;
    border-radius: 4.636px;
    background: #f3f3f4;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.fancybox-container {
    z-index: 10000;
}

.fancybox-video-wrap {
    position: relative;
    width: min(960px, 100%);
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    margin: 0 auto;
}

.fancybox-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-play {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background: rgba(86, 160, 123, 0.81);
    border: 2.318px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 11.59px 17.385px -3.477px rgba(0, 0, 0, 0.1), 0 4.636px 6.954px -4.636px rgba(0, 0, 0, 0.1);
    transition: transform .4s, background .4s;
}

html[dir="rtl"] .video-play svg {
    /* transform: scaleX(-1); */
}

.video-duration {
    position: absolute;
    bottom: 9.1px;
    inset-inline-start: 9.18px;
    background: rgba(9, 18, 25, 0.9);
    color: var(--white-color);
    font-size: 11.59px;
    line-height: 17.385px;
    padding: 4.636px 9.272px;
    border-radius: 4.636px;
}

.photos-page .pagination-h {
    margin-top: 100px;
}

/* Photo gallery | Figma 8152:1304 */
.photo-listing {
    padding: 100px 0;
}

.photo-grid {
    --bs-gutter-x: 18.61px;
    --bs-gutter-y: 36.51px;
}

.photo-card {
    position: relative;
    display: block;
    height: 290.816px;
    overflow: hidden;
    border-radius: 4.653px;
    background: #f3f3f4;
    cursor: pointer;
}

.photo-card img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.00) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}

.photo-zoom {
    width: 49.032px;
    height: 47.836px;
    border-radius: 50%;
    background: rgba(217, 217, 217, 0.17);
    border: 1px solid #fff;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-zoom img {
    width: 19px;
    height: 19px;
    max-width: none;
    object-fit: contain;
    display: block;
}

.video-page .pagination-h {
    margin-top: 74px;
}

/* Start Articles */
.articles-h {
    padding: 33px 0 50px;
}

.article-card {
    display: block;
    background: var(--white-color);
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 1.508px 3.016px 0 rgba(0, 0, 0, 0.05);
    height: 100%;
}

.article-card .img {
    position: relative;
    width: 100%;
    height: 267px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 12px;
}

.article-card .img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.article-card .details {
    /* text-align: end; */
}

.article-date {
    display: block;
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 6px;
    display: inline-block;
    /* line-height: 19px; */
}

.article-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-color);
}

.articles-cards>[class*="col-"] {
    /* margin-bottom: 20px; */
}

/* Start Issues */
.issues-h {
    background: var(--dark-color);
    padding-block: 100px;
}

.issues-h .title h2 {
    color: var(--white-color);
}

.issues-h .title h2::after {
    background: var(--white-color);
}

.issues-wrap {
    position: relative;
    /* padding: 0 56px; */
}

.issues-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.issues-arrow svg {
    width: 29px;
    height: 29px;
    color: var(--white-color);
    display: block;
    transform: scaleX(-1);
}

.issues-prev {
    right: -70px;
}

.issues-next {
    left: -70px;
}

.issue-card {
    display: block;
    position: relative;
    width: 100%;
    height: 360.732px;
    border-radius: 10px;
    overflow: hidden;
}

.issue-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
    transition: all .4s;
}

.issue-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 19px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.issue-overlay h3 {
    color: var(--white-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.issues-slider .slick-list {
    margin: 0 -10px;
}

.issues-slider .slick-slide {
    padding: 0 10px;
}

.issues-slider .slick-arrow {
    display: none !important;
}

/* Start Founders */
.founders-h {
    padding-block: 114px 141px;
}

.founder-card {
    display: block;
    background: var(--white-color);
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 1.202px 2.405px 0 rgba(0, 0, 0, 0.05);
    /* text-align: center; */
}

.founder-card .img {
    position: relative;
    width: 100%;
    aspect-ratio: 194 / 154;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
}

.founder-card .img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-card .img.is-wide img {
    inset: auto;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%) scaleX(0.62);
    transform-origin: center center;
}

.founder-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    min-height: 39px;
    align-content: center;
}

.founders-cards {
    --bs-gutter-x: 20px;
}

/* Start Stats */
.stats-h {
    background: var(--line-color);
    padding: 50px 0;
}

.stats-row {
    align-items: center;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stats-row > [class*="col-"]:not(:last-child) .stat-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 73px;
    background: #c9cdd3;
    transform: translateY(-50%);
}

.stat-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #030303;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    direction: ltr;
}

.stat-item p {
    color: #4f4d4d;
    font-size: 26px;
    margin-top: 6px;
    line-height: 39px;
}

.odometer {
    font-family: var(--font-body);
    font-weight: 700;
}

.odometer-theme-default .odometer-digit {
    color: #030303;
}

/* Start Footer */
footer {
    background: var(--dark-color);
    color: var(--white-color);
}

.footer-top {
    padding: 58px 0 70px;
}

.foot-brand .logo-h {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
}

.foot-brand .logo-h img {
    width: 100%;
    height: auto;
}

.s-h {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s-h a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 14px;
}

.foot-block h3 {
    font-size: 19px;
    font-weight: 700;
    padding-bottom: 11px;
    margin-bottom: 20px;
    border-bottom: 1px solid #374151;
    line-height: 28.859px;
}

.foot-links li {
    margin-bottom: 10px;
}

.foot-links a {
    color: var(--white-color);
    font-size: 17px;
    display: inline-block;
    line-height: 24.049px;
}

.info-f .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--white-color);
    font-size: 18px;
}

.info-f .item a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
}

.info-f .icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white-color);
}

.info-f .icon svg {
    width: 16px;
    height: 18px;
    color: var(--white-color);
    display: block;
}

.info-f .icon .icon-web {
    width: 15px;
    height: 13px;
}

.footer-bottom {
    border-top: 1.202px solid #022B16;
    /* padding: 16px 0 24px; */
}

.copy-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    justify-content: center;
    padding: 22px 0;
}

.copy-right p {
    font-size: 17px;
}

.copy-logo {
    width: 90px;
    display: block;
}

.copy-logo img {
    width: 90px;
    height: 35px;
    object-fit: contain;
}

.icons-fixed {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 40;
}

.upTop {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.upTop.active {
    display: flex;
}

.banner-slider {
    margin: 0 !important;
}

.banner-block .row {
    align-items: center;
    -webkit-align-items: center;
    min-height: 655px;
}

.activists-h .section-more {
    margin-top: 38px;
}

.articles-h .title {
    margin-bottom: 20px;
}

.issues-h .title {
    margin-bottom: 38px;
}

.issues-h .title h2::before {
    background: #fff;
}

.issues-h .section-more {
    margin-top: 38px;
}

.founders-h .title {
    margin-bottom: 20px;
}

/* Founders listing page | Figma 8131:1837 */
.founders-page .founders-h {
    padding: 100px 0 70px;
}

.founders-list {
    --bs-gutter-x: 19.239px;
    --bs-gutter-y: 32px;
}

.founders-list .col {
    display: flex;
}

.founders-page .founder-card {
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 9.62px;
    border-radius: 4.81px;
    box-shadow: 0 1.202px 1.202px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 9.62px;
}

.founders-page .founder-card .img {
    margin-bottom: 0;
    border-radius: 4.81px;
}

.founders-page .founder-card h2 {
    font-size: 14.429px;
    font-weight: 700;
    line-height: 19.239px;
    color: #333;
    min-height: 39px;
    margin: 0;
    padding: 0 10px;
}

.pagination-h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18.612px;
    margin-top: 74px;
}

.pagination-h a,
.pagination-h .page-arrow {
    width: 46.531px;
    height: 46.531px;
    border: 1.163px solid #cfc3cf;
    border-radius: 4.653px;
    color: #1a1c1c;
    font-size: 18.612px;
    line-height: 27.918px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pagination-h a.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}

.pagination-h .page-arrow.is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.pagination-h .page-dots {
    color: #4c444e;
    font-size: 18.612px;
    line-height: 27.918px;
}

.footer-bottom .row {
    align-items: center;
    -webkit-align-items: center;
}

/* Founder single | Figma 8175:14161 */
.founder-single {
    padding: 100px 0;
}

.founder-single-row {
    --bs-gutter-x: 55.802px;
    --bs-gutter-y: 32px;
    align-items: flex-start;
}

.founder-portrait {
    background: #e2e2e2;
    border-radius: 12.33px;
    overflow: hidden;
    border: 1.163px solid rgba(207, 195, 207, 0.3);
    height: 589.514px;
}

.founder-portrait img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 18%;
    filter: grayscale(1);
    display: block;
}

.founder-bio-head {
    border-bottom: 1.163px solid #cfc3cf;
    padding-bottom: 19.764px;
    margin-bottom: 55.802px;
}

.founder-bio-head .founder-name {
    color: var(--main-color);
    font-size: 18.601px;
    line-height: 27.901px;
    font-weight: 700;
    margin: 0 0 4.65px;
}

.founder-bio-head h2 {
    color: #4c444e;
    font-size: 25.576px;
    line-height: 34.876px;
    font-weight: 700;
    margin: 0;
}

.founder-bio p {
    font-size: 20.926px;
    line-height: 34.004px;
    color: #1a1c1c;
    margin: 0 0 18.601px;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-bio p.is-muted {
    color: #4c444e;
}

.founder-quote,
.founder-bio blockquote {
    background: rgba(226, 226, 226, 0.2);
    border: 0;
    border-inline-end: 4.65px solid var(--main-color);
    border-start-start-radius: 9.3px;
    border-end-start-radius: 9.3px;
    padding-block: 18.601px;
    padding-inline-start: 18.601px;
    padding-inline-end: 32.551px;
    margin: 0 0 18.601px;
}

.founder-quote p,
.founder-bio blockquote p {
    color: var(--main-color);
    font-size: 25.576px;
    line-height: 34.876px;
    font-weight: 700;
    margin: 0;
}

.ryad-logo {
    float: left;
}

.timeline-item:nth-child(even) .timeline-card p {
    text-align: left;
}

.tnp-subscription input[type=email] {
    width: 100% !important;
    border: 1.16px solid #d4d4d4 !important;
    border-radius: 34.64px !important;
    background: var(--white-color) !important;
    padding: 12.763px 19.725px !important;
    font-size: 18.565px !important;
    color: #1a1c1c !important;
    text-align: right !important;
}

.tnp-subscription div.tnp-field label {
    display: none;
}

.tnp-field input[type="submit"] {
    width: 100% !important;
    border: 0 !important;
    background: var(--main-color) !important;
    color: var(--white-color) !important;
    border-radius: 44.64px !important;
    padding: 13.924px 18.565px !important;
    font-size: 16.245px !important;
    line-height: 23.207px !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all .4s;
}

.tnp-subscription div.tnp-field {
    margin: 0 !important;
}

.timeline-item:nth-child(even) .timeline-card {
    align-items: flex-end;
}

form {
    direction: rtl;
}

.thaer-page .activists-listing article {
    height: calc(100% - 20px);
    margin: 10px 0;
}

.thaer-page .activists-listing article .rebel-card {
    height: 100%;
}

.copyright-block ul {
    padding-inline-start: 20px;
}

.copyright-block ul li {
    display: list-item;
    list-style: inherit;
    color: #46514b;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 5px 0;
}

/* Hovers â€” desktop only */
@media (min-width: 991px) {
    .more-link:hover {
        color: var(--main-color);
    }

    .more-link-light:hover {
        color: var(--white-color);
    }

    .btn:hover {
        background: var(--sec-color);
        color: var(--white-color);
    }

    .privacy-mail:hover {
        background: var(--sec-color);
        color: #96dfbb;
    }

    .faq-accordion .accordion-button:hover {
        color: var(--main-color);
    }

    .mobile-menu .navigation>li>a:hover {
        color: var(--main-color);
    }

    .nav-inner ul li a:hover {
        color: var(--main-color);
    }

    .lang-h a:hover {
        color: var(--main-color);
    }

    .search-modal-close:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

    .ticker-list a:hover {
        color: var(--main-color);
    }

    .s-h a:hover {
        background: var(--main-color);
        border-color: var(--main-color);
    }

    .foot-links a:hover {
        color: var(--main-color);
    }

    .inner-banner .breadcrumb a:hover {
        color: var(--main-color);
    }

    .value-card:hover {
        box-shadow: 0 8px 24px rgba(86, 160, 123, 0.12);
        border-color: var(--main-color);
    }

    .founders-page .founder-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .activists-page .activist-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border-color: var(--main-color);
    }

    .thaer-page .rebel-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .thaer-page .rebel-card:hover h2 {
        color: var(--main-color);
    }

    .timeline-item:hover .timeline-year {
        background: #0f5230;
        color: #83c9a6;
    }

    .timeline-item:hover .timeline-card h2 {
        color: #56a07b;
    }

    .timeline-item:hover .timeline-node {
        background: #56a07b;
        border-color: #f9f9f9;
    }

    .statement-featured:hover,
    .statement-card:hover {
        box-shadow: 0 8px 24px rgba(86, 160, 123, 0.12);
    }

    .official-download:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

    .archive-filter a:hover {
        color: #220034;
    }

    .archive-item:hover .archive-item-body h2 {
        color: var(--main-color);
    }

    .article-tags a:hover {
        background: var(--main-color);
        color: var(--white-color);
    }

    .widget-read a:hover strong {
        color: var(--main-color);
    }

    .widget-news button:hover {
        background: var(--sec-color);
    }

    .news-item:hover h2 {
        color: var(--main-color);
    }

    .video-card:hover .video-play {
        transform: scale(1.06);
        background: rgba(86, 160, 123, 1);
    }

    .photo-card:hover .photo-overlay {
        opacity: .8;
    }

    .widget-cats a:hover {
        color: var(--main-color);
    }

    .pagination-h a:hover:not(.active) {
        border-color: var(--main-color);
        color: var(--main-color);
    }

    .issue-card:hover img {
        opacity: 1;
    }

    .search-mobile,
    .mobile-menu .lang-h {
        display: none;
    }
    
    .issues-arrow:hover {
        background: var(--main-color);
    }
    
    .info-f .item a:hover, .info-f .item:hover, .info-f .item a:hover .icon {
        color: var(--main-color);
    }
    
    .info-f .item a:hover .icon path, .info-f .item:hover .icon path {
        fill: var(--main-color);
    }
    
    .info-f .item .icon path, .info-f .item .icon {
        transition: all .4s;
    }

    .tnp-field input[type="submit"]:hover {
        background: var(--sec-color) !important;
        color: var(--white-color) !important;
    }
    
    .only-mobile {
    display: none;
}

.mobile-menu {
    width: 100%;
    max-width: 100%;
    padding: 100px !important;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

body.mobile-menu-visible .mobile-menu {
}

body.mobile-menu-visible {
    overflow: hidden;
}

.only-desktop .row {
    align-items: center;
    -webkit-align-items: center;
}

.mobile-menu .menu-box {
    position: relative;
    overflow: visible;
    padding: 0;
}

.side-header {
    display: block;
    text-align: center;
}

.side-header .logo-h {
    width: 327.99px;
}

.side-header button.close-btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 42.161px;
    height: 45.49px;
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.13);
    margin: -50px;
}

.mobile-menu .menu-box .menu-outer {
    padding: 0;
    overflow: hidden;
    overflow-y: auto;
}

.side-navbar ul {
    display: flex;
    flex-wrap: wrap;
}

.side-navbar ul li {
    display: list-item;
    list-style: initial;
    width: 50%;
}

.mobile-menu .navigation>li a {
    border: none;
    color: #000;
    margin: 2.5px 0;
    font-size: 28.185px;
    font-weight: 400;
    line-height: 42.364px; /* 150.305% */
}

.statement-doc-link:hover {
    color: #000;
}
}