:root {
    writing-mode: horizontal-tb;
    /* الاتجاه الأفقي الافتراضي */
    direction: rtl;
    /* النص يقرأ من اليسار لليمين */
    text-orientation: mixed;
    /* النصوص أفقية في الوضع الأفقي */
    --main-color: white;
    --second-color: #5754A3;
    --third-color: var(--second-color);
    --fourth-color: #5A70A2;
    --fifth-color: #C79C6F;
    /* ألوان الوضع الفاتح */
    --bg-color: #F2F2F2;
    --text-color: #000000;
    --button-bg-color: #f0f0f0;
    --button-text-color: #000000;
    --sub-color: #333333;
    --date-color: #777777;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri-LightItalic.eot');
    src: local('Calibri Light Italic'), local('Calibri-LightItalic'),
        url('../fonts/Calibri-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Calibri-LightItalic.woff2') format('woff2'),
        url('../fonts/Calibri-LightItalic.woff') format('woff'),
        url('../fonts/Calibri-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri-Italic.eot');
    src: local('Calibri Italic'), local('Calibri-Italic'),
        url('../fonts/Calibri-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Calibri-Italic.woff2') format('woff2'),
        url('../fonts/Calibri-Italic.woff') format('woff'),
        url('../fonts/Calibri-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Calibri-Light';
    src: url('../fonts/Calibri-Light.eot');
    src: local('Calibri Light'), local('Calibri-Light'),
        url('../fonts/Calibri-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Calibri-Light.woff2') format('woff2'),
        url('../fonts/Calibri-Light.woff') format('woff'),
        url('../fonts/Calibri-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri-Bold.eot');
    src: local('Calibri Bold'), local('Calibri-Bold'),
        url('../fonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Calibri-Bold.woff2') format('woff2'),
        url('../fonts/Calibri-Bold.woff') format('woff'),
        url('../fonts/Calibri-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri.eot');
    src: local('Calibri'),
        url('../fonts/Calibri.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Calibri.woff2') format('woff2'),
        url('../fonts/Calibri.woff') format('woff'),
        url('../fonts/Calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri-BoldItalic.eot');
    src: local('Calibri Bold Italic'), local('Calibri-BoldItalic'),
        url('../fonts/Calibri-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Calibri-BoldItalic.woff2') format('woff2'),
        url('../fonts/Calibri-BoldItalic.woff') format('woff'),
        url('../fonts/Calibri-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'CodecProBold';
    src: url('../fonts/CodecPro-Bold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'CodecProRegular';
    src: url('../fonts/CodecPro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'CodecProExtraBold';
    src: url('../fonts/CodecPro-ExtraBold.ttf') format('truetype');
}

body.dark-mode {
    /* ألوان الوضع الداكن */
    --bg-color: #121212;
    --text-color: #ffffff;
    --button-bg-color: #333333;
    --button-text-color: #ffffff;
}

body {
    background-color: var(--bg-color);
    direction: rtl;
    margin: 0;
    font-family: 'CodecProRegular';
    min-height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

/* start header */
header {
    background: white;
    font-family: 'CodecProBold';
    position: relative;
    z-index: 9999;
    transition: 0.6s;
    display: inline-flex;
    width: 100%;
    align-items: baseline;
}

header form {
    position: relative;
}

.header-container {
    transition: box-shadow 0.3s ease-in-out;
}

/* الظل يظهر عند التمرير */
.header-container.scrolled {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.20);
}


/* الشاشات المتوسطة */
@media (min-width: 575px) and (max-width: 767px) {
    .logo {
        width: 120px;
        height: auto;
    }
}


.togg {
    z-index: 99999 !important;
    color: var(--second-color);
    position: relative;
}

header .toggle-menu {
    font-size: 20px;
    cursor: pointer;
    z-index: 99999999 !important;
    position: relative;
}

header ul li .left-arrow {
    display: none;
}

header ul li .left-arrow2 {
    display: none;
}

@media (min-width: 1420px) {
    header .toggle-menu {
        display: none;
    }
}

header ul {
    list-style: none;
    display: flex;
    padding-right: 0;
    margin-bottom: 0;
    margin-top: 36px;
    margin-right: 22px;
}

header ul.aside-ul {
    list-style: none;
    display: flex;
    padding-right: 0;
    margin-bottom: 0;
    margin-right: 22px;
    margin-top: 0;
}

@media (max-width: 1421px) {
    header {
        height: 80px;
    }

    header ul {
        display: none;

    }

    header .togg {
        position: absolute;
        left: 0;
        top: 27px;
    }

    header .search-header.tab {
        display: none !important;
    }

    header .aside .search-header.phone {
        display: block !important;
    }

    header ul li {
        margin-bottom: 10px;
        color: white !important;
    }

    header ul li a {
        color: white !important;
    }

    header ul li:first-of-type {
        margin-top: 10px;
    }

    header ul li a.active,
    header ul li a:hover {
        color: white !important;
        border-radius: 8px !important;
    }

    header ul .base-li .ul {
        display: flex;
        flex-direction: column;
        background-color: #333;
        list-style: none;
        padding: 8px 3px;
        transition: 0.3s;
        display: none;
        position: absolute;
        top: 0px !important;
        right: 135px !important;
        width: 170px !important;
        z-index: 100;
        border-radius: 8px;
    }

    header ul .base-li .ul li {
        margin-bottom: 10px;
    }

    header ul .base-li .ul li a {
        text-decoration: none;
        color: white;
        font-size: 10px;
    }

    header ul .base-li .ul::before {
        display: none;
    }
}

header ul li {
    margin-right: 40px;
}



header ul li a {
    text-decoration: none;
    color: var(--fourth-color);
    font-size: 20px;
    transition: 0.4s;
}

header ul .base-li {
    transition: 0.3s;
    position: relative;
    height: 35px;
}

@media (max-width: 790px) {
    header ul .base-li {
        height: 19px;
        width: 300px;
    }
}

header ul .base-li:hover .ul {
    display: block;
}

header .nested-list {
    height: 0px;
    overflow: hidden;
}

header ul .base-li .ul {
    display: flex;
    flex-direction: column;
    background-color: white;
    list-style: none;
    padding: 8px 5px 5px 0;
    transition: 0.3s;
    margin-top: 15px;
    display: none;
    position: absolute;
    top: 10px;
    right: -23px;
    z-index: 100;
    border-left: 1px solid rgba(128, 128, 128, 0.545);
    border-right: 1px solid rgba(128, 128, 128, 0.545);
    border-bottom: 1px solid rgba(128, 128, 128, 0.545);
    cursor: pointer;
    font-family: 'CodecProRegular' !important;
}

header ul .base-li .ul li {
    margin-right: -5px;
    margin-top: -8px;
    transition: 0.3s;
    max-width: 131px;
    min-width: 131px;
    box-sizing: border-box;

}

header ul .base-li .ul li:hover {
    background-color: #E6E7E8;
    border-top: 1px solid rgba(128, 128, 128, 0.545);
}

header ul .base-li .ul li {
    padding-bottom: 8px;
    margin-bottom: 7px;
    box-sizing: border-box;
    display: block;
    margin-left: 0;
    border-top: 1px solid rgba(128, 128, 128, 0.545);
}

header ul .base-li .ul li:last-child {
    margin-bottom: -6px;
}

header ul .base-li .ul li a {
    text-decoration: none;
    color: var(--second-color);
    font-size: 15px;
    max-width: 131px;
    min-width: 131px;
    display: block !important;
    padding-top: 6px;
    padding-right: 6px;
    font-family: 'CodecProRegular' !important;
    font-weight: normal;
    box-sizing: border-box;
}

header ul li a.active,
header ul li a:hover {
    box-sizing: border-box;
    color: var(--fifth-color);
}


header a i {
    position: relative;
    right: 97px;
    color: green;
    font-size: 16px;
    top: 6px;
}

@media (min-width: 788px) and (max-width: 960px) {
    header ul li a {
        font-size: 12px;
    }
}

@media (min-width: 1270px) and (max-width: 1317px) {
    header ul li a {
        font-size: 14px !important;
    }
}

header img {
    cursor: pointer;
    position: relative;
    z-index: 1;
}

@media (max-width: 574px) {
    header img {
        width: 130px;
        /* عرض الشعار */
        height: auto;
        /* الحفاظ على النسب */
        margin-top: 4px;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
    }

    header .toggle-menu {
        font-size: 24px;
        margin-left: 13px;
    }

}

/* الشاشات المتوسطة */
@media (min-width: 575px) and (max-width: 1420px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
    }

    header .toggle-menu {
        margin-top: 4px;
    }

}

@media (min-width: 1050px) {

    header ul li {
        margin-right: 18px;
    }
}

@media (min-width: 860px) {

    header ul li {
        margin-right: 10px;
    }
}

@media (min-width: 575px) {
    header img {
        width: 130px;
        height: auto;
    }

    header ul li a {
        font-size: 10px;
    }

    header ul li {
        margin-left: 15px;
    }

    .aside-base-li::before {
        width: 2px !important;
        height: 2px !important;
        left: -2px;
    }
}


/* الشاشات المتوسطة */
@media (min-width: 575px) and (max-width: 767px) {
    header ul li {
        margin-right: 25px;
    }
}

@media (min-width: 1270px) {

    header ul li a {
        font-size: 14px;
    }
}

@media (min-width: 990px) {
    header img {
        width: 110px;
        height: auto;
        margin-top: 1px;
    }
}

@media (min-width: 992px) {
    header img {
        width: 150px;
        height: auto;
        margin-top: 11px;
    }
}

.above-header {
    background-color: var(--fourth-color);
    color: white;
    font-family: 'Calibri';
    font-size: 20px;
}

.container {
    width: 80%;
    margin: auto;
}

.social-above-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-above-header #toggleMode {
    font-family: 'Calibri';
    background-color: transparent;
    color: var(--button-text-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-sizing: border-box;
}

.social-above-header #toggleMode img {
    max-width: 100%;
    min-width: 100%;
    max-height: 100%;
    min-height: 100%;
    display: block;
}

.social-above-header a i {
    display: inline-block;
    color: white !important;
    margin-right: 8px;
}

@media (max-width: 574px) {
    .above-header {
        font-size: 12px;
        padding: 3px 0;
    }

    .social-above-header {
        margin: 9px 0 4px;
    }

    .social-above-header a i {
        margin-left: 8px;
        font-size: 17px;
        margin-top: 1px;
    }

    .social-above-header #toggleMode {
        font-size: 12px;
        width: 25px;
        height: 22x;
        margin-right: 10px;
        padding-left: 0;
        margin-left: -3px;
    }

    .social-above-header #toggleMode img {
        display: block;
        width: 20px;
        height: 22px;
    }
}


@media (min-width: 575px) {
    .above-header {
        font-size: 14px;
        padding: 7px 0;
    }


    .social-above-header a i {
        margin-left: 4px;
        font-size: 14px;
    }

    .social-above-header #toggleMode {
        font-size: 13px;
        width: 23px;
        height: 17px;
        margin-right: 10px;
    }

    .social-above-header #toggleMode img {
        max-width: 23px;
        min-width: 23px;
        max-height: 17px;
        min-height: 17px;
    }
}

@media (min-width: 768px) {
    .above-header {
        font-size: 16px;
        padding: 10px 0;
    }

    .social-above-header a i {
        margin-right: 10px;
        font-size: 18px;
        margin-top: 2px;
    }

    .social-above-header #toggleMode {
        font-size: 14px;
        width: 25px;
        height: 20px;
    }

    .social-above-header #toggleMode img {
        max-width: 25px;
        min-width: 25px;
        max-height: 20px;
        min-height: 20px;
    }
}

@media (min-width: 992px) {
    .social-above-header #toggleMode {
        font-size: 14px;
        width: 26px;
        height: 20px;
        margin-right: 25px;
    }

    .social-above-header #toggleMode img {
        max-width: 26px;
        max-height: 20px;
    }
}

/* end header */

/* start text info */
.text-info {
    margin: 30px 0;
    box-shadow: 1px 1px 10px silver;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: translateY(400px);
    visibility: hidden;
    transition: 1s;
}

@media (max-width: 574px) {
    .text-info {
        width: 90% !important;
        flex-direction: column;
        font-size: 14px;
        padding: 20px;
        box-sizing: border-box;
    }
}

@media (min-width: 575px) {
    .text-info {
        flex-direction: column;
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .text-info {
        flex-direction: row;
        font-size: 23px;
    }
}

@media (min-width: 992px) {
    .text-info {
        flex-direction: row;
        font-size: 30px;
    }
}

.text-info img {
    width: 180px;
    height: 180px;
}


@media (max-width: 574px) {
    .text-info img {
        width: 130px;
        height: 130px;
    }
}

@media (min-width: 575px) {
    .text-info img {
        width: 130px;
        height: 130px;
    }
}

@media (min-width: 768px) {
    .text-info img {
        width: 145px;
        height: 145px;
    }
}

@media (min-width: 992px) {
    .text-info img {
        width: 160px;
        height: 160px;
    }
}

.text-info p {
    margin-right: 40px;
    font-size: 23px;
    text-align: justify;
    line-height: 1.6;
    font-family: 'Calibri';
}

@media (max-width: 574px) {
    .text-info p {
        font-size: 13px !important;
        margin-right: 10px;
    }
}

@media (min-width: 575px) {
    .text-info p {
        font-size: 16px !important;
        margin-right: 20px;
    }
}

@media (min-width: 768px) {
    .text-info p {
        font-size: 23px !important;
    }
}

@media (min-width: 992px) {
    .text-info p {
        font-size: 25px !important;
    }
}

.text-info .text {
    width: 80%;
    margin: auto;
}

/* end text info */

/* start show imgs */
.show-i {
    box-shadow: 1px 1px 10px silver;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: 0.3s;
    padding-top: 20px;
    padding-bottom: 10px;
    margin: 20px 0;
}


.spe-h1 {
    color: #5E6F9C;
    font-family: 'CodecProExtraBold';
}

.show-i a {
    text-decoration: none;
    color: var(--second-color);
    display: block;
    width: calc(33.3% - 6px);
}

.show-i .card {
    border-radius: 12px;
    background-color: #ccddbb3d;
    position: relative;
    transition: 5s;
}

.show-i .card:hover {
    background-color: white;
    box-shadow: 1px 1px 10px white;
}

.show-i .card .image-card {
    width: 100%;
    position: relative;
}

.show-i .card .image-card img {
    width: 100%;
}



.show-i .card p {
    margin-top: 0;
    font-size: 18px;
    font-family: 'Calibri';
    width: 100%;
    height: 99%;
    position: absolute;
    top: 0;
    left: 0;
    background: #C79C6F63;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding-left: 0;
    text-align: center;
    color: white;
    transform: translateY(25px);
    transition: 0.6s;
}


.show-i .card button {
    position: absolute;
    bottom: -9px;
    left: 50%;
    border: none;
    outline: none;
    color: white;
    font-style: italic;
    background-color: blue;
    width: 52px;
    height: 28px;
    font-size: 21px;
    cursor: pointer;
    margin-left: -26px;
    border-radius: 5px;
    /* padding: 5px; */
}

.show-i .card i {
    margin: 20px;
    font-size: 30px;
    color: #0000ffcc;
}

@media (max-width: 574px) {
    .show-i a {
        width: calc(100% - 80px);
        margin-bottom: 20px;
    }

    .show-i .card .image-card img {
        height: 150px;
        max-height: 150px;
    }

    .show-i .card p {
        font-size: 18px;
    }

    .show-i .card span {
        font-size: 18px;
        margin-right: -5px;
    }

    .show-i .card i {
        margin: 20px;
        font-size: 18px;
        color: #0000ffcc;
    }
}

@media (min-width: 575px) {
    .show-i a {
        width: calc(100% - 75px);
        margin-bottom: 20px;
    }

    .show-i .card p {
        font-size: 20px;
    }

    .show-i .card .image-card img {
        height: 210px;
        max-height: 210px;
    }

    .show-i .card span {
        font-size: 18px;
        margin-right: -5px;
    }

    .show-i .card i {
        margin: 20px;
        font-size: 18px;
        color: #0000ffcc;
    }
}

@media (min-width: 768px) {
    .show-i a {
        width: calc(50% - 15px);
        margin-bottom: 25px;
    }

    .show-i .card .image-card img {
        height: 180px;
        max-height: 180px;
    }

    .show-i .card p {
        font-size: 22px;
    }

}

@media (min-width: 992px) {
    .show-i a {
        width: calc(33.3% - 18px);
        margin-bottom: 30px;
    }

    .show-i .card .image-card img {
        height: 212px;
        max-height: 212px;
    }

    .show-i .card p {
        font-size: 22px;
    }
}

/* end show imgs */

/* start about */
.points {
    margin: 30px 0;
    border-radius: 15px;
    /* margin: 20px auto; */
    box-shadow: 1px 1px 10px silver;
    display: flex;
    padding: 30px;
    font-family: 'Calibri';
    font-size: 18px;
    position: relative;
}

.points img {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.points h2 {
    margin-top: 12px;
    font-family: 'CodecProBold';
}

@media (max-width: 574px) {
    .points {
        width: calc(100%);
        flex-direction: column;
        box-sizing: border-box;
    }

    .points img {
        width: 240px;
        height: 240px;
    }

    .points h2 {
        margin-top: 5px;
        margin-bottom: -7px;
        font-size: 16px;
    }
}

@media (min-width: 575px) {
    .points {
        flex-direction: column;
    }

    .points img {
        width: 250px;
        height: 250px;
    }

    .points h2 {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .points {
        flex-direction: row;
    }

    .points img {
        width: 300px;
        height: 300px;
    }

    .points h2 {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .points {
        flex-direction: row;
    }

    .points h2 {
        margin-top: 5px;
        margin-bottom: -7px;
        font-size: 22px;
    }

    .points img {
        width: 350px;
        height: 350px;
    }

}

.points .left {
    margin-left: 40px;
    position: relative;
}

.points .left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: black;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .points .left::before {
        width: 0;
    }
}

.points .right .text1 h2 {
    margin-top: 30px;
}

.points .right ul {
    list-style: none;
    padding-right: 20px;
    margin-top: 30px;
    text-align: justify;
    font-family: 'Calibri';
}

.points .right ul li {
    margin-bottom: 10px;
    padding-right: 15px;
    position: relative;
    line-height: 1.6;
}

.points .right ul li::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: 0;
    top: 3px;
    border-style: solid;
    border-color: transparent var(--second-color) transparent transparent;
    border-width: 7px;
}

@media (max-width: 574px) {
    .points .right ul li::before {
        top: 7px;
        border-width: 6px;
    }
}

@media (min-width: 575px) {
    .points .right ul li::before {
        top: 8px;
        border-width: 6px;
    }
}

@media (min-width: 768px) {
    .points .right ul li::before {
        top: 7px;
        border-width: 7px;
    }
}

@media (min-width: 992px) {
    .points .right ul li::before {
        top: 8px;
    }
}

.points .txt1 p {
    line-height: 1.6;
    font-family: 'Calibri';

}

.points .txt1 ol {
    font-size: 20px;
    font-family: 'Calibri';
}



.work {
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 1px 1px 10px silver;
    font-family: 'Calibri';
    font-size: 20px;
    position: relative;
    box-sizing: border-box;
}

.work img {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.p-work {
    font-size: 25px;
}

.work ul {
    list-style: none;
    font-family: 'Calibri';
}

.work ul li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 15px;
    line-height: 1.6;
}

.work ul li::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    /* border-radius: 50%; */
    /* background-color: tomato; */
    margin-top: 5px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent var(--second-color) transparent transparent;
}

.work h2 {
    font-size: 20px;
    font-family: 'CodecProBold';
}

@media (max-width: 574px) {
    .points .txt1 p {
        font-size: 14px !important;
        margin-bottom: 0;
    }

    .points .txt1 ol {
        font-size: 14px !important;
        padding-right: 24px;
    }

    .points .right ul {
        font-size: 14px !important;
        padding-right: 0px;
    }

    .p-work {
        font-size: 14px;
    }

    .work ul {
        font-size: 14px !important;
        padding-right: 0px;
    }

    .work ul li::before {
        top: 8px;
        border-width: 6px;
        margin-top: -2px;
    }

    .work img {
        width: 250px;
        height: 250px;
    }
}

@media (min-width: 575px) {
    .points .txt1 p {
        font-size: 15px !important;
    }

    .points .txt1 ol {
        font-size: 15px !important;
        padding-right: 24px;
    }

    .points .right ul {
        font-size: 15px !important;
    }

    .p-work {
        font-size: 15px;
    }

    .work ul {
        font-size: 15px !important;
        padding-right: 26px;
    }

    .work ul li::before {
        top: 2px;
        border-width: 6px;
    }

    .work img {
        width: 250px;
        height: 250px;
    }
}

@media (min-width: 768px) {
    .points .txt1 p {
        font-size: 16px !important;
    }

    .points .txt1 ol {
        font-size: 16px !important;

    }

    .points .right ul {
        font-size: 15px !important;
        padding-right: 8px;
    }

    .p-work {
        font-size: 16px;
    }

    .work ul {
        font-size: 16px !important;
        padding-right: 7px;

    }

    .work ul li::before {
        top: 2px;
        border-width: 7px;
    }

    .work img {
        width: 300px;
        height: 300px;
    }
}

@media (min-width: 992px) {
    .points .txt1 ol {
        font-size: 18px !important;
        padding-right: 26px;
    }

    .p-work {
        font-size: 18px;
    }

    .work ul {
        font-size: 18px !important;

    }

    .points .right ul {
        font-size: 18px !important;
    }

    .points .txt1 p {
        font-size: 18px !important;
    }

    .work ul li::before {
        top: 8px;
        border-width: 7px;
        margin-top: -1px;
    }

    .work img {
        width: 350px;
        height: 350px;
    }
}

/* end about */

/* start comments */
.comments {
    background-color: white;
    box-shadow: 1px 1px 10px silver;
    width: 84%;
    margin: 20px auto;
    overflow: hidden;
}

.info {
    background-color: white;
    padding: 10px 30px;
    font-size: 25px;
    border-bottom: 2px solid rgb(75 72 72 / 24%);
    margin-bottom: 20px;
    border-radius: 40px;
}

.comments .info .img-text {
    display: flex;
    justify-content: start;
    margin: 20px 0;
    align-items: center;
    padding: 20px;
}

.info .img-text img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.info .img-text span {
    margin-right: 10px;
}

.info .name {
    color: #333;
    margin-right: 25px;
    display: inline-block;
}

.info .date {
    border: 2px solid brown;
    padding: 5px;
    border-radius: 12px;
}

.info p {
    font-family: 'Adobe Arabic';
    color: #333;
    font-weight: 500;
}

.info a {
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.info a:hover {
    padding: 5px;
    background-color: blue;
    color: white;
    font-style: italic;
    border-radius: 8px;
    display: block;
    width: fit-content;
}

@media (max-width: 574px) {
    .info .name {
        font-size: 17px;
    }

    .info .date {
        font-size: 15px;
    }

    .info p {
        font-size: 17px;
    }
}

@media (min-width: 575px) {
    .info .name {
        font-size: 17px;
    }

    .info .date {
        font-size: 15px;
    }

    .info p {
        font-size: 17px;
    }
}

@media (min-width: 768px) {
    .info .name {
        font-size: 25px;
    }

    .info .date {
        font-size: 25px;
    }

    .info p {
        font-size: 25px;
    }
}

@media (min-width: 992px) {
    .info .name {
        font-size: 30px;
    }

    .info .date {
        font-size: 30px;
    }

    .info p {
        font-size: 30px;
    }
}

.comments .contact {
    /* padding-right: 20px; */
    padding: 20px;
}

.comments .contact span {
    color: red;
}

.comments .contact .fields {
    position: relative;
}

.comments .contact .fields textarea {
    display: block;
    width: 91%;
}

.comments .contact .fields input[type="text"],
.comments .contact .fields input[type="email"] {
    width: calc(30% - 6px);
    margin-top: 30px;
    height: 30px;
}

.comments .contact .fields .check {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 574px) {

    .comments .contact .fields input[type="text"],
    .comments .contact .fields input[type="email"] {
        display: block;
        width: 60%;
        margin-bottom: 10px;
    }

    .comments .contact .fields span {
        display: none;
    }
}

@media (min-width: 575px) {

    .comments .contact .fields input[type="text"],
    .comments .contact .fields input[type="email"] {
        display: block;
        width: 60%;
        margin-bottom: 10px;
    }

    .comments .contact .fields span {
        display: none;
    }
}

@media (min-width: 768px) {

    .comments .contact .fields input[type="text"] {
        display: inline;
        width: 50%;
    }

    .comments .contact .fields input[type="email"] {
        width: 50%;
    }
}



/* .comments .contact .fields input[type="submit"] {
    background-color: blue;
    border-radius: 12px;
    font-style: italic;
    border: none;
    color: white;
    font-size: 25px;
    padding: 8px 5px;
    cursor: pointer;
} */

.comments .contact .fields .all {
    position: absolute;
    bottom: 2px;
    left: 20px;
    padding: 20px;
}

/* end comments */

/* start signin */
.signin {
    width: 50%;
    margin: 70px auto;
    padding: 40px;
    box-shadow: 1px 1px 10px silver;
    text-align: center;
    /* height: 300px; */
}

@media (max-width: 574px) {
    .signin h4 {
        font-size: 10px;
    }
}

@media (min-width: 575px) {
    .signin h4 {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .signin h4 {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .signin h4 {
        font-size: 20px;
    }
}

.signin input[type='text'],
.signin input[type='password'] {
    display: block;
    width: 90%;
    margin: auto;
    border-radius: 12px;
    border: 2px solid #333;
    outline: none;
    margin-top: 30px;
    height: 30px;
    padding-right: 20px;
}

@media (max-width: 574px) {

    .signin input[type='text'],
    .signin input[type='password'] {
        width: 90%;
    }
}

@media (min-width: 575px) {

    .signin input[type='text'],
    .signin input[type='password'] {
        width: 90%;
    }
}

@media (min-width: 768px) {

    .signin input[type='text'],
    .signin input[type='password'] {
        width: 60%;
        margin-right: 0;
    }
}

@media (min-width: 992px) {

    .signin input[type='text'],
    .signin input[type='password'] {
        width: 70%;
        margin-right: 0;
    }
}


.f {
    display: flex;
    justify-content: start;
    margin-top: 20px;
    margin-right: 20px;
}

.f .special-check {
    margin-left: 10px;
}

.signin input[type='submit'] {
    margin-top: 30px;
    color: white;
    border-radius: 12px;
    padding: 10px 6px;
    font-size: 30px;
    font-family: 'Calibri';
    outline: none;
    cursor: pointer;
    background-color: var(--second-color);
    transition: 0.3s;
    border: none;
    outline: none;
}

.signin input[type='submit']:hover {
    background-color: var(--fourth-color);
}

@media (max-width: 574px) {
    .signin input[type='submit'] {
        margin-top: 8px;
        border-radius: 8px;
        font-size: 16px;
    }
}

@media (min-width: 575px) {
    .signin input[type='submit'] {
        margin-top: 2px;
        border-radius: 8px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .signin input[type='submit'] {
        margin-top: 5px;
        border-radius: 8px;
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .signin input[type='submit'] {
        margin-top: 20px;
        border-radius: 8px;
        font-size: 22px;
    }
}

.spe-button {
    margin-top: 25px;
    color: white;
    border-radius: 12px;
    padding: 8px 15px;
    font-size: 25px;
    outline: none;
    cursor: pointer;
    background-color: var(--second-color);
    position: relative;
    z-index: 200;
    transition: 0.3s;
    font-family: 'Calibri';
}

.spe-button:hover {
    background-color: var(--fourth-color);
}

/* end signin */

/* start signup */
.signup {
    width: 50%;
    margin: 70px auto;
    padding: 40px;
    box-shadow: 1px 1px 10px silver;
    text-align: center;
    /* height: 481px; */
}

.signup input[type='text'],
.signup input[type='email'],
.signup input[type='password'] {
    display: block;
    width: 90%;
    margin: auto;
    border-radius: 12px;
    border: 2px solid #333;
    outline: none;
    margin-top: 30px;
    height: 30px;
    padding-right: 20px;
}

@media (max-width: 574px) {

    .signup input[type='text'],
    .signup input[type='email'],
    .signup input[type='password'] {
        height: 30px;
        width: 90%;
    }
}

@media (min-width: 575px) {

    .signup input[type='text'],
    .signup input[type='email'],
    .signup input[type='password'] {
        height: 30px;
        width: 90%;
    }
}

@media (min-width: 768px) {

    .signup input[type='text'],
    .signup input[type='email'],
    .signup input[type='password'] {
        height: 30px;
        width: 60%;
    }
}

@media (min-width: 992px) {

    .signup input[type='text'],
    .signup input[type='email'],
    .signup input[type='password'] {
        height: 30px;
        width: 70%;
    }
}


.signup input[type='submit'] {
    margin-top: 30px;
    color: white;
    border-radius: 12px;
    padding: 10px 6px;
    font-size: 30px;
    font-family: 'Calibri';
    outline: none;
    cursor: pointer;
    background-color: var(--second-color);
    transition: 0.3s;
    border: none;
    outline: none;
}

.signup input[type='submit']:hover {
    background-color: var(--fourth-color);
}

@media (max-width: 574px) {
    .signup input[type='submit'] {
        margin-top: 8px;
        border-radius: 8px;
        font-size: 16px;
    }
}

@media (min-width: 575px) {
    .signup input[type='submit'] {
        margin-top: 5px;
        border-radius: 8px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .signup input[type='submit'] {
        margin-top: 15px;
        border-radius: 8px;
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .signup input[type='submit'] {
        margin-top: 20px;
        border-radius: 8px;
        font-size: 22px;
    }
}

/* end signup */

/* start footer */
footer {
    background-color: black;
    font-size: 20px !important;
    font-family: 'CodecProRegular';
}

footer .footer-information {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: white;
    padding: 50px 10px 10px;
}


footer .footer-information .first-text p {
    text-align: justify;
    line-height: 1.6;
    transition: 0.3s;
    box-sizing: border-box;
    font-size: 15px;
    color: #ffffffa6 !important;
}


footer .footer-information .first-text p span {
    color: white;
}

footer .footer-information .first-text p.first-p {
    margin-bottom: -14px !important;
}

footer .footer-information .contact-and-links {
    display: flex;

}

footer .footer-information .contact-and-links .links {
    display: flex;
}

footer .footer-information .contact-and-links .links ul {
    list-style: none;
    padding-right: 0;
    line-height: 2;
}


footer .footer-information .contact-and-links .links ul li a {
    text-decoration: none;
    color: white;
    line-height: 1.6;
    transition: 0.3s;
}

footer .footer-information .contact-and-links .links ul li a:hover {
    color: white;
}


footer .footer-information .footer-social {
    font-size: 10px;
}

footer .footer-information .footer-social img {
    width: 160px;
    height: 130px;
    display: block;
    margin-bottom: 50px;
}

footer .footer-information .footer-social2 {
    display: flex;
    justify-content: center;
}

footer .footer-information .footer-social div {
    margin-right: 3px;
}

footer .footer-information .footer-social div i {
    color: #ffffffa6 !important;
    padding: 2px;
    background-color: black;
    border-radius: 50%;
    font-size: 15px;
}

footer hr {
    color: gray;
    opacity: 0.5;
}

footer .final-p {
    text-align: center;
    color: #ffffffa6;
    font-size: 15px;
    margin-top: 10px;
    line-height: 0.6;
}

@media (max-width: 630px) {
    footer .footer-information {
        flex-direction: column;
        padding: 50px 10px 10px;
    }

    footer .footer-information .first-text p.first-p {
        margin-bottom: -6px !important;
    }

    footer .footer-information .first-text p {
        font-size: 14px;
        width: 500px;

    }

    footer .final-p {
        font-size: 11px;
    }
}

@media (max-width: 574px) {
    footer {
        font-size: 14px !important;
    }

    footer hr {
        display: none;
    }

    footer .footer-information .first-text p {
        font-size: 13px;
        width: 100%;
    }

    footer .footer-information .contact-and-links .links ul {
        font-size: 14px;
    }

    footer .footer-information .footer-social {
        margin: 0 auto;
    }

    footer .footer-information .footer-social img {
        width: 190px;
        height: auto;
        margin: 8px auto 14px;
    }

    footer .footer-information .footer-social div i {
        font-size: 12px;
        margin-left: 8px;
    }

    footer .final-p {
        font-size: 11px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid gray;
        width: fit-content;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 575px) {
    footer {
        font-size: 14px !important;
    }

    footer .footer-information .first-text p {
        font-size: 12px;
        width: 249px;
    }

    footer .footer-information .contact-and-links .links ul {
        font-size: 12px;
        line-height: 1.6 !important;
    }

    footer .footer-information .footer-social img {
        width: 160px;
        height: auto;
        margin: 19px auto 14px;
    }

    footer .footer-information .footer-social div i {
        font-size: 13px;
    }

    footer .final-p {
        font-size: 12px;
    }

    footer .footer-information .first-text p.first-p {
        margin-bottom: -9px !important;
    }
}

@media (min-width: 768px) {
    footer {
        font-size: 16px !important;
    }

    footer .footer-information .first-text p {
        font-size: 12px;
        width: 300px;
    }

    footer .footer-information .contact-and-links .links ul {
        font-size: 13px;
        line-height: 1.8;
    }

    footer .footer-information .footer-social img {
        width: 190px;
        height: auto;
        margin-bottom: 14px;
        margin-top: 13px;
        margin: 14px auto;
    }

    footer .footer-information .footer-social div i {
        font-size: 14px;
        margin-left: 3px;
    }

    footer .final-p {
        font-size: 13px;
    }

    footer .footer-information .first-text p.first-p {
        margin-bottom: -9px !important;
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    footer {
        font-size: 15px !important;
    }

    footer .footer-information .first-text p {
        font-size: 14px;
        width: 366px;
    }

    footer .footer-information .contact-and-links .links ul {
        font-size: 14px;
        line-height: 2;
    }

    footer .footer-information .footer-social img {
        width: 220px;
        height: auto;
        margin: 20px auto;
    }

    footer .final-p {
        font-size: 14px;
    }

    footer .footer-information .footer-social div i {
        font-size: 17px;
        margin-left: 11px;
    }

    footer .footer-information .first-text p.first-p {
        margin-bottom: -9px !important;
        font-size: 18px;
    }
}

/* end footer */

/* start alerts */
.alert-success,
.alert-error,
.alert-info {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 20px;
}

.alert-error {
    background-color: var(--fifth-color);
}

.alert-info {
    background-color: rgb(231, 167, 47);
}

@media (max-width: 574px) {

    .alert-success,
    .alert-error,
    .alert-info {
        font-size: 13px !important;
        margin-bottom: 5px !important;
    }

}

@media (min-width: 575px) {

    .alert-success,
    .alert-error,
    .alert-info {
        font-size: 13px !important;
        margin-bottom: 5px !important;
    }
}

@media (min-width: 768px) {

    .alert-success,
    .alert-error,
    .alert-info {
        font-size: 18px !important;
        margin-bottom: 7px !important;
    }
}

@media (min-width: 992px) {

    .alert-success,
    .alert-error,
    .alert-info {
        font-size: 23px !important;
        margin-bottom: 10px !important;
    }
}

/* end alerts */

.ta {
    resize: none !important;
}

.logout {
    color: red;
}

/* start table */
table {
    width: 90%;
    border-spacing: 1px;
    margin: 40px auto;
}

table td {
    padding: 15px;
    border: 1px solid #333;
}

table tr {
    transition: 0.3s;
}

table thead td {
    font-weight: bold;
    text-align: center;
    border-color: honeydew;
    background-color: #0000ff99;
}

/* end table */

.accept {
    text-decoration: none;
    color: white;
    font-weight: bold;
    background-color: #0000ff99;
    padding: 10px 5px;
    border-radius: 12px;
}

.spe-a {
    text-decoration: none;
    color: white;
    background-color: #333;
    font-style: italic;
    margin-right: 30px;
    border-radius: 12px;
    padding: 5px 10px;
    display: inline-block;
    transition: 0.3s;
    font-weight: bold;
}

@media (max-width: 574px) {
    .spe-a {
        padding: 5px !important;
        font-size: 13px;
        margin-right: 10px;
    }
}

@media (min-width: 575px) {
    .spe-a {
        padding: 5px !important;
        font-size: 13px;
        margin-right: 10px !important;
    }
}

@media (min-width: 768px) {
    .spe-a {
        padding: 5px 3px;
        font-size: 17px;
        margin-right: 15px;
    }
}

@media (min-width: 992px) {
    .spe-a {
        padding: 8px 5px;
        font-size: 23px;
        margin-right: 20px;
    }
}

.arrow {
    color: black;
    font-size: 10px;
    position: relative;
    right: 7px;
}

.spe-a:hover {
    background-color: blue;
}

/* srart criteria */
.cretiria {
    margin: 40px 0;
    box-shadow: 1px 1px 10px silver;
    padding: 40px;
    font-family: 'Calibri';
    box-sizing: border-box;
    text-align: justify;
}

.cretiria h1 {
    font-family: 'CodecProBold';
    border: 2px solid white;
    border-radius: 15px;
    background-color: var(--second-color);
    color: white;
    margin: 30px auto;
    padding: 10px 12px !important;
    width: fit-content;
    width: intrinsic;
    /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;
    /* Firefox/Gecko */
    width: -webkit-max-content;
    /* Chrome */
    margin-top: 0;
}

.cretiria p {
    font-size: 30px;
    text-align: start;
    font-style: normal;
    font-family: 'Calibri';
    margin-bottom: 30px;
    line-height: 1.6;
}


.cretiria .one h3 {
    font-family: 'CodecProBold';
    margin: 20px 0;
    font-size: 30px;
    border: 2px solid white;
    border-radius: 15px;
    /* background-color: ; */
    color: white;
    background-color: var(--second-color);
    text-align: center;
    width: fit-content;
    width: intrinsic;
    /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;
    /* Firefox/Gecko */
    width: -webkit-max-content;
    /* Chrome */
    padding: 10px 12px !important;

}

.cretiria ul,
.cretiria ol {
    line-height: 1.8 !important;
}

.cretiria ul li,
.cretiria ol li {
    font-size: 20px;
    font-family: 'Calibri';
}

@media (max-width: 574px) {
    .cretiria p {
        font-size: 14px;
        margin-bottom: 0;
        text-align: justify;
    }

    .cretiria h1 {
        font-size: 14px;
        width: 90px;
        text-align: center;
        margin-bottom: 0;
    }

    .cretiria .one h3 {
        font-size: 14px;
        width: 200px;
        text-align: start;
    }


    .cretiria ul,
    .cretiria ol {
        line-height: 1.8 !important;
        padding-right: 20px;
    }

    .cretiria .one ul li,
    .cretiria .one ol li {
        font-size: 14px;
        text-align: justify;
        padding-right: 10px;
    }

    .cretiria .one ul {
        padding-right: 20px;
        line-height: 1.8;
        font-size: 18px;
    }
}

@media (min-width: 575px) {
    .cretiria p {
        font-size: 16px;
        text-align: justify;
    }

    .cretiria h1 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .cretiria .one h3 {
        font-size: 18px;
        text-align: start;
    }

    .cretiria .one ul li,
    .cretiria .one ol li {
        font-size: 15px;
    }

    .cretiria .one ul {
        font-size: 18px;
        padding-right: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .cretiria p {
        font-size: 16px;
    }

    .cretiria h1 {
        font-size: 20px;
        text-align: start;
    }

    .cretiria .one h3 {
        font-size: 20px;
        text-align: start;
    }

    .cretiria .one ul li,
    .cretiria .one ol li {
        font-size: 16px;
    }

    .cretiria .one ul {
        padding-right: 25px;
        line-height: 1.8;
        font-size: 23px;
    }
}

@media (min-width: 992px) {
    .cretiria p {
        font-size: 18px;
        text-align: justify;
    }

    .cretiria h1 {
        font-size: 22px;
        text-align: start;
    }

    .cretiria .one h3 {
        font-size: 22px;
        text-align: start;
    }

    .cretiria .one ul li,
    .cretiria .one ol li {
        font-size: 18px;
    }

    .cretiria .one ul {
        padding-right: 30px;
        line-height: 1.8;
        font-size: 28px;
    }
}

/* end criteria */

/* start studies */
.d-flex {
    width: 80%;
    margin: 30px auto;
    background-color: white;
    box-shadow: 1px 1px 10px silver;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.d-flex .text h1 {
    font-style: italic;
    margin: 20px 0;
    font-size: 25px;
    border: 2px solid white;
    border-radius: 15px;
    padding: 20px 10px;
    color: white;
    background-color: var(--second-color);
    text-align: center;
    width: 90%;

}

.d-flex .text p {
    font-size: 22px;
    line-height: 1.6;
    width: 90%;
    color: black;
    padding-left: 0;
    font-family: 'Calibri';
    text-align: justify;
}

.d-flex h3 {
    background-color: var(--second-color);
    border: 2px solid white;
    padding: 20px;
    color: white;
    border-radius: 12px;
    width: fit-content;
}

.d-flex .authers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    color: white;
    font-size: 20px;
}

.d-flex .authers div {
    width: calc(33.3% - 8px);
    background-color: #b0b0b0;
    border-radius: 12px;
    color: #333;
    line-height: 1.6;
}

.d-flex .authers div ul {
    list-style: none;
}

.d-flex .authers div ul li {
    line-height: 20px;
}

.d-flex .imgs img {
    width: 394px;
    height: 620px;
    margin-top: 23px;
}

@media (max-width: 574px) {
    .d-flex {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .d-flex .text h1 {
        margin: 10px 0;
        font-size: 15px;
        border-radius: 10px;
        padding: 10px 5px;
        width: 90%;
    }

    .d-flex .text p {
        font-size: 18px;
    }

    .d-flex h3 {
        padding: 5px;
        border-radius: 8px;
    }

    .d-flex .imgs img {
        display: block;
        margin: 10px auto;
        width: 300px;
        height: 520px;
        margin-top: 23px;
    }

    .d-flex .authers div {
        width: calc(100%) !important;
        margin-bottom: 20px;
    }
}

@media (min-width: 575px) {
    .d-flex {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .d-flex .text h1 {
        margin: 10px 0;
        font-size: 15px;
        border-radius: 10px;
        padding: 10px 5px;
        width: 90%;
    }

    .d-flex .text p {
        font-size: 18px;
    }

    .d-flex h3 {
        padding: 5px;
        border-radius: 8px;
    }

    .d-flex .imgs img {
        display: block;
        margin: 10px auto;
        width: 300px;
        height: 520px;
        margin-top: 23px;
    }

    .d-flex .authers div {
        width: calc(50% - 4px) !important;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    /* .d-flex {
        display: flex;
        flex-direction: row;
    } */

    .d-flex .text h1 {
        text-align: start;
        margin: 15px 0;
        font-size: 20px;
        border-radius: 12px;
        padding: 13px 8px;

    }

    .d-flex .text p {
        font-size: 22px;
    }

    .d-flex h3 {
        padding: 8px;
        border-radius: 12px;
        font-size: 25px;
    }

    .d-flex .imgs img {
        display: block;
        margin: 10px auto;
        width: 400px;
        height: 550px;
        margin-top: 25px;
    }

    .d-flex .authers div {
        width: calc(33.3% - 8px) !important;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {}

/* end studies */

/* start contact */
.contactus {
    margin: 40px 0;
    padding: 40px;
    box-shadow: 1px 1px 10px silver;
    position: relative;
    /* opacity: 0.1; */
}

.contactus img {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.contactus .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contactus .container .left {
    width: calc(50% - 4px);
}

.contactus .container .left form textarea {
    width: 100%;
    resize: none;
    padding-right: 10px;
    position: relative;
    z-index: 100;
    background-color: transparent;
    outline: none;
}

.contactus .container .left form input[type="email"] {
    width: 50%;
    margin-top: 10px;
    display: block;
    margin-bottom: 20px;
    height: 25px;
    background-color: transparent !important;
    outline: none;
}

.contactus h3 {
    text-align: center;
    font-size: 30px;
    /* font-style: italic; */
    margin-top: 0;
    position: relative;
    /* z-index: 1000; */
    font-family: 'Calibri';
    font-size: 40px;
}

.contactus .address {
    font-family: 'Calibri';
    margin-top: -24px;
}

.contactus .address .one {
    margin-bottom: 20px;
}

.contactus .address p {
    font-size: 28px;
    font-style: italic;
}

.contactus .address .two {
    margin-bottom: 10px;
}

.contactus .address .one,
.contactus .address .two {
    position: relative;
    z-index: 5;
}

.contactus .address .one span,
.contactus .address .two span {
    margin-right: 20px;
    font-size: 20px;
}

.contactus .address .one span {
    transition: 0.3s;
    cursor: pointer;
}

.contactus .address i {
    font-size: 18px;
    margin-left: 9px;
}

.contactus .address .two a {
    text-decoration: none;
    transition: 0.3s;
}


@media (max-width: 574px) {
    .contactus {
        padding: 10px 0;
    }

    .contactus h3 {
        font-size: 15px;
    }

    .contactus .container {
        flex-direction: column;
    }


    .contactus .container .left {
        width: 100%;
    }

    .contactus .container .left form textarea {
        margin: auto;
    }

    .contactus .container .left form input[type="email"] {
        width: 70%;
        position: relative;
        z-index: 2;
    }

    .spe-button {
        display: block;
        margin: 10px auto;
        border-radius: 8px;
        padding: 3px 8px !important;
        font-size: 16px;
    }

    .contactus .address {
        margin-top: 10px;
    }

    .contactus .address p {
        /* text-align: center; */
        font-size: 14px;
    }

    .contactus .address i {
        font-size: 13px !important;
    }
}

@media (min-width: 575px) {
    .contactus {
        padding: 10px 0;
    }

    .contactus h3 {
        font-size: 15px;
    }

    .contactus .container {
        flex-direction: column;
    }


    .contactus .container .left {
        width: 100%;
    }

    .contactus .container .left form textarea {
        margin: auto;
    }

    .contactus .container .left form input[type="email"] {
        width: 70%;
        position: relative;
        z-index: 2;
    }

    .spe-button {
        display: block;
        margin: 10px auto;
        border-radius: 8px;
        padding: 3px 8px !important;
        font-size: 16px;
    }

    .contactus .address {
        margin-top: 10px;
    }

    .contactus .address p {
        /* text-align: center; */
        font-size: 16px;
    }

    .contactus .address i {
        font-size: 14px !important;
    }
}

@media (min-width: 768px) {
    .contactus {
        padding: 20px 0;
    }

    .contactus h3 {
        font-size: 23px;
    }

    .contactus .container {
        flex-direction: row;
    }


    .contactus .container .left {
        width: calc(45% - 6px);
    }

    .contactus .container .left form textarea {
        margin: auto;
    }

    .contactus .container .left form input[type="email"] {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .spe-button {
        display: block !important;
        border-radius: 8px;
        padding: 8px 5px;
        font-size: 20px;
        /* text-align: start !important; */
        margin-right: 0 !important;
        padding-right: 10px;
    }

    .contactus .address p {
        /* text-align: center; */
        font-size: 18px;
    }

    .contactus .address i {
        font-size: 16px !important;
    }
}

@media (min-width: 992px) {}

/* end contact */

/* ::selection {
    background-color: #330;
    color: white;
} */

/* start patrols */
.patrols {
    width: 80%;
    background-color: white;
    padding: 15px;
    box-shadow: 1px 1px 10px silver;
    margin: 40px auto;
    font-family: 'Adobe Arabic';
    text-align: justify;
    position: relative;
    /* font-size: 30px !important; */
}

.patrols img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    opacity: 0.1;
}

.patrols h2 {
    text-align: center;
    background-color: var(--second-color) !important;
    border: 2px solid white;
    border-radius: 12px;
    width: fit-content;
    padding: 20px;
    margin: 20px auto;
    color: white;
    font-style: italic;
}

.patrols .head {
    background-color: var(--second-color) !important;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid white;
    font-style: normal;
    font-size: 20px;
    color: white;
}

.patrols span {
    font-size: 22px;
}

@media (max-width: 574px) {
    .patrols span {
        font-size: 18px;
    }
}

@media (min-width: 575px) {
    .patrols span {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .patrols span {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .patrols span {
        font-size: 22px;
    }
}

.patrols p {
    font-size: 20px;
    line-height: 1.6;
    font-family: 'Calibri';
    text-align: justify;
}

.patrols ul {
    list-style: none;
    font-family: 'Calibri';
}

.patrols ul li {
    position: relative;
    padding-right: 15px;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.patrols ul li::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: 0;
    top: 8px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
    border-width: 8px;

}

.patrols .text .one {
    font-size: 10px;
    font-weight: normal;
    text-align: end;
    padding-left: 10px;
    /* color: blueviolet; */
}


.patrols .spe-word {
    text-decoration: none;
}

.patrols .spe-word:hover {
    text-decoration: underline;
}

.patrols .text .one .re {
    padding-left: 2px;
}

.patrols .text .one .re2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 23px;
}

.patrols .text .two {
    color: black;
    text-align: center;
    font-size: 10px;
}

.patrols .text .two a {
    color: blue;
    text-decoration: none;
}

.patrols .text .two a:hover {
    text-decoration: underline;
}

@media (max-width: 574px) {
    .patrols h2 {
        text-align: center;
        border: 2px solid white;
        border-radius: 8px;
        width: fit-content;
        padding: 5px;
        margin: 15px auto;
        color: white;
        font-style: italic;
    }

    .patrols p {
        font-size: 18px;
        line-height: 1.6;
    }

    .patrols .head {
        padding: 10px;
        border-radius: 8px;
        border: 2px solid white;
        font-style: normal;
        font-size: 15px;
        color: white;
    }

    .patrols ul li {
        position: relative;
        padding-right: 10px;
        font-size: 17px;
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .patrols ul li::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        right: -4px;
        top: 3px;
        border-style: solid;
        border-color: transparent #333 transparent transparent;
        border-width: 8px;

    }

    .patrols .text .one .re {
        font-size: 15px;
    }

    .patrols .text .one .re2 {
        font-size: 15px;
    }

    .patrols .text .two {
        font-size: 8px;
    }
}

@media (min-width: 575px) {
    .patrols h2 {
        text-align: center;
        border: 2px solid white;
        border-radius: 8px;
        width: fit-content;
        padding: 5px;
        margin: 15px auto;
        color: white;
        font-style: italic;
    }

    .patrols p {
        font-size: 18px;
        line-height: 1.6;
    }

    .patrols .head {
        padding: 10px;
        border-radius: 8px;
        border: 2px solid white;
        font-style: normal;
        font-size: 15px;
        color: white;
    }

    .patrols ul li {
        position: relative;
        padding-right: 10px;
        font-size: 17px;
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .patrols ul li::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        right: -4px;
        top: 3px;
        border-style: solid;
        border-color: transparent #333 transparent transparent;
        border-width: 8px;

    }

    .patrols .text .one .re {
        font-size: 15px;
    }

    .patrols .text .one .re2 {
        font-size: 15px;
    }

    .patrols .text .two {
        font-size: 8px;
    }
}

@media (min-width: 768px) {
    .patrols h2 {
        text-align: center;
        border: 2px solid white;
        border-radius: 8px;
        width: fit-content;
        padding: 8px 5px;
        margin: 15px auto;
        color: white;
        font-style: italic;
    }

    .patrols p {
        font-size: 22px;
        line-height: 1.6;
    }

    .patrols .head {
        padding: 10px;
        border-radius: 8px;
        border: 2px solid white;
        font-style: normal;
        font-size: 25px;
        color: white;
    }

    .patrols ul li {
        position: relative;
        padding-right: 10px;
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .patrols ul li::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        right: -4px;
        top: 7px;
        border-style: solid;
        border-color: transparent #333 transparent transparent;
        border-width: 8px;

    }

    .patrols .text .one .re {
        font-size: 20px;
    }

    .patrols .text .one .re2 {
        font-size: 20px;
    }

    .patrols .text .two {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .patrols h2 {
        text-align: center;
        border: 2px solid white;
        border-radius: 8px;
        width: fit-content;
        padding: 10px;
        margin: 15px auto;
        color: white;
        font-style: italic;
    }

    .patrols p {
        font-size: 22px;
        line-height: 1.6;
    }

    .patrols .head {
        padding: 10px;
        border-radius: 8px;
        border: 2px solid white;
        font-style: normal;
        font-size: 28px;
        color: white;
    }

    .patrols ul li {
        position: relative;
        padding-right: 10px;
        font-size: 23px;
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .patrols ul li::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        right: -4px;
        top: 9px;
        border-style: solid;
        border-color: transparent #333 transparent transparent;
        border-width: 8px;

    }

    .patrols .text .one .re {
        font-size: 23px;
    }

    .patrols .text .one .re2 {
        font-size: 23px;
    }

    .patrols .text .two {
        font-size: 15px;
    }
}



/* end patrols */

/* start show posts */
.show-posts {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}


.show-posts .post-box {
    width: calc(50% - 6px);
    background-color: white;
    position: relative;
}

.show-posts .post-box .infop {
    background-color: #0000ffd4;
    color: white;
    padding: 20px;
}

.show-posts .post-box span {
    margin-right: 10px;
}

.show-posts .post-box p {
    border-top: 1px solid #333;
    padding: 15px 8px 0;
    margin-top: 20px;
    padding-right: 20px;
    text-align: justify;
    height: 73px;
    overflow: hidden;
    /* white-space: nowrap; */

    text-overflow: ellipsis;
    /* overflow: auto; */
    font-family: 'Adobe Arabic';
}

.show-posts .post-box img {
    width: 50%;
    height: 300px;
}

.show-posts .post-box .my-spe {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    background-color: blue !important;
    padding: 10px 15px !important;
}

@media (max-width: 574px) {
    .show-posts {
        flex-direction: column;
    }

    .show-posts .post-box {
        width: calc(115% - 2px);
        margin-top: 30px;
    }

    .show-posts .post-box img {
        width: 50%;
        display: block;
        margin: auto;
        height: 200px;
    }

    .show-posts .post-box p {
        padding-top: 10px;
        margin-top: 10px;
        padding-right: 10px;
        font-family: 'Adobe Arabic';
    }

    .show-posts .post-box .my-spe {
        font-size: 20px;
        padding: 5px 10px;
    }
}

@media (min-width: 575px) {
    .show-posts {
        flex-direction: column;
    }

    .show-posts .post-box {
        width: calc(115% - 2px);
        margin-top: 30px;
    }

    .show-posts .post-box img {
        width: 50%;
        display: block;
        margin: auto;
        height: 200px;
    }

    .show-posts .post-box p {
        padding-top: 10px;
        margin-top: 10px;
        padding-right: 10px;
        font-family: 'Adobe Arabic';
    }

    .show-posts .post-box .my-spe {
        font-size: 20px;
        padding: 5px 10px;
    }
}

@media (min-width: 768px) {
    .show-posts {
        flex-direction: row;
    }

    .show-posts .post-box {
        width: calc(70% - 6px);
        margin-top: 30px;
    }

    .show-posts .post-box img {
        width: 50%;
        display: block;
        margin: auto;
        height: 250px;
    }

    .show-posts .post-box p {
        padding-top: 15px;
        margin-top: 15px;
        padding-right: 15px;
        font-family: 'Adobe Arabic';
    }

    .show-posts .post-box .my-spe {
        font-size: 25px;
        padding: 8px 13px;
    }
}

@media (min-width: 992px) {
    .show-posts {
        flex-direction: row;
    }

    .show-posts .post-box {
        width: calc(50% - 8px);
    }

    .show-posts .post-box img {
        width: 50%;
        display: block;
        margin: auto;
        height: 300px;
    }

    .show-posts .post-box p {
        padding-top: 20px;
        margin-top: 20px;
        padding-right: 20px;
        font-family: 'Adobe Arabic';
    }

    .show-posts .post-box .my-spe {
        font-size: 30px;
        padding: 10px 15px;
    }
}

/* end show posts */

/* start news */

.news h3 {
    text-align: center;
    font-style: italic;

}

.news h2 {
    background-color: var(--second-color);
    color: white;
    width: fit-content;
    padding: 5px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
}


@media (max-width: 574px) {

    .news h2 {
        padding: 6px;
        font-size: 15px;
        animation-name: ddd;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px !important;
    }
}

@media (min-width: 575px) {

    .news h2 {
        padding: 6px;
        font-size: 15px;
        animation-name: ddd;
        text-align: center;
        margin-left: auto;
        margin-right: 0;
    }
}

@media (min-width: 768px) {

    .news h2 {
        padding: 6px;
        font-size: 18px;
        animation-name: ddd;
        text-align: center;
        margin-left: 10px;
        margin-right: 0;
    }
}

@media (min-width: 992px) {

    .news h2 {
        padding: 10px;
        font-size: 20px;
        text-align: center;
        margin: auto;
    }
}

/* end news */
.image {
    color: red;
    position: relative;
    right: -101px;
}

.empty {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

@media (max-width: 574px) {
    .empty {
        font-size: 20px;
        top: 13%;
    }
}

@media (max-width: 574px) {
    .empty {
        font-size: 20px;
        top: 13%;
    }
}

@media (min-width: 575px) {
    .empty {
        font-size: 20px;
        top: 13%;
    }
}

@media (min-width: 768px) {
    .empty {
        font-size: 25px;
        top: 15%;
    }
}

@media (min-width: 992px) {
    .empty {
        font-size: 30px;
        top: 17%;
    }
}

@media (max-width: 856px) {
    .spe-inp {
        display: block;
        margin-bottom: 15px;
        margin-top: 15px;
    }
}

/* ::selection {
    background-color: red;
} */
input,
textarea {
    padding-right: 10px !important;
    color: #333;
    padding-top: 3px;
}

/* styling scroll bar */
/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--fourth-color);
}

/* end styling scrollbar */

input {
    caret-color: #333;
}

/* start silder */


/* end silder */

/* start first page */
.first-page {
    width: 90%;
    margin: 40px auto;
    padding: 20px;
    position: relative;
    background-color: white;
}

/* الوضع الغامق */
.first-page.dark-mode {
    background-color: #121212;
    box-shadow: 0 0 5px #333;
    /* لون غامق */
}

.first-page.news {
    width: 60%;
    margin: 40px 10px;
    box-shadow: 1px 1px 5px silver;
    padding: 20px;
    position: relative;
}

.first-page.news h2 {
    font-size: 20px !important;
}

.first-page.news ul,
.first-page.news ol,
.first-page.news p {
    font-size: 18px !important;
}

.first-page h1 {
    font-family: 'Calibri';
}

.first-page img {
    width: 70%;
    display: block;
    height: 400px;
    display: block;
    margin: 20px auto;
}

.first-page .p-img {
    font-size: 30px;
    margin-right: 10px;
    width: calc(100% - 10px) !important;
    transition: 0.3s;
    position: relative;
    padding-bottom: 10px;
    border-radius: 12px;
    font-family: 'CodecProBold';
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
}



.first-page .full-text {
    font-family: 'Calibri' !important;
    text-align: right !important;
    /* display: flex;
    justify-content: flex-start; 
    flex-direction: column; */
}


.full-text .spe-img {
    width: 300px;
    height: 300px;
    display: block !important;
    margin: 10px 0 !important;
}

.first-page .info {
    background-color: var(--second-color);
    border-radius: 10px;
    color: white;
    font-size: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px !important;
}

.first-page .first-page-info {
    text-align: center;
    font-family: 'Calibri';
    font-size: 26px;
    background-color: var(--second-color);
    color: white;
    border-radius: 12px;
    padding: 15px;
}

.first-page .first-page-info h3 {
    margin-bottom: -18px;
    margin-top: 0px;
    font-size: 18px;
    font-family: 'CodecProBold';
}

.first-page .first-page-info p {
    margin-top: 10px;
    margin-bottom: 0;
}

.first-page .president {
    width: 400px;
    margin: 20px auto;
    text-align: center !important;
}

.first-page .president h2.pre-name {
    background-color: transparent !important;
    color: black;
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 0;
}

.first-page .president .pre-p {
    font-size: 25px;
    font-weight: normal;
    text-align: center;
    margin-top: 0 !important;
    background-color: transparent;
    color: black;
    padding-top: 5px;
}

@media (max-width: 574px) {
    .first-page {
        width: calc(100% - 30px);
    }

    .first-page .full-text .spe-img {
        width: 250px;
        height: 170px;
        display: block !important;
        margin: 10px 0 !important;
    }

    .first-page .p-img {
        font-size: 22px;
        padding-bottom: 14px;
        margin-right: 0px;
        margin-bottom: -19px;
        line-height: 1.4;
    }
}

@media (min-width: 575px) {
    .first-page .full-text .spe-img {
        width: 260px;
        height: 170px;
    }

    .first-page .p-img {
        font-size: 20px;
        padding-bottom: 5px;
    }
}

@media (min-width: 768px) {
    .first-page .full-text .spe-img {
        width: 400px;
        height: 300px;
    }

    .first-page .p-img {
        font-size: 20px;
        padding-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .first-page .full-text .spe-img {
        width: 500px;
        height: 330px;
    }

    .first-page .p-img {
        margin-bottom: 9px;
        display: block;
        font-family: "CodecProBold";
        font-size: 25px;
    }
}

.first-page .us-table {
    border: 1px solid white;
}

.first-page .us-table tr td:hover {
    background-color: transparent !important;
}

@media (max-width: 574px) {
    .first-page .us-table {
        font-size: 12px;
    }
}

@media (min-width: 575px) {
    .first-page .us-table {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .first-page .us-table {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .first-page .us-table {
        font-size: 16px;
    }
}

.first-page .full-text h2 {
    font-size: 30px;
    font-family: 'CodecProBold';
}

.first-page .full-text p {
    line-height: 1.6;
    font-family: 'Calibri';
    text-align: justify;
    font-size: 30px;
    margin-left: 0;
    /* يبدأ من اليسار */
    margin-right: auto;
    /* يضبط التوزيع في الباقي */
}

.first-page .full-text ul,
.first-page .full-text ol {
    font-size: 30px;
    line-height: 1.8;
    font-family: 'Calibri';
    text-align: justify;
}


.first-page .full-text span sup {
    color: #B46C22;
    cursor: pointer;
}

.first-page .full-text a {
    text-decoration: none;
    color: #B46C22;
}

.first-page .info {
    background-color: var(--second-color) !important;

}

.first-page .info i {
    margin-right: -10px !important;
    margin-left: 12px !important;
}

@media (max-width: 575px) {
    .first-page .info i {
        margin-right: -14px !important;
        margin-left: 5px !important;
    }

    .first-page .full-text span sup {
        font-size: 8px;
    }
}

.first-page .first-flex {
    display: flex;
    justify-content: space-around;
    font-family: 'Calibri';
    font-size: 25px;
}

.first-page .first-flex .left,
.first-page .first-flex .right {
    line-height: 1.6;
}

@media (max-width: 574px) {
    .first-page .full-text h2 {
        font-size: 16px;
        margin-right: 0;
        text-align: start;
        line-height: 1.4;
    }
}

@media (min-width: 575px) {
    .first-page .full-text h2 {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) {
    .first-page .full-text h2 {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .first-page .full-text h2 {
        font-size: 22px;
    }
}

@media (max-width: 574px) {
    .first-page .first-flex {
        flex-direction: column;
        font-size: 16px;
        margin-right: 10px;

    }
}

@media (min-width: 575px) {
    .first-page .first-flex {
        flex-direction: column;
        font-size: 18px;
        margin-right: 10px;
    }
}

@media (min-width: 768px) {
    .first-page .first-flex {
        flex-direction: row;
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .first-page .first-flex {
        flex-direction: row;
        font-size: 26px;
    }
}

@media (max-width: 574px) {
    .first-page {
        margin: 0 auto 0;
    }

    .first-page h1 {
        font-size: 16px;
    }

    .first-page img {
        width: 100%;
        margin: 23px auto;
        height: 170px;
    }


    .first-page .info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        margin: 20px auto 10px;
        border-radius: 4px;
    }

    .first-page .info .pub {
        margin-top: 10px;
    }

    .first-page .full-text p {
        font-size: 16px;
        font-family: 'Calibri' !important;
    }

    .first-page .full-text ul,
    .first-page .full-text ol {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 0;
        padding-right: 20px;
        font-family: 'Calibri' !important;
        margin-left: 0;
        margin-right: auto;
    }

    .first-page .full-text ul li,
    .first-page .full-text ol li {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (min-width: 575px) {
    .first-page {
        margin: 10px 0 15px;
        width: 93%;
    }

    .first-page h1 {
        font-size: 18px;
    }

    .first-page img {
        width: 100%;
        margin: 15px auto;
        height: 250px;
    }



    .first-page .info {
        padding: 10px;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 30px;
    }

    .first-page .full-text p {
        font-size: 16px;
    }

    .first-page .full-text ul,
    .first-page .full-text ol {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .first-page {
        margin: 35px 0 15px;
        width: 95%;
    }

    .first-page h1 {
        font-size: 24px;
    }

    .first-page img {
        width: 100%;
        margin: 20px auto;
        height: 290px;
    }


    .first-page .info {
        padding: 10px 10px;
        border-radius: 10px;
        font-size: 22px;
        margin-top: 30px;
    }

    .first-page .full-text p {
        font-size: 17px;
    }

    .first-page .full-text ul,
    .first-page .full-text ol {
        font-size: 17px;
    }
}

@media (min-width: 992px) {
    .first-page {
        margin: 13px 0 20px 17px;
        padding: 40px;
        box-sizing: border-box;
    }

    .first-page h1 {
        font-size: 30px;
    }

    .first-page img {
        width: 100%;
        margin: 20px auto;
        height: 320px;
        margin-bottom: 22.4px;
        display: block;
    }


    .first-page .info {
        padding: 10px 10px;
        border-radius: 10px;
        font-size: 26px;
        margin-top: 40px;
    }

    .first-page .full-text p {
        font-size: 19px;
    }

    .first-page .full-text ul,
    .first-page .full-text ol {
        font-size: 19px;
    }
}

.first-page .publisher-name h1 {
    background-color: var(--second-color) !important;
    color: white;
    width: fit-content;
    padding: 10px 8px;
    padding-left: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.show-references {
    font-family: 'CodecProBold';
    padding: 10px 12px;
    background-color: var(--second-color);
    color: white;
    cursor: pointer;
    font-size: 18px;
    width: fit-content;
    width: intrinsic;
    /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;
    /* Firefox/Gecko */
    width: -webkit-max-content;
    /* Chrome */
    transition: 0.3;
}

.show-references:hover {
    background-color: var(--fourth-color);
}

.refrences {
    box-shadow: 0 0 5px #333;
    width: 70%;
    margin: 20px 45px;
    font-family: 'Calibri';
    height: 310px;
    overflow: auto;
    transition: 1s;
    background-color: white;
    scrollbar-width: none;
}

.refrences.jordan {
    height: 160px;
}

.refrences.eveloution {
    height: 150px;
}

.refrences.legis {
    height: 253px;
}

.refrences .first-ref-info {
    background-color: var(--second-color);
    padding: 1px 9px;
    color: white;
}

.container>.show-references {
    display: block;
}

.container>.refrences {
    display: block;
}

.refrences .first-ref-info h2 {
    background-color: var(--fifth-color);
    border: 2px solid white;
    width: fit-content;
    padding: 10px 12px;
    margin-right: 10px;
    border-radius: 8px;
    font-size: 18px;
}

.refrences ul {
    list-style: none;
    counter-reset: css-counter 0;
    font-size: 18px;
}

.refrences ul li {
    line-height: 2.6;
    counter-increment: css-counter 1;
    padding-right: 20px !important;
    padding-left: 20px !important;
    /* cursor: pointer; */
    transition: 0.3s
}

.refrences ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.refrences ul li a:hover {
    color: var(--second-color);
}

.refrences ul li:not(:last-child) {
    border-bottom: 2px solid #3333334a;
}

.refrences ul li::before {
    content: counter(css-counter);
    padding: 1px 5px;
    border: 1px solid var(--second-color);
    border-radius: 50%;
    margin-left: 15px;
}

.refrences ul li:hover::before {
    background-color: var(--second-color);
    color: white;
}

.eng {
    text-align: start;
    direction: ltr;
    margin-right: 20px !important;
}

.nested-ul {
    font-weight: bold;
    text-align: justify;
}

@media (max-width: 574px) {
    .first-page {
        width: calc(100%) !important;
        box-sizing: border-box;
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: 500;
        padding-right: 10px;
        padding-left: 10px;
        /* overflow: hidden !important; */
    }

    .refrences .first-ref-info h2 {
        font-size: 16px !important;
    }

    .refrences ul {
        font-size: 13px !important;
    }

    .refrences ul li {
        line-height: 2;
    }

    .first-page .publisher-name h1 {
        padding: 5px;
        margin-top: 10px;
        font-size: 18px;
    }

    .show-references {
        font-size: 12px;
        padding: 8px 6px 8px 19px;
    }

    .refrences {
        margin: 10px 0 !important;
        /* إخفاء شريط التمرير */
        scrollbar-width: none;
        width: 100% !important;
    }

    .refrences ul li::before {
        margin-left: 5px !important;
    }
}

.container>.show-references {
    display: none;
}

.container>.refrences {
    display: none;
}

.refrences .first-ref-info h2 {
    font-size: 12px;
    margin: 3px 5px;
    padding: 4px 12px;
}

.refrences ul {
    font-size: 10px;
    padding-right: 10px;
    color: black;
}

.refrences ul li {
    padding-right: 3px !important;
    padding-left: 3px !important;
}

.refrences ul li::before {
    margin-left: 10px;
}

.refrences ul li.eng::before {
    margin-right: 10px;
}


@media (min-width: 575px) {
    .first-page .publisher-name h1 {
        padding: 5px;
        margin-top: 10px;
        font-size: 18px;
    }

    .show-references {
        font-size: 14px;
        padding: 6px 6px;
    }

    .refrences {
        width: 100%;
        margin: 10px 0;
    }

    .refrences .first-ref-info h2 {
        font-size: 12px;
        padding: 7px 17px;
    }

    .refrences ul {
        font-size: 12px;
    }

    .refrences ul li {
        padding-right: 3px !important;
    }

    .refrences ul li::before {
        margin-left: 10px;
    }

    .refrences ul li.eng::before {
        margin-right: 10px;
    }
}

@media (min-width: 768px) {
    .first-page .publisher-name h1 {
        padding: 8px;
        margin-top: 15px;
        font-size: 25px;
    }

    .show-references {
        font-size: 16px;
        padding: 6px 9px;
    }


    .refrences {
        margin: 15px 0;
    }

    .refrences .first-ref-info h2 {
        margin-right: 10px;
        font-size: 14px;
    }

    .refrences ul {
        font-size: 14px;
    }

    .refrences ul li {
        padding-right: 5px !important;
    }
}

@media (min-width: 992px) {
    .first-page .publisher-name h1 {
        padding: 8px 5px;
        margin-top: 15px;
        font-size: 28px;
    }

    .show-references {
        font-size: 18px;
        padding: 6px 9px;
    }

    .refrences {
        margin: 15px 0;
    }
}

.first-page .publisher-name h2 {
    font-family: 'calibri';
    margin-right: 30px;
}

@media (max-width: 574px) {
    .first-page .publisher-name h2 {
        margin-right: 18px;
        font-size: 18px;
        /* font-family: 'math' !important; */
    }
}

@media (min-width: 575px) {
    .first-page .publisher-name h2 {
        margin-right: 18px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .first-page .publisher-name h2 {
        margin-right: 25px;
        font-size: 25px;
    }
}

@media (min-width: 992px) {
    .first-page .publisher-name h2 {
        margin-right: 30px;
        font-size: 28px;
    }
}


@media (min-width: 575px) {
    .first-page .full-text {
        font-family: 'Calibri' !important;
    }
}

.first-page .goverance-img {
    width: 98% !important;
    margin: 20px 0 !important;
    height: 454px !important;
    display: block !important;
    margin: 5px auto 20px !important;
}

@media (max-width: 574px) {
    .first-page .goverance-img {
        height: 160px !important;
        margin: 5px auto;
    }


    .first-page .first-page-info {
        padding: 5px;
    }

    .first-page .first-page-info h3 {
        margin-bottom: -1px;
        margin-top: 0px;
        font-size: 14px;
    }

    .first-page .first-page-info p {
        margin-bottom: 0;
        font-size: 13px;
    }

    .first-page .president {
        width: 350px;
    }

    .first-page .president h2.pre-name {
        font-size: 14px;
        margin: 10px auto;
        width: 140px;
        text-align: center;
    }

    .first-page .president .pre-p {
        font-size: 14px;
        margin-top: 26px;
        margin: auto;
        width: 130px;
    }
}

@media (min-width: 575px) {
    .first-page .goverance-img {
        height: 260px !important;
        margin: 5px auto;
    }

    .first-page .first-page-info {
        padding: 10px;
    }

    .first-page .first-page-info h3 {
        margin-bottom: -1px;
        margin-top: 0px;
        font-size: 20px;
    }

    .first-page .first-page-info p {
        margin-bottom: 0;
        font-size: 15px;
    }

    .first-page .president {
        width: 350px;
    }

    .first-page .president h2.pre-name {
        font-size: 24px;
    }

    .first-page .president .pre-p {
        font-size: 22px;
        margin-top: 26px;
    }
}

@media (min-width: 768px) {
    .first-page .goverance-img {
        height: 328px !important;
        margin: 10px 0 !important;
    }

    .first-page .first-page-info {
        padding: 15px;
    }

    .first-page .first-page-info h3 {
        margin-bottom: -1px;
        margin-top: 0px;
        font-size: 23px;
    }

    .first-page .first-page-info p {
        margin-bottom: 0;
        font-size: 20px;
    }

    .first-page .president {
        width: 350px;
    }

    .first-page .president h2.pre-name {
        font-size: 26px;
    }

    .first-page .president .pre-p {
        font-size: 24px;
        margin-top: 26px;
    }
}

@media (min-width: 992px) {
    .first-page .goverance-img {
        height: 360px !important;
        margin: 15px auto !important;
    }

    .first-page .first-page-info {
        padding: 15px;
    }

    .first-page .first-page-info h3 {
        margin-bottom: 0px;
        margin-top: 0px;
        font-size: 28px;
    }

    .first-page .first-page-info p {
        margin-bottom: 0;
        font-size: 25px;
    }

    .first-page .president {
        width: 350px;
    }

    .first-page .president h2.pre-name {
        font-size: 28px;
    }

    .first-page .president .pre-p {
        font-size: 26px;
        margin-top: 26px;
    }
}

.flex-news {
    display: flex;
}

.show-studies {
    position: sticky;
    top: 10px;
    width: 35%;
    height: fit-content;
    font-family: 'Calibri';
    box-shadow: 1px 1px 10px silver;
    padding-right: 20px;
    box-sizing: border-box;
    margin-top: 40px;
}

.show-studies h3 {
    font-size: 26px;
}

.show-studies a {
    text-decoration: none;
}

.show-studies a .study-info {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3336;
}

.show-studies a .study-info.last-one {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.show-studies a .study-info .image-card {
    width: 120px;
    height: 90px;
}

.show-studies a .study-info .image-card img {
    width: 100%;
    height: 100%;
}

.studies-text-info {
    width: 420px;
    margin-right: 10px;
    margin-left: 10px;
}

.show-studies a .study-info h3 {
    margin-top: -4px;
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--second-color);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 275px;
    height: 20px;
    font-family: 'CodecProBold';
}

.show-studies a .study-info p {
    text-align: justify;
    color: var(--fifth-color);
    margin-top: 6px;
    max-height: 59px;
    overflow: hidden;
    /* white-space: wrap; */
    text-overflow: ellipsis;
    transition: 0.3s;
}

.top-of-study {
    background-color: white;
    font-family: 'CodecProRegular';
    color: white;
    padding: 8px 10px;
    font-size: 23px;
    border-top: 1px solid rgba(0, 0, 0, 0.136);
}


.top-of-study a {
    text-decoration: none;
    color: var(--fourth-color);
    transition: 0.3s;
}

.first-pipe {
    color: var(--date-color) !important;
    margin-right: 4px !important;
    margin-left: 4px !important;
}

.top-of-study a:hover {
    color: var(--fifth-color);
}

.top-of-study span {
    color: var(--fifth-color);
    margin-right: 2px;
    line-height: 1.3;
}

@media (max-width: 574px) {
    .first-pipe {
        margin-right: 1px !important;
        margin-left: 1px !important;
    }

    .flex-news {
        flex-direction: column;
    }


    .first-page.news {
        width: calc(100%) !important;
        margin: 10px 0;
        padding: 10px;
        box-sizing: border-box;
    }

    .first-page.news h2 {
        font-size: 13px !important;
    }

    .first-page.news ul,
    .first-page.news ol,
    .first-page.news p {
        font-size: 14px !important;
    }

    .show-studies {
        box-sizing: border-box;
        width: calc(100%);
        padding-right: 10px 0;
        margin-top: 20px;
        margin: 20px auto !important;
        position: relative;
        padding-right: 10px;
    }

    .show-studies h3 {
        font-size: 16px;
    }

    .show-studies a .study-info {
        padding-bottom: 0;
    }

    .show-studies a .study-info .image-card {
        width: 139px;
        height: 54px;
    }

    .studies-text-info {
        margin-right: 5px;
        margin-left: 5px;
    }

    .show-studies a .study-info h3 {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .show-studies a .study-info p {
        max-height: 36px;
        font-size: 10px;
        margin-top: -6px;
    }

    .top-of-study {
        padding: 5px 7px;
        font-size: 13px;
        margin-bottom: 5px;
    }
}

@media (min-width: 575px) {
    .flex-news {
        flex-direction: column;
    }

    .first-page.news {
        width: calc(100%);
        margin: 10px 0 10px 18px;
        padding: 16px;
        box-sizing: border-box;
    }


    .first-page.news h2 {
        font-size: 14px !important;
    }

    .first-page.news ul,
    .first-page.news ol,
    .first-page.news p {
        font-size: 15px !important;
    }

    .show-studies {
        box-sizing: border-box;
        width: calc(100%);
        padding-right: 10px;
        margin-top: 20px;
        margin: 20px auto;
        position: relative;
        padding-right: 10px;
    }

    .show-studies h3 {
        font-size: 18px;
    }

    .show-studies a .study-info .image-card {
        width: 139px;
        height: 64px;
    }

    .studies-text-info {
        margin-right: 5px;
        margin-left: 5px;
    }

    .show-studies a .study-info h3 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .show-studies a .study-info p {
        max-height: 44px;
        font-size: 12px;
        margin-top: -8px;
    }

    .show-studies a .study-info {
        padding-bottom: 0;
        margin-bottom: 9px;
    }

    .top-of-study {
        padding: 5px 7px;
        font-size: 14px;
        margin-bottom: 8px;
    }
}

@media (min-width: 968px) {

    .flex-news {
        flex-direction: row;
    }

    .first-page.news h2 {
        font-size: 16px !important;
    }

    .first-page.news ul,
    .first-page.news ol,
    .first-page.news p {
        font-size: 16px !important;
    }

    .show-studies {
        position: sticky;
        top: 0;
        width: 400px;
        margin-top: 12px;
        padding-right: 20px;
    }

    .show-studies h3 {
        font-size: 22px;
    }

    .show-studies a .study-info .image-card {
        width: 179px;
        height: 100px;
    }

    .studies-text-info {
        width: 420px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .show-studies a .study-info h3 {
        margin-bottom: 10px;
        font-size: 16px;
        color: var(--second-color);
    }

    .show-studies a .study-info p {
        font-size: 14px;
        margin-top: 6px;
        max-height: 71px;
    }

    .show-studies a .study-info {
        margin-bottom: 10px;
        padding-bottom: 0;
    }

    .top-of-study {
        padding: 10px 8px;
        font-size: 15px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .first-page.news {
        width: calc(100% - 36px);
        margin: 10px 0 10px 18px;
        padding: 16px;
        box-sizing: border-box;
    }

    .first-page.news h2 {
        font-size: 17px !important;
    }

    .first-page.news ul,
    .first-page.news ol,
    .first-page.news p {
        font-size: 18px !important;
    }

    .top-of-study {
        padding: 10px 15px;
        font-size: 17px;
        margin-bottom: 20px;
    }
}

.show-studies-h3 {
    background-color: var(--fourth-color);
    color: white;
    padding: 5px;
    font-family: 'CodecProBold';
}

/* end first page */

.download,
.view {
    position: relative;
}

.download img {
    width: 100px;
    height: 100px;
}

.error {
    background-color: red;
    padding: 10px;
    font-family: 'Calibri';
    color: white;
    width: 60%;
    margin: 30px auto;
    border-radius: 20px;
    text-align: center;
}

.PDF {
    width: 95%;
    height: 1000px;
}

@media (max-width: 574px) {
    .spe-h1 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .show-studies-h3 {
        padding: 10px 5px 5px;
    }
}

@media (min-width: 575px) {
    .spe-h1 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .spe-h1 {
        font-size: 20px;
        margin-top: 15px;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .spe-h1 {
        font-size: 22px;
        margin-top: 40px;
        margin-bottom: 0;
    }
}

.container-sec {
    display: flex;
    gap: 12px;
    max-width: 70%;
    margin: 20px auto;
    background-color: var(--second-color);
    border-radius: 12px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scroll-padding: 30px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    direction: rtl;
}

.container-sec .card {
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    border-radius: 12px;
    padding: 20px;
    scroll-snap-align: start;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    text-align: center;
    font-family: 'Calibri';
    max-width: 60%;
}

.card .image {
    width: 500px;
    height: 200px;
    margin: auto;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    right: 40px;
}

.card .image img {
    display: block !important;
    margin: 10px 0 !important;
    height: 100%;
    width: 100%;
    border: 5px solid #fff;
    border-radius: 12px;
}

.container-sec .card a {
    text-decoration: none;
    font-size: 25px;
    color: black;
}

.container-sec .card a p {
    height: 20px;
}

@media (max-width: 574px) {
    .container-sec .card a {
        font-size: 18px;
    }
}

@media (max-width: 574px) {
    .card .image {
        width: 165px;
        right: -6px;
        height: 170px;
    }

    .container-sec .card a p {
        height: 25px;
    }
}

@media (min-width: 575px) {
    .card .image {
        width: 238px;
        right: -6px;
        height: 170px;
    }

}

@media (min-width: 768px) {
    .card .image {
        width: 346px;
        right: -5px;
        height: 190px;
    }
}

@media (min-width: 992px) {
    .card .image {
        width: 446px;
        right: -3px;
        height: 300px;
    }

}

/* start styling special icons and links */
.fa-calendar {
    padding-right: 20px;
}

.show-all {
    text-decoration: none;
    text-align: center;
    background-color: var(--fourth-color);
    color: white;
    margin-bottom: 0 !important;
    padding: 8px 5px;
    margin: 0;
    color: white !important;
    font-family: 'CodecProBold';
    font-size: 25px;
    transition: 0.3s;
    display: block;
    width: 250px !important;
}

.show-all:hover {
    background-color: var(--fourth-color) !important;
}

::selection {
    background-color: var(--second-color);
    color: #ffffff;
}

.first-page .full-text img {
    width: 400px;
    height: 250px;
    display: block;
    margin: 5px auto;
}

.full-text .spe-img {
    width: 300px;
    height: 300px;
    display: block !important;
    margin: 10px 0 !important;
}

@media (max-width: 574px) {
    .first-page .full-text img {
        width: 200px;
        height: auto;
    }
}

@media (min-width: 575px) {
    .first-page .full-text img {
        width: 230px;
        height: auto;
    }
}

@media (min-width: 768px) {
    .first-page .full-text img {
        width: 300px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .first-page .full-text img {
        width: 350px;
        height: auto;
    }
}

@media (max-width: 574px) {
    .first-page .full-text .spe-img {
        width: 250px;
        height: 170px;
        display: block !important;
        margin: 10px 0 !important;
    }
}

@media (min-width: 575px) {
    .first-page .full-text .spe-img {
        width: 260px;
        height: 170px;
    }
}

@media (min-width: 768px) {
    .first-page .full-text .spe-img {
        width: 400px;
        height: 300px;
    }
}

@media (min-width: 992px) {
    .first-page .full-text .spe-img {
        width: 500px;
        height: 330px;
    }
}

.first-page .full-text .spe-img2 {
    width: 600px;
    height: 400px;
    display: block !important;
    margin: 10px 0 !important;
}

@media (max-width: 574px) {
    .first-page .full-text .spe-img2 {
        width: 200px;
        height: auto;
        display: block !important;
        margin: 10px 0 !important;
    }
}

@media (min-width: 575px) {
    .first-page .full-text .spe-img2 {
        width: 300px;
        height: auto;
    }
}

@media (min-width: 768px) {
    .first-page .full-text .spe-img2 {
        width: 400px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .first-page .full-text .spe-img2 {
        width: 500px;
        height: auto;
    }
}

.full-txt-yem {
    display: flex;
}

.full-txt-yem .txt-in {
    margin-left: 20px;
}

.full-txt-yem .txt-in h3 {
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid black;
}

.full-txt-yem .txt-in p {
    padding: 10px;
    background-color: rgba(0, 0, 255, 0.247);
    border-radius: 12px;
}

@media (max-width: 574px) {
    .full-txt-yem {
        flex-direction: column;
    }

    .full-txt-yem .txt-in h3 {
        font-size: 12px;
    }
}

@media (min-width: 575px) {
    .full-txt-yem {
        flex-direction: column;
    }

    .full-txt-yem .txt-in h3 {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .full-txt-yem {
        flex-direction: row;
    }

    .full-txt-yem .txt-in h3 {
        font-size: 17px;
    }
}

.first-page .full-text .spe-img3 {
    width: 775px !important;
    height: 407px !important;
    display: block !important;
    margin: 10px 0 !important;
}

.first-page .full-text .spe-img5 {
    width: 775px !important;
    height: 407px !important;
    display: block !important;
    margin: 10px 0 !important;
}

.first-page .full-text .spe-img10 {
    width: 775px !important;
    height: 407px !important;
    display: block !important;
    margin: 10px 0 !important;
}

@media (max-width: 574px) {
    .first-page .full-text .spe-img3 {
        width: 435px !important;
        height: 244px !important;
    }

    .first-page .full-text .spe-img5 {
        width: 250px !important;
        height: auto !important;
    }

    .first-page .full-text .spe-img10 {
        width: 300px !important;
        height: auto !important;
    }
}

@media (min-width: 575px) {
    .first-page .full-text .spe-img3 {
        width: 448px !important;
        height: 244px !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .first-page .full-text .spe-img5 {
        width: 350px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .first-page .full-text .spe-img10 {
        width: 400px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }
}

@media (min-width: 768px) {
    .first-page .full-text .spe-img3 {
        width: 600px !important;
        height: 407px !important;
    }

    .first-page .full-text .spe-img5 {
        width: 450px !important;
        height: auto !important;
    }

    .first-page .full-text .spe-img10 {
        width: 500px !important;
        height: auto !important;
    }
}


@media (min-width: 992px) {
    .first-page .full-text .spe-img3 {
        width: 775px !important;
        height: 407px !important;
    }

    .first-page .full-text .spe-img5 {
        width: 550px !important;
        height: auto !important;
    }

    .first-page .full-text .spe-img10 {
        width: 600px !important;
        height: auto !important;
    }
}

.hidden-row {
    display: none;
}

.fa-arrow-up-long {
    color: white;
    padding: 10px;
    background-color: rgba(87, 84, 163, 0.5);
    border-radius: 8px;
    position: fixed;
    z-index: 5000;
    bottom: 30px;
    right: 150px;
    font-size: 28px;
    animation-name: up-and-down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-direction: alternate;
    transition: 0.3s;
}

@keyframes up-and-down {
    form {
        transform: translateY(0);
    }

    to {
        transform: translateY(-30px);
        background-color: var(--second-color);
    }
}

@media (max-width: 574px) {
    .fa-arrow-up-long {
        padding: 7px 8px;
        right: 30px;
        font-size: 20px;
    }
}

@media (min-width: 575px) {
    .fa-arrow-up-long {
        padding: 7px 8px;
        right: 30px;
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .fa-arrow-up-long {
        padding: 8px;
        right: 60px;
        font-size: 25px;
    }
}

@media (min-width: 992px) {
    .fa-arrow-up-long {
        padding: 6px;
        right: 40px;
        font-size: 28px;
    }
}

/* end styling special icons */

/* .ws9 {
    word-spacing: -9px !important;
}

.ws8 {
    word-spacing: -8px !important;
}

.ws {
    word-spacing: -7px !important;
}

.ws-index {
    word-spacing: -4px !important;
}

.ws3 {
    word-spacing: -3px !important;
}

.ws2 {
    word-spacing: -2px !important;
}

.ws6 {
    word-spacing: -6px !important;
}

.ws5 {
    word-spacing: -5px !important;
}

.ws0 {
    word-spacing: normal !important;
}

@media (max-width: 574px) {
    .ws {
        word-spacing: -7px !important;
    }

    .ws-index {
        word-spacing: -4px !important;
    }

    .ws3 {
        word-spacing: -3px !important;
    }

    .ws2 {
        word-spacing: -2px !important;
    }

    .ws6 {
        word-spacing: -6px !important;
    }

    .ws5 {
        word-spacing: -5px !important;
    }

    .ws0 {
        word-spacing: normal !important;
    }
}

@media (min-width: 575px) {
    .ws {
        word-spacing: normal !important;
    }

    .ws-index {
        word-spacing: normal !important;
    }

    .ws3 {
        word-spacing: normal !important;
    }

    .ws2 {
        word-spacing: normal !important;
    }

    .ws6 {
        word-spacing: normal !important;
    }

    .ws5 {
        word-spacing: normal !important;
    }

    .ws0 {
        word-spacing: normal !important;
    }
} */

.ctable {
    display: block;
}

@media (max-width: 574px) {
    .ctable {
        display: none;
    }

    .refrences.legis {
        height: 150px;
    }
}

@media (min-width: 575px) {
    .ctable {
        display: none;
    }

    .refrences.legis {
        height: 178px;
    }
}

@media (min-width: 768px) {
    .ctable {
        display: block;
    }

    .refrences.legis {
        height: 178px;
    }
}


/* start styling aside */
.aside {
    position: fixed;
    top: 111px;
    right: -300px;
    background-color: white;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.121);
    padding: 20px;
    z-index: 1000000000;
    transition: right 0.9s ease, opacity 0.9s ease;
    display: block;
    padding-right: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.136);
    opacity: 0;
    /* بداية العنصر غير مرئي */
}

/* عند عرض الـ aside، نغير المكان والشفافية */
.aside.show {
    right: 0;
    /* يتحرك الـ aside إلى مكانه الطبيعي */
    opacity: 1;
    /* يصبح مرئيًا */
    width: 100%;
}

/* عند إزالة الكلاس "show"، الـ aside يتحرك خارج الشاشة ويختفي */
.aside.hide {
    right: -300px;
    /* يتحرك إلى الخارج */
    opacity: 0;
    /* يصبح غير مرئي */
}

.aside .aside-ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    font-family: 'CodecProBold';
    margin-right: 0;
}

.aside .aside-ul li a {
    color: var(--fourth-color) !important;
    transition: 0.3s;
    font-size: 16px;
}

.aside .aside-ul li a:hover {
    color: var(--fifth-color) !important;
}

.aside-base-li {
    position: relative;
    margin-left: 31px;
}

.aside-base-li::before {
    content: " \25BC";
    position: absolute;
    top: 3px;
    left: -8px;
    color: var(--fourth-color);
    width: 5px;
    height: 5px;
    font-size: 10px;
}

@supports (-moz-appearance: none) {
    .aside-base-li::before {
        top: 6px;
    }
}

.aside-base-li .ul {
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.aside .aside-ul li {
    line-height: 1;
    margin-top: 11px;
}

.aside-nested-list li {
    position: relative;
}

.aside-nested-list li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 5px;
    right: -14px;
    background-color: var(--second-color);
    border-radius: 50%;
}

.aside-nested-list li:not(:last-of-type) {
    margin-top: 12px;
}

.asid-li {
    position: relative;
    top: -24px;
}

.asid-li2 {
    position: relative;
    right: -3px;
}

.asid-li3 {
    position: relative;
    right: -2px;
}

/* end styling aside */

/* start overlay */
.over {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.878);
    pointer-events: none;
    display: none;
    z-index: 10;
}

/* end overlay */

/* start slider */
.slider {
    height: 500px;
    overflow: hidden;
    direction: ltr;
    position: relative;
}

.slider .slides {
    width: 500%;
    height: 500px;
    display: flex;
}

.slides input {
    display: none;
}

.slider .slides .slide {
    position: relative;
    width: 20%;
    transition: 2s;
}

.slider .slides .slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5)), linear-gradient(to top, rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5))
}

.slider .slides .slide img {
    width: 100%;
    height: 550px;
    background-size: cover;
}


.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.navigation-manual .manual-btn {
    border: 2px solid var(--fifth-color);
    padding: 6px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.navigation-manual .manual-btn:not(:last-child) {
    margin-right: 40px;
}

.navigation-manual .manual-btn:hover {
    background-color: var(--fifth-color);
}

#radio1:checked~.first {
    margin-left: 0;
}

#radio2:checked~.first {
    margin-left: -20%;
}

#radio3:checked~.first {
    margin-left: -40%;
}

#radio4:checked~.first {
    margin-left: -60%;
}

#radio5:checked~.first {
    margin-left: -80%;
}

.navigation-auto {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 520px;
}

.navigation-auto div {
    border: 2px solid var(--fifth-color);
    padding: 6px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

#radio1:checked~.navigation-auto .auto-btn1 {
    background-color: var(--fifth-color);
}

#radio2:checked~.navigation-auto .auto-btn2 {
    background-color: var(--fifth-color);
}

#radio3:checked~.navigation-auto .auto-btn3 {
    background-color: var(--fifth-color);
}

#radio4:checked~.navigation-auto .auto-btn4 {
    background-color: var(--fifth-color);
}

#radio5:checked~.navigation-auto .auto-btn5 {
    background-color: var(--fifth-color);
}

.slide-full-inf {
    position: absolute;
    right: 5px;
    bottom: 0;
    border-radius: 12px;
    color: white;
    width: 50%;
    height: 50%;
    text-align: start;
    padding-right: 20px;
    box-sizing: border-box;
}

.slide-full-inf h2 {
    margin-right: 20px;
    font-size: 30px;
    font-family: 'CodecProBold';
    line-height: 1.4 !important;
}

.slide-full-inf span {
    display: block;
    font-size: 25px;
    direction: rtl;
    text-align: start;
    color: var(--fifth-color);
    font-weight: normal;
    font-family: 'CodecProRegular';
}

.slide-full-inf span .fa-calendar {
    margin-left: 10px;
    font-size: 20px;
    margin-top: -1px;
}

.slide-full-inf span.pub {
    margin-right: 20px;
    margin-top: 10px;
}

@media (max-width: 574px) {
    .slider {
        height: 200px;
        margin: 0 auto 10px;
        position: relative;
        overflow: hidden;
        /* إخفاء أي جزء من الصورة يتجاوز الحدود */
    }

    .slider .slides {
        height: 200px;
    }

    .slider .slides .slide {
        height: 200px;
    }

    .slider .slides .slide img {
        height: 100%;
        width: 100%;
    }

    .navigation-manual {
        position: absolute;
        width: 90%;
        margin-top: -22px;

    }

    .navigation-manual .manual-btn:not(:last-child) {
        margin-right: 15px;
    }

    #radio1:checked~.first {
        margin-left: 0;
    }

    #radio2:checked~.first {
        margin-left: -20%;
    }

    #radio3:checked~.first {
        margin-left: -40%;
    }

    #radio4:checked~.first {
        margin-left: -60%;
    }

    .navigation-auto {
        width: 90%;
        justify-content: center;
        margin-top: 178px;
    }

    .navigation-auto div {
        border: 1px solid var(--fifth-color);
    }

    .navigation-auto div:not(:last-child) {
        margin-right: 15px;
    }

    .navigation-manual .manual-btn {
        border: 1px solid var(--fifth-color);
    }

    .navigation-auto div {
        border: 1px solid var(--fifth-color);
    }

    .slide-full-inf {
        right: 5px;
        bottom: -26px;
        text-align: end;
        width: 95%;
        padding-bottom: 8px;
    }

    .slide-full-inf.special-move {
        bottom: -18px;
    }

    .slide-full-inf h2 {
        margin-right: -10px;
        font-size: 18px;
        margin-bottom: 5px;
        line-height: normal;
        margin-top: 0px;
    }

    .slide-full-inf span {
        font-size: 14px;
        margin-right: -5px;
        margin-top: 7px;
    }

    .slide-full-inf span .fa-calendar {
        margin-left: 6px;
        font-size: 14px;
        margin-right: -31px;
    }

    .slide-full-inf span.pub {
        margin-right: -10px;
        margin-top: 5px;
    }

    .slider .slides .slide::before {
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.40)),
            linear-gradient(to top, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.53) 40%, rgba(0, 0, 0, 0.32));
    }
}

@media (min-width: 575px) {
    .slider {
        height: 220px;
        margin: auto;
    }

    .slider .slides {
        height: 220px;
    }

    .slider .slides .slide img {
        height: 100%;
        background-size: cover;
    }


    .navigation-manual {
        width: 90%;
        position: absolute;
        margin-top: -20px;
    }

    .navigation-manual .manual-btn:not(:last-child) {
        margin-right: 15px;
    }


    #radio1:checked~.first {
        margin-left: 0;
    }

    #radio2:checked~.first {
        margin-left: -20%;
    }

    #radio3:checked~.first {
        margin-left: -40%;
    }

    #radio4:checked~.first {
        margin-left: -60%;
    }

    .navigation-auto {
        width: 90%;
        justify-content: center;
        margin-top: 200px;
    }

    .navigation-auto div:not(:last-child) {
        margin-right: 15px;
    }

    .slide-full-inf {
        right: 4px;
        bottom: -21px;
        text-align: end;
        width: 90%;
    }

    .slide-full-inf h2 {
        margin-right: -10px;
        font-size: 18px;
    }

    .slide-full-inf span {
        font-size: 16px;
        margin-right: -5px;
    }

    .slide-full-inf span .fa-calendar {
        margin-left: 6px;
        font-size: 20px;
        margin-right: -31px;
    }

    .slide-full-inf span.pub {
        margin-right: -10px;
    }
}

@media (min-width: 768px) {
    .slider {
        height: 300px;
        margin: auto;
    }

    .slider .slides {
        height: 300px;
    }

    .slider .slides .slide img {
        height: 100%;
        background-size: cover;
    }

    .navigation-manual {
        width: 90%;
        position: absolute;
        margin-top: -25px;
    }

    .navigation-manual .manual-btn:not(:last-child) {
        margin-right: 20px;
    }


    #radio1:checked~.first {
        margin-left: 0;
    }

    #radio2:checked~.first {
        margin-left: -20%;
    }

    #radio3:checked~.first {
        margin-left: -40%;
    }

    #radio4:checked~.first {
        margin-left: -60%;
    }

    .navigation-auto {
        width: 90%;
        justify-content: center;
        margin-top: 275px;
    }

    .navigation-auto div:not(:last-child) {
        margin-right: 20px;
    }

    .slide-full-inf {
        right: -30px;
        bottom: -35px;
        text-align: end;
        width: 90%;
    }

    .slide-full-inf h2 {
        margin-right: 24px;
        font-size: 22px;
    }

    .slide-full-inf span {
        font-size: 18px;
        margin-right: 12px;
    }
}

@media (min-width: 992px) {
    .slider {
        height: 440px;
        overflow: hidden;
        margin: auto;
        direction: ltr;
    }

    .slider .slides {
        width: 500%;
        height: 440px;
        display: flex;
    }

    .slides input {
        display: none;
    }

    .slider .slides .slide {
        position: relative;
        width: 20%;
        transition: 2s;
    }

    .slider .slides .slide img {
        height: 100%;
        background-size: cover;
    }


    .navigation-manual {
        position: absolute;
        width: 90%;
        margin-top: -26px;
        justify-content: center;
    }

    .navigation-manual .manual-btn {
        border: 2px solid var(--fifth-color);
        padding: 6px;
        border-radius: 10px;
        cursor: pointer;
        transition: 1s;
    }

    .navigation-manual .manual-btn:not(:last-child) {
        margin-right: 20px;
    }

    .navigation-manual .manual-btn:hover {
        background-color: var(--fifth-color);
    }

    #radio1:checked~.first {
        margin-left: 0;
    }

    #radio2:checked~.first {
        margin-left: -20%;
    }

    #radio3:checked~.first {
        margin-left: -40%;
    }

    #radio4:checked~.first {
        margin-left: -60%;
    }

    .navigation-auto {
        width: 90%;
        position: absolute;
        justify-content: center;
        margin-top: 414px;
    }

    .navigation-auto div {
        border: 2px solid var(--fifth-color);
        padding: 6px;
        border-radius: 10px;
        transition: 1s;
    }

    .navigation-auto div:not(:last-child) {
        margin-right: 20px;
    }

    #radio1:checked~.navigation-auto .auto-btn1 {
        background-color: var(--fifth-color);
    }

    #radio2:checked~.navigation-auto .auto-btn2 {
        background-color: var(--fifth-color);
    }

    #radio3:checked~.navigation-auto .auto-btn3 {
        background-color: var(--fifth-color);
    }

    #radio4:checked~.navigation-auto .auto-btn4 {
        background-color: var(--fifth-color);
    }

    .slide-full-inf {
        right: -24px;
        bottom: -70px;
        text-align: end;
        width: 70%;
    }

    .slide-full-inf h2 {
        font-size: 26px;
        margin-bottom: 7px;
    }

    .slide-full-inf span {
        font-size: 20px;
        margin-right: 12px;
    }
}

.social {
    display: flex;
    position: fixed;
    top: 50%;
    right: -275px;
    z-index: 100000;
    transition: 1s;
}

.social.social2 {
    right: -55px;
}

.social span {
    padding: 7px;
    color: white;
    background-color: var(--second-color);
    position: absolute;
    top: -24%;
    left: -148px;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    padding-right: 155px;
    padding-left: 14px;
    box-sizing: border-box;
    padding-right: 241px;
}

.social a:not(:first-of-type) {
    margin-right: 10px;
}

.call {
    position: relative;
    right: 0px;
}

/* start styling pagination */
.pagination {
    margin: 20px;
}

.p-ul {
    list-style: none;
    display: flex;
    justify-content: center;
    font-family: 'Calibri';
    padding-right: 0;
}

.p-ul li {
    margin-right: 3px;
    font-weight: bold;
    box-sizing: border-box;
}

.p-ul li a {
    text-decoration: none;
    transition: 0.3s;
    padding: 5px 10px;
    border: 1px solid var(--fourth-color);
    color: var(--fourth-color);
    border-radius: 5px;
}

.p-ul li a:hover,
.p-ul li a.active {
    background-color: var(--fourth-color);
    color: white !important;
}


@media (max-width: 574px) {
    .pagination {
        margin: 10px;
    }

    .p-ul li {
        margin-right: 2px;
    }

    .p-ul li a {
        padding: 3px 7px;
    }
}

@media (min-width: 575px) {
    .p-ul li {
        margin-right: 2px;
    }

    .p-ul li a {
        padding: 4px 7px;
    }
}

@media (min-width: 768px) {
    .p-ul li a {
        padding: 5px 8px;
    }
}

@media (min-width: 992px) {
    .p-ul li {
        margin-right: 3px;
    }

    .p-ul li a {
        padding: 5px 10px;
    }
}

/* end styling pagination */

/* styling special images */
.spe-img4 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g1 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g2 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g3 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.my-g {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g4 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g5 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g9 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.gd1 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.gd2 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.my-gd2 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g6 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

.g7 {
    width: 400px !important;
    height: 400px !important;
    display: block !important;
    margin: 10px 0 !important;
}

.g8 {
    width: 400px !important;
    height: 400px !important;
    position: relative !important;
    left: 0 !important;
}

@media (max-width: 574px) {
    .spe-img4 {
        width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g1 {
        width: 250px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g2 {
        width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g3 {
        width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .my-g {
        width: 330px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g4 {
        width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g5 {
        width: 330px !important;
        height: 185px !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g9 {
        width: 250px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .gd1 {
        width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .gd2 {
        width: 340px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .my-gd2 {
        width: 250px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g6 {
        width: 290px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g7 {
        width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }

    .g8 {
        width: 290px !important;
        height: auto !important;
        display: block !important;
        margin: 10px 0 !important;
    }
}

@media (min-width: 575px) {
    .spe-img4 {
        width: 450px !important;
        height: auto !important;
    }

    .g1 {
        width: 300px !important;
        height: auto !important;
    }

    .g2 {
        width: 400px !important;
        height: auto !important;
    }


    .g3 {
        width: 400px !important;
        height: auto !important;
    }

    .my-g {
        width: 450px !important;
        height: auto !important;
    }

    .g4 {
        width: 350px !important;
        height: auto !important;
    }

    .g5 {
        width: 445px !important;
        height: 218px !important;
    }

    .g9 {
        width: 300px !important;
        height: auto !important;
    }

    .gd1 {
        width: 400px !important;
        height: auto !important;
    }

    .gd2 {
        width: 464px !important;
        height: auto !important;
    }

    .my-gd2 {
        width: 350px !important;
        height: auto !important;
    }

    .g6 {
        width: 493px !important;
        height: auto !important;
    }

    .g7 {
        width: 350px !important;
        height: auto !important;
    }

    .g8 {
        width: 501px !important;
        height: auto !important;
    }
}

@media (min-width: 768px) {
    .spe-img4 {
        width: 500px !important;
        height: auto !important;
    }

    .g1 {
        width: 350px !important;
        height: auto !important;
    }

    .g2 {
        width: 450px !important;
        height: auto !important;
    }

    .g3 {
        width: 400px !important;
        height: auto !important;
    }

    .g4 {
        width: 450px !important;
        height: auto !important;
    }

    .g5 {
        width: 568px !important;
        height: 244px !important;
    }

    .g9 {
        width: 400px !important;
        height: auto !important;
    }

    .gd1 {
        width: 450px !important;
        height: auto !important;
    }

    .gd2 {
        width: 620px !important;
        height: auto !important;
    }

    .my-gd2 {
        width: 400px !important;
        height: auto !important;
    }

    .g6 {
        width: 620px !important;
        height: auto !important;
    }

    .g7 {
        width: 400px !important;
        height: auto !important;
    }

    .g8 {
        width: 586px !important;
        height: auto !important;
    }
}

@media (min-width: 992px) {
    .spe-img4 {
        width: 600px !important;
        height: auto !important;
    }

    .g1 {
        width: 400px !important;
        height: auto !important;
    }

    .g2 {
        width: 500px !important;
        height: auto !important;
    }

    .g3 {
        width: 500px !important;
        height: auto !important;
    }

    .my-g {
        width: 560px !important;
        height: auto !important;
    }

    .g4 {
        width: 598px !important;
        height: auto !important;
    }

    .g5 {
        width: 500px !important;
        height: auto !important;
    }

    .g9 {
        width: 500px !important;
        height: auto !important;
    }

    .gd1 {
        width: 600px !important;
        height: auto !important;
    }

    .gd2 {
        width: 700px !important;
        height: auto !important;
    }

    .my-gd2 {
        width: 500px !important;
        height: auto !important;
    }

    .g6 {
        width: 700px !important;
        height: auto !important;
    }

    .g7 {
        width: 500px !important;
        height: auto !important;
    }

    .g8 {
        width: 640px !important;
        height: auto !important;
    }
}

/* styling e_yemen table */
.e_yemen {
    margin-bottom: 0;
    margin-top: 0;
    border-spacing: 1px;
}

.e_yemen thead tr td {
    font-weight: bold !important;
    background-color: var(--second-color);
    color: white;
}

.e_yemen tbody tr td:first-child {
    writing-mode: vertical-rl;
    width: fit-content;
    text-align: center;
}

.e_yemen.six_table tbody tr td:first-child {
    width: 109px;
}

.e_yemen.six_table tbody tr td:nth-of-type(3) {
    width: 98px;
}

.e_yemen.first_table tbody tr td:nth-of-type(2) {
    width: 133px;
}

.e_yemen tbody tr td ol,
.e_yemen tbody tr td ul,
.e_yemen tbody tr td p,
.e_yemen tbody tr td,
.e_yemen thead tr td {
    font-size: 17px !important;
    vertical-align: text-top;
}

.e_yemen tbody tr td ol,
.e_yemen tbody tr td ul {
    padding-right: 10px;
}

.e_yemen.links {
    width: 50%;
}

h5 {
    margin-top: 0;
    text-align: center;
}

.first-td {
    writing-mode: horizontal-tb !important;
}

@media (max-width: 574px) {
    table {
        margin: 10px 0 !important;
    }

    .e_yemen {
        border-spacing: 1px;
    }

    .e_yemen tbody tr td ol,
    .e_yemen tbody tr td ul,
    .e_yemen tbody tr td p,
    .e_yemen tbody tr td,
    .e_yemen thead tr td {
        font-size: 6px !important;
        padding: 5px !important;
    }
}

@media (min-width: 575px) {
    .e_yemen {
        border-spacing: 1px;
    }

    .e_yemen tbody tr td ol,
    .e_yemen tbody tr td ul,
    .e_yemen tbody tr td p,
    .e_yemen tbody tr td,
    .e_yemen thead tr td {
        font-size: 8px !important;
    }
}

@media (min-width: 768px) {

    .e_yemen tbody tr td ol,
    .e_yemen tbody tr td ul,
    .e_yemen tbody tr td p,
    .e_yemen tbody tr td,
    .e_yemen thead tr td {
        font-size: 13px !important;
    }
}

@media (min-width: 992px) {

    .e_yemen tbody tr td ol,
    .e_yemen tbody tr td ul,
    .e_yemen tbody tr td p,
    .e_yemen tbody tr td {
        font-size: 14px !important;
    }
}

/* end */

/* aside  */
.small-screen {
    position: relative;
    top: -13px;
}

.small-screen2 {
    position: relative;
    top: -27px;
}

.mobile-li {
    position: relative;
    top: -15px;
}



/* styling social is */


.gov td {
    text-align: center;
}

.gov tr td ul li {
    font-size: 28px;
}

.gov .td {
    font-size: 25px;
}

.gov ul {
    padding-right: 0;
}

.gov-p,
.gov-p2 {
    text-align: center !important;
    font-size: 30px !important;
}

.gov-p {
    margin-bottom: 3px;
}

.gov-p2 {
    margin-top: 3px;
}

.gov {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 574px) {
    .gov td {
        text-align: start;
    }

    .gov .td {
        font-size: 14px;
    }

    .gov tr td ul li {
        font-size: 14px;
    }

    .gov-p,
    .gov-p2 {
        font-size: 14px !important;
    }
}

@media (min-width: 575px) {
    .gov td {
        text-align: center;
    }

    .gov .td {
        font-size: 15px;
    }

    .gov tr td ul li {
        font-size: 15px;
    }

    .gov-p,
    .gov-p2 {
        font-size: 16px !important;
    }
}

@media (min-width: 768px) {
    .gov .td {
        font-size: 16px;
    }

    .gov tr td ul li {
        font-size: 16px;
    }

    .gov-p,
    .gov-p2 {
        font-size: 20px !important;
    }
}

@media (min-width: 992px) {
    .gov .td {
        font-size: 18px;
    }

    .gov tr td ul li {
        font-size: 18px;
    }

    .gov-p,
    .gov-p2 {
        font-size: 22px !important;
    }
}

/* end  */
.show-all {
    width: fit-content !important;
    padding: 5px !important;
}

@media (max-width: 574px) {
    .show-all {
        font-size: 18px !important;
    }
}

@media (min-width: 575px) {
    .show-all {
        font-size: 18px !important;
    }
}

@media (min-width: 768px) {
    .show-all {
        font-size: 22px !important;
    }
}

@media (min-width: 992px) {
    .show-all {
        font-size: 26px !important;
    }
}


/* start styling index imgs study */
.show-studies-index {
    margin-top: 20px !important;
}

.show-studies-index .show-index-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.show-studies-index .show-index-imgs .card {
    width: calc(33% - 20px) !important;
    overflow: hidden;
    margin-bottom: 40px !important;
    background-color: white;
    transition: 0.3s;
}

.show-studies-index .show-index-imgs .card:hover {
    background-color: white;
}

.show-studies-index .show-index-imgs .card img {
    height: 250px !important;
    max-height: 250px !important;
    transition: 0.5s;
    cursor: pointer;
}

.show-studies-index .show-index-imgs .card a {
    text-decoration: none;
    font-family: 'Calibri';
    color: var(--sub-color);
    display: block;
    transition: 0.3s;
}


.show-studies-index .show-index-imgs .card a .text-info-index {
    padding-top: 10px;
}

.show-studies-index .show-index-imgs .card a .text-info-index i {
    margin-left: 5px;
}

.show-studies-index .show-index-imgs .card a .text-info-index p {
    margin-right: 0;
    margin-bottom: 20px !important;
    font-family: 'CodecProBold';
    line-height: 1.3 !important;
}

.show-studies-index .show-index-imgs .card a .text-info-index p.pod {
    margin-top: 0;
    margin-right: 10px;
}

.show-studies-index .show-index-imgs .card a .text-info-index span {
    font-size: 18px;
    color: var(--date-color);
    font-weight: normal !important;
    font-family: 'CodecProRegular';
}

.show-studies-index .show-all {
    display: block;
    text-align: center;
    width: fit-content !important;
    margin: 10px auto;
    padding: 5px 17px !important;
}

@media (max-width: 574px) {
    .show-studies-index {
        margin-top: 0px !important;
        background: white;
        padding-top: 25px;
        padding-bottom: 32px;
        margin-bottom: 26px;

    }

    .show-studies-index .show-index-imgs .card a .text-info-index {
        padding-top: 0;
    }

    .show-studies-index .show-index-imgs .card {
        width: calc(100%) !important;
        margin-bottom: 20px !important;
        margin-top: -5px;

    }

    .show-studies-index .show-index-imgs .card:not(:last-of-type) {
        padding-bottom: 6px;
        border-bottom: 1px solid #ddd;
    }

    .show-studies-index .show-index-imgs .card img {
        width: 100%;
        height: 200px !important;
        max-height: 200px !important;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index p {
        font-size: 14px;
        margin-top: 7px !important;
        margin-bottom: 10px !important;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index span {
        font-size: 12px;

    }

    .show-studies-index .show-all {
        margin: 18px auto 0 !important;
        font-size: 14px !important;
        padding: 9px 28px !important;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .slide-full-inf.special-move {
        bottom: -4px;
    }

    .show-studies-index {
        margin-top: -10px !important;
        background: white;
        padding-top: 25px;
        padding-bottom: 32px;
        margin-bottom: 23px;
    }

    .show-studies-index .show-index-imgs .card {
        width: calc(98%) !important;
        margin-bottom: 5px !important;
        margin-left: auto;
        margin-right: auto;
        margin-top: 5px;
    }

    .show-studies-index .show-index-imgs .card:not(:last-of-type) {
        border-bottom:
            1px solid #ddd;
    }

    .show-studies-index .show-index-imgs .card img {
        width: 100%;
        height: 220px !important;
        max-height: 220px !important;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index p {
        font-size: 14px;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index span {
        font-size: 12px;
    }

    .show-studies-index .show-all {
        margin: 5px auto;
        font-size: 18px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .show-studies-index {
        margin-top: 20px !important;
    }

    .show-studies-index .show-index-imgs .card {
        width: calc(33% - 8px) !important;
        margin-bottom: 25px !important;
        margin-top: -12px;
    }

    .show-studies-index .show-index-imgs .card img {
        width: 100%;
        height: 140px !important;
        max-height: 140px !important;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index p {
        font-size: 15px;
        margin-right: 8px;
        margin-top: 10px;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index span {
        font-size: 13px;
        margin-right: 8px;
    }

    .show-studies-index .show-all {
        margin: 5px auto;
        font-size: 16px !important;
        padding: 5px 25px !important;
    }
}

@media (min-width: 992px) {
    .show-studies-index {
        margin-top: 30px !important;
    }

    .show-studies-index .show-index-imgs .card {
        width: calc(25% - 20px) !important;
        margin-bottom: 48px !important;
        margin-top: -20px;
    }

    .show-studies-index .show-index-imgs .card img {
        width: 100%;
        height: 140px !important;
        max-height: 140px !important;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index p {
        font-size: 16px;
        margin-right: 10px;
        margin-top: 10px;
        padding-left: 10px;
    }

    .show-studies-index .show-index-imgs .card a .text-info-index span {
        font-size: 14px;
        margin-right: 10px;
    }

    .show-studies-index .show-all {
        margin: 5px auto;
        font-size: 16px !important;
        padding: 7px 32px !important;
    }
}

/* end styling index imgs study */
/* start styling studies imgs study */
.show-all-studies {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.show-all-studies .studies-card {
    width: calc(33% - 20px) !important;
    margin-bottom: 50px !important;
    height: 250px;
    box-sizing: border-box;
    transition: 0.3s;
}

.show-all-studies .video-card {
    width: calc(33% - 20px) !important;
    margin-bottom: 50px !important;
    height: 250px;
    box-sizing: border-box;
    transition: 0.3s;
}

.show-all-studies .studies-card img {
    width: 100%;
    height: 100% !important;
    max-height: 250px !important;
}

.show-all-studies .studies-card a {
    text-decoration: none;
    font-size: 25px;
    transition: 0.3;
    color: #000000;
}


.show-all-studies .studies-card .study-text-info {
    box-sizing: border-box;
    margin-top: 0;
    background-color: white;

}

.show-all-studies .studies-card .study-text-info span {
    color: var(--date-color);
}

.show-all-studies .studies-card .study-text-info p {
    margin-top: -4px;
    padding: 10px 6px 20px;
    font-family: 'CodecProBold';
    transition: 0.3s;
    color: var(--sub-color);
    line-height: 1.3;
}


@media (max-width: 574px) {
    .show-all-studies {
        margin-top: 8px;
        background-color: white;
        padding-top: 25px;
        padding-bottom: 32px;
    }

    .show-all-studies .studies-card {
        width: calc(100% - 10px) !important;
        margin-bottom: 20px !important;
        border-bottom: 1px solid #ddd !important;
        margin-left: auto;
        margin-right: auto;
    }

    .show-all-studies .video-card {
        width: calc(100% - 10px) !important;
        margin-bottom: 20px !important;
        border-bottom: 1px solid #ddd !important;
        margin-left: auto;
        margin-right: auto;
    }

    .show-all-studies .studies-card img {
        width: 100%;
        height: 100% !important;
        min-height: 200px !important;
        max-height: 200px !important;
        margin-bottom: 5px;
    }

    .show-all-studies .studies-card a {
        font-size: 14px;
    }

    .show-all-studies .studies-card .study-text-info {
        padding-top: 2px;
    }

    .show-all-studies .studies-card .study-text-info span {
        font-size: 12px;
        margin-right: 5px;
    }

    .show-all-studies .studies-card .study-text-info p {
        font-size: 14px;

    }

    .show-all-studies .studies-card .study-text-info p:not(:last-of-type) {
        border-bottom: 1px solid #ddd;
        padding-bottom: 12px;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .show-all-studies {
        margin-top: 8px;
    }

    .show-all-studies .studies-card {
        width: calc(98%) !important;
        margin-bottom: 45px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .show-all-studies .video-card {
        width: calc(98%) !important;
        margin-bottom: 45px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .show-all-studies .studies-card img {
        width: 100%;
        height: 100% !important;
        max-height: 220px !important;
    }

    .show-all-studies .studies-card a {
        font-size: 13px;
    }

    .show-all-studies .studies-card .study-text-info span {
        font-size: 12px;
        margin-top: 10px;
        display: block;
    }

    .show-all-studies .studies-card .study-text-info p {
        padding-right: 0;
        font-size: 14px;
        margin-top: 1px;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .show-all-studies {
        margin-top: 15px;
    }

    .show-all-studies .studies-card {
        width: calc(33% - 8px) !important;
        margin-bottom: 10px !important;
    }

    .show-all-studies .video-card {
        width: calc(33% + 70px) !important;
        margin-bottom: 10px !important;
    }

    .show-all-studies .studies-card img {
        width: 100%;
        height: 100% !important;
        max-height: 140px !important;
    }

    .show-all-studies .studies-card a {
        font-size: 16px;
    }

    .show-all-studies .studies-card .study-text-info {
        margin-top: 0;

    }

    .show-all-studies .studies-card .study-text-info span {
        font-size: 13px;
        margin-top: 10px;
        display: block;
    }

    .show-all-studies .studies-card .study-text-info p {
        margin-top: -5px;
        font-size: 15px;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .show-all-studies {
        margin-top: 20px;
    }

    .show-all-studies .studies-card {
        width: calc(25% - 20px) !important;
        margin-bottom: 32px !important;
    }

    .show-all-studies .studies-card img {
        width: 100%;
        height: 100% !important;
        max-height: 140px !important;
    }

    .show-all-studies .studies-card a {
        font-size: 18px;
    }

    .show-all-studies .studies-card .study-text-info {
        margin-top: 0;
        padding-top: 10px;

    }

    .show-all-studies .studies-card .study-text-info span {
        font-size: 14px;
        padding: 10px 6px 20px;
    }

    .show-all-studies .studies-card .study-text-info p {
        font-size: 16px;
        margin-top: 4px;
    }
}

/* end styling studies imgs study */
/* start styling books page */
.spe-h1.book {
    font-style: italic;
}

.books {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    box-shadow: 1px 1px 10px silver;
    margin-top: 30px;
}

.books .book-card {
    width: calc(33% - 60px);
    margin-bottom: 50px;
    margin-top: 30px;
    overflow: hidden;
    transform: translateX(1000px);
    transition: 0.3s;
    animation-name: move-book;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.books .book-card img {
    width: 100%;
    height: 300px;
}

.books .book-card .book-info {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #b0b0b05f;
    padding: 20px;
    font-family: 'Calibri';
    box-sizing: border-box;
    margin-top: -10px !important;
    width: 100%;
    font-size: 12px;
    overflow: hidden;
    font-style: italic;
    text-align: center;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}


.books .book-card .book-info:hover {
    background-color: white;
    color: black;
}

@keyframes move-book {
    to {
        transform: translateX(0);
    }
}


@media (max-width: 574px) {

    .books .book-card {
        width: calc(100% - 120px);
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .books .book-card img {
        height: 250px;
    }

    .books .book-card .book-info {
        padding: 10px;
        font-size: 10px;
    }
}

@media (min-width: 575px) {
    .books .book-card {
        width: calc(100% - 120px);
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .books .book-card img {
        height: 300px;
    }

    .books .book-card .book-info {
        padding: 10px;
        font-size: 10px;
    }
}

@media (min-width: 768px) {

    .books .book-card {
        width: calc(50% - 70px);
    }

    .books .book-card .book-info {
        padding: 15px;
        font-size: 12px;
    }

    .books .book-card img {
        height: 330px;
    }
}

@media (min-width: 992px) {
    .books .book-card {
        width: calc(33% - 60px);
    }

    .books .book-card img {
        height: 380px;
    }
}

/* end styling books page */

.first-annou {
    width: fit-content;
}

.first-annou2 {
    width: fit-content;
}

@media (max-width: 574px) {
    .first-annou {
        width: 185px !important;
    }

    .first-annou2 {
        width: 100px !important;
    }
}

.index-news h2 {
    margin: 20px auto !important;
}

/* start tow-books */
/* الحاوية الأساسية */
.tow-books {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tow-books .daw {
    width: calc(40% - 30px) !important;
    margin-bottom: 40px !important;
    position: relative;
}

.tow-books .daw a {
    text-decoration: none;
}

.tow-books .daw .card {
    background-color: white;
    margin-top: 15px;
    width: 100%;
    transition: 1s ease;
}


.tow-books .daw .card.download:hover,
.tow-books .daw .card.view:hover {
    transform: none;
}

.tow-books .daw .card img {
    width: 100%;
    height: 100%;
}


.tow-books .daw .card .daw-info {
    padding: 10px;
    font-family: 'CodecProRegular';
}

.tow-books .daw .card .daw-info span {
    font-size: 16px;
}

.tow-books .daw .card .daw-info p {
    color: var(--sub-color);
    margin: 9px 0;
    font-family: 'CodecProBold';
    line-height: 1.3 !important;
}

.tow-books .daw .card a.download,
.tow-books .daw .card a.view {
    position: absolute;
    top: 19px;
    background: var(--fifth-color);
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
}

.tow-books .daw .card a.download {
    left: 5px;
}

.tow-books .daw .card a.view {
    right: 5px;
}

.tow-books .daw .card a.download:hover,
.tow-books .daw .card a.view:hover {
    background-color: var(--fourth-color);
    transform: none;
}



@media (max-width: 574px) {

    /* شاشات الجوال الصغيرة */
    .tow-books {
        flex-direction: column;
    }

    .tow-books .daw {
        width: calc(100%) !important;
        margin: 0 auto !important;
    }

    .tow-books .daw .card {
        margin-top: 15px;
    }


    .tow-books .daw .card .daw-info {
        font-size: 14px;
    }

    .tow-books .daw .card a.download,
    .tow-books .daw .card a.view {
        top: 21px;
        padding: 5px;
        font-size: 14px;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .tow-books .daw {
        width: calc(100%) !important;
        margin-bottom: 20px !important;
        margin: 0 auto 20px;
        margin-bottom: 20px;
    }

    .tow-books .daw .card {
        margin-top: 10px;
    }

    .tow-books .daw .card .daw-info {
        font-size: 14px;
    }

    .tow-books .daw .card a.download,
    .tow-books .daw .card a.view {
        top: 13px;
        font-size: 14px;
    }

    .tow-books .daw .card a.download {
        left: 3px;
    }

    .tow-books .daw .card a.view {
        right: 3px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .tow-books .daw {
        width: calc(50% - 24px) !important;
        margin-bottom: 25px !important;
    }

    .tow-books .daw .card {
        margin-top: 10px;
    }

    .tow-books .daw .card .daw-info {
        font-size: 14px;
    }

    .tow-books .daw .card a.download,
    .tow-books .daw .card a.view {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .tow-books .daw {
        width: calc(50% - 16px) !important;
        margin-bottom: 40px !important;
    }

    .tow-books .daw .card {
        margin-top: 15px;
    }

    .tow-books .daw .card .daw-info {
        font-size: 18px;
    }

    .tow-books .daw .card a.download,
    .tow-books .daw .card a.view {
        top: 19px;
        padding: 8px;
        border-radius: 8px;
        font-size: 18px;
    }

    .tow-books .daw .card a.download {
        left: 5px;
    }

    .tow-books .daw .card a.view {
        right: 5px;
    }
}

/* end tow-books */
ul .aside-nested-list {
    margin-right: 0;
}

.aside-ul .aside-nested-list {
    margin-right: 0;
}

.date-info {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--date-color);
    font-family: 'CodecProRegular';
}

.date-info i {
    margin-left: 3px;
}

.studies-flex {
    display: flex;
    align-items: flex-start;
    /* يضمن أن العنصر اللاصق لا يتأثر بمحاذاة العناصر */
}

.studies-flex .nested-ref {
    display: none;
}

.show-some-studies {
    width: 356px;
    position: sticky;
    top: 0;
    max-height: 100vh;
    /* تحديد ارتفاع أقصى حتى لا يشغل الشاشة بالكامل */
    overflow: auto;
    /* تمكين التمرير داخل العنصر */
    /* إخفاء شريط التمرير */
    scrollbar-width: none;
    /* للمتصفحات التي تدعم هذا الخيار مثل Firefox */
}

.studies-flex .show-some-studies::-webkit-scrollbar {
    display: none;
    /* إخفاء شريط التمرير في Chrome, Safari, Edge */
}

.show-some-studies a {
    color: black;
    text-decoration: none;
}

.show-some-studies a .study-info-show {
    background-color: white;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.studies-text-some-info {
    padding: 10px;
    font-size: 14px;
}

.studies-text-some-info span {
    color: var(--date-color);
    font-family: 'CodecProRegular';
    margin-bottom: 10px;
}

.studies-text-some-info h3 {
    margin: 5px 0;
    font-family: 'CodecProBold';
    line-height: 1.3 !important;
    color: var(--sub-color);
}

.show-some-studies .image-card {
    width: 100%;
    max-height: 100%;
}

.show-some-studies .image-card img {
    width: 100%;
    max-height: 100%;
}

@media (max-width: 574px) {
    .studies-flex {
        flex-direction: column;
    }

    .studies-flex .nested-ref {
        display: block;
        width: 100%;
    }

    .show-some-studies {
        width: 100%;
        background:
            white;
        padding:
            12px 10px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .show-some-studies a .study-info-show {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .studies-text-some-info {
        font-size: 11px;
    }

    .studies-text-some-info span {
        font-size: 12px;
        display: block;
        margin-bottom: 4px;
        margin-right: -4px;
    }

    .studies-text-some-info h3 {
        margin: 0 -3px;
        font-size: 14px;
    }

    .show-some-studies .image-card {
        width: 100%;
        max-height: 100%;
    }

    .show-some-studies .image-card img {
        width: 100%;
        max-height: 200px;
        display: block;
        margin: 0 auto;
    }

    .date-info {
        margin-top: 20px;
        font-size: 12px;
        margin-bottom: 14px;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .studies-flex {
        flex-direction: column;
    }

    .studies-flex .nested-ref {
        display: block;
    }

    .show-some-studies {
        width: 100%;
        background:
            white;
        padding:
            10px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .show-studies-h3 {
        width: 100%;
        margin: 10px auto;
        text-align: center;
        padding: 12px 7px;
        box-sizing: border-box;
    }

    .show-some-studies a .study-info-show {
        padding-bottom: 10px;
        width: 100%;
        margin: 10px auto;
    }

    .studies-text-some-info {
        font-size: 11px;
    }

    .studies-text-some-info span {
        font-size: 12px;
        display: block;
        margin-bottom: 10px;
    }

    .studies-text-some-info h3 {
        margin: 10px 0;
        font-size: 14px;
    }


    .show-some-studies .image-card img {
        width: 100%;
        max-height: 169px;
        display: block;
        margin: 0 auto;
    }

    .date-info {
        font-size: 14px;
        display: block;
        margin-bottom: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {


    .studies-flex {
        display: flex;
    }

    .show-some-studies {
        width: 40%;
        margin-right: 10px;
        margin-top: 17px;
    }

    .show-some-studies a {
        color: black;
        text-decoration: none;
    }

    .show-some-studies a .study-info-show {
        background-color: white;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .studies-text-some-info {
        padding: 10px;
        font-size: 11px;
    }

    .studies-text-some-info span {
        font-size: 13px;
        display: block;
        margin-bottom: 10px;
    }

    .studies-text-some-info h3 {
        margin: -4px -2px;
        font-family: 'CodecProBold';
        font-size: 15px;
    }

    .show-some-studies .image-card {
        width: 100%;
        max-height: 100%;
    }

    .show-some-studies .image-card img {
        width: 100%;
        max-height: 100%;
    }

    .date-info {
        margin-bottom: 10px;
        margin-top: 10px;
        font-size: 16px;
    }

    .container.articles .show-references,
    .container.articles .refrences {
        display: block;
    }

    .container.articles .refrences {
        width: 75% !important;
    }
}

@media (min-width: 992px) {
    .studies-flex {
        display: flex;
    }

    .show-some-studies {
        margin-right: 10px;
        margin-top: -3px;
    }

    .show-some-studies a {
        color: black;
        text-decoration: none;
    }

    .show-some-studies a .study-info-show {
        background-color: white;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .studies-text-some-info {
        padding: 10px;
        font-size: 11px;
    }

    .studies-text-some-info span {
        font-size: 14px;
        display: block;
        margin-bottom: 4px;
        margin-right: -4px;
    }

    .studies-text-some-info h3 {
        margin: 1px -3px;
        font-family: 'CodecProBold';
        font-size: 16px;
    }

    .show-some-studies .image-card {
        width: 100%;
        max-height: 100%;
    }

    .show-some-studies .image-card img {
        width: 100%;
        max-height: 140px !important;
    }

    .date-info {
        margin-bottom: 26px !important;
        margin-top: 10px;
        font-size: 16px;
    }

    .container.articles .show-references,
    .container.articles .refrences {
        display: block;
    }

    .container.articles .refrences {
        width: 75% !important;
    }
}

.pub {
    font-size: 18px;
    font-family: "CodecProExtraBold";
    color: var(--fourth-color);
}

.special-title {
    font-size: 20px;
}

.special-title2 {
    font-size: 18px;
}

.special-title3 {
    font-size: 18px;
}

.img-singapore {
    width: 300px;
    height: auto;
}

@media (max-width: 574px) {
    .pub {
        font-size: 15px;
    }

    .special-title {
        font-size: 18px !important;
    }

    .special-title2 {
        font-size: 16px !important;
    }

    .special-title3 {
        font-size: 15px !important;
    }

    .img-singapore {
        width: 200px !important;
        height: auto !important;
    }
}

@media (min-width: 575px) {
    .pub {
        font-size: 15px;
    }

    .special-title {
        font-size: 16px !important;
    }

    .special-title2 {
        font-size: 17px !important;
    }

    .special-title3 {
        font-size: 15px !important;
    }

    .img-singapore {
        width: 220px !important;
        height: auto !important;
    }
}

@media (min-width: 768px) {
    .pub {
        font-size: 13px;
    }

    .special-title {
        font-size: 18px !important;
    }

    .special-title2 {
        font-size: 17px !important;
    }

    .special-title3 {
        font-size: 15px !important;
    }

    .img-singapore {
        width: 250px !important;
        height: auto !important;
    }
}

@media (min-width: 992px) {
    .pub {
        font-size: 14px;
        margin-bottom: 20px !important;
        display: block;
    }

    .special-title {
        font-size: 20px !important;
    }

    .special-title2 {
        font-size: 18px !important;
    }

    .special-title3 {
        font-size: 16px !important;
    }

    .img-singapore {
        width: 300px !important;
        height: auto !important;
    }
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls .studies-controls {
    display: flex;

    align-items: center;
}

.controls .studies-controls i {
    margin-left: 10px;
    font-size: 30px;
    color: var(--date-color);
    cursor: pointer;
}

.controls .studies-social {
    margin-left: 30px;
}

.controls .studies-social .studies-social2 {
    display: flex;
}

.controls .studies-social .studies-social2 a {
    color: var(--date-color);
    margin-left: 16px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.controls .studies-social .studies-social2 a:hover {
    color: var(--fourth-color);
}

.controls #increaseFont,
.controls #decreaseFont {
    background-color: #5A70A2;
    outline: none;
    color: white;
    border: none;
    margin-left: 5px;
    transition: 0.3s;
    font-family: 'Calibri';
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 574px) {
    .controls {
        margin-top: 20px;
    }

    .controls .studies-social .studies-social2 a {
        margin-left: 12px;
        font-size: 17px;
    }

    .controls .studies-controls i {
        margin-left: 25px;
        font-size: 25px;
    }

    .controls #increaseFont,
    .controls #decreaseFont {
        margin-left: 5px;
        font-size: 16px;
        width: 45px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 0;
    }

    .controls #increaseFont img,
    .controls #decreaseFont img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (min-width: 575px) {
    .controls {
        margin-top: 20px;
    }

    .controls #increaseFont,
    .controls #decreaseFont {
        margin-left: 5px;
        font-size: 16px;
        width: 45px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 0;
    }

    .controls #increaseFont img,
    .controls #decreaseFont img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (min-width: 768px) {

    .controls #increaseFont,
    .controls #decreaseFont {
        margin-left: 4px;
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .controls .studies-controls i {
        margin-left: 40px;
        font-size: 30px;
    }

    .controls #increaseFont,
    .controls #decreaseFont {
        margin-left: 5px;
        font-size: 16px;
        width: 49px;
        height: 39px;
    }

    .controls #increaseFont img,
    .controls #decreaseFont img {
        max-width: 100%;
        max-height: 100%;
    }
}

.contactus a {
    font-weight: bold;
}

.first-page .studies-flex a:visited,
.contactus a:visited,
.contactus a {
    color: black;

}

.contactus a.dark-mode {
    color: white;
}

.study-item {
    display: none;
    /* إخفاء العناصر افتراضيًا */
}

.study-item.active {
    display: block;
    /* عرض العناصر النشطة فقط */
}

.search-header {
    display: flex;
    align-items: center;
}

.search-header.tab {
    position: absolute;
    left: 0;
    bottom: 16px;
}

header input {
    width: 175px;
    border-bottom: 1px solid var(--fourth-color);
    border-top: none;
    border-right: none;
    border-left: none;
    height: 22px;
    background: #f2f2f2;
    font-family: 'CodecProRegular' !important;
    font-size: 12px;
    color: var(--sub-color) !important;
}

header input:focus {
    outline: none !important;

}

.search-header button {
    color: var(--sub-color);
    border: none;
    height: 22px;
    cursor: pointer;
    position: absolute;
    top: 1px;
    left: 5px;
    background-color: transparent !important;
}

@media (max-width: 1137px) {
    header input {
        width: 100px;
    }
}

header .phone {
    margin-right: 13px;
    width: 185px;
    box-sizing: border-box;
    position: relative;
    height: 35px;
}

header .phone button {
    margin-right: 0;
    position: absolute;
    left: -10px;
    width: fit-content;
    top: 5%;
}

.footer-social2 {
    display: flex;
}

.publications {
    color: #5E6F9C;
    margin-bottom: 0;
    font-family: 'CodecProExtraBold';
}

@media (max-width: 574px) {
    .publications.in-index {
        font-size: 20px;
        margin-top: 20px;
    }

    .publications {
        font-size: 20px;
    }
}

@media (min-width: 575px) {
    .publications {
        font-size: 19px;
        margin-bottom: -7px;
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    .publications {
        font-size: 23px;
        margin-bottom: -17px;
        margin-right: 0;
        margin-top: 22px;
    }
}

@media (min-width: 992px) {
    .publications {
        font-size: 26px;
        margin-right: 0;
        margin-top: 34px;
    }
}

/* styling osus */
.osus-first-content h3,
.osus-first-content h2 {
    color: var(--second-color);
    font-family: 'CodecProBold';
}

.osus-first-content .osus-first-container {
    display: flex;
    margin-bottom: 100px;
}

.osus-first-content .osus-first-container .osus-first-text {
    margin-right: 20px;
    line-height: 1.8;
    font-size: 18px;
    text-align: justify;
}

.osus-first-content .osus-first-container .osus-first-text p:first-of-type {
    font-family: 'CodecProBold';
}


.osus-first-content .osus-first-container img {
    width: 486px;
    height: 426px;
    box-shadow: 1px 1px 3px 2px #251e1e54;
}

.osus-first-content .osus-second-container {
    display: flex;
    margin-bottom: 100px;
}

.osus-first-content .osus-second-container img {
    width: 486px;
    height: 426px;
    box-shadow: 1px 1px 3px #251e1e54;
}

.osus-first-content .osus-second-container .osus-second-text {
    margin-right: 20px;
    line-height: 1.8;
    font-size: 18px;
    text-align: justify;
    margin-top: -6px;
}

.osus-first-content .osus-second-container .osus-second-text .osus-links {
    display: flex;
    justify-content: center;
}

.osus-first-content .osus-second-container .osus-second-text .osus-links a {
    margin-left: 20px;
    padding: 0px 65px;
    background: #1A6782;
    color: white;
    border: none;
    margin-top: 195px;
}

.osus-second-container .second-osus {
    width: 486px;
    height: 426px;
    box-shadow: 1px 1px 3px #251e1e54;
}

.osus-second-text.second-osus-container {
    width: 60%;
}

@media (max-width: 574px) {

    .osus-first-content h3 {
        font-size: 14px;
    }

    .osus-first-content h2 {
        font-size: 16px;
    }

    .osus-first-content .osus-first-container {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .osus-first-content .osus-first-container .osus-first-text {
        font-size: 14px;
        margin-right: 0;
    }

    .osus-first-content .osus-first-container img {
        width: 100%;
        height: auto;
    }

    .osus-first-content .osus-second-container {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .osus-first-content .osus-second-container img {
        width: 95%;
        height: auto;
    }

    .osus-first-content .osus-second-container .osus-second-text {
        font-size: 14px;
        margin-right: 0;
        margin-top: 0px;
        width: 95%;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links {
        display: flex;
        justify-content: center;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links a {
        margin-left: 8px;
        padding: 2px 10px;
        margin-top: 0;
        font-size: 10px;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links a:not(:last-of-type) {
        margin-left: 10px;
    }

    .osus-second-container .second-osus {
        width: 95% !important;
        height: auto !important;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .osus-first-content h3 {
        font-size: 14px;
        margin-right: 26px;
    }

    .osus-first-content h2 {
        font-size: 16px;
        margin-right: 26px;
    }

    .osus-first-content .osus-first-container {
        flex-direction: column;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .osus-first-content .osus-first-container .osus-first-text {
        font-size: 14px;
        margin-right: 0;
    }

    .osus-first-content .osus-first-container img {
        width: 100%;
        height: auto;
    }

    .osus-first-content .osus-second-container {
        flex-direction: column;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .osus-first-content .osus-second-container img {
        width: 480px;
        height: auto;
    }

    .osus-first-content .osus-second-container .osus-second-text {
        font-size: 14px;
        margin-right: 0;
        margin-top: 0px;
        width: 480px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links {
        display: flex;
        justify-content: center;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links a {
        margin-left: 10px;
        padding: 0px 25px;
        margin-top: 10px;
        font-size: 14px;
    }

    .osus-second-container .second-osus {
        width: 483px !important;
        height: auto !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .osus-first-content h3 {
        font-size: 16px;
    }

    .osus-first-content h2 {
        font-size: 18px;
    }

    .osus-first-content .osus-first-container {
        display: flex;
        margin-bottom: 50px;
    }

    .osus-first-content .osus-first-container .osus-first-text {
        margin-right: 15px;
        line-height: 1.4;
        font-size: 15px;
    }

    .osus-first-content .osus-first-container img {
        width: 400px;
        height: auto;
    }

    .osus-first-content .osus-second-container {
        display: flex;
        margin-bottom: 50px;
    }

    .osus-first-content .osus-second-container img {
        width: 357px;
        height: auto;
    }

    .osus-first-content .osus-second-container .osus-second-text {
        line-height: 1.4;
        font-size: 16px;
        margin-right: 20px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .osus-first-content .osus-second-container .osus-second-text p {
        margin-top: 0;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links {
        display: flex;
        justify-content: space-between;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links a {
        margin-left: 10px;
        padding: 3px 14px;
        margin-top: 0;
        font-size: 15px;
    }

    .osus-second-container .second-osus {
        width: 520px !important;
        height: auto !important;
    }

    .osus-second-text.second-osus-container {
        width: 60%;
    }
}

@media (min-width: 992px) {

    .osus-first-content .osus-first-container {
        display: flex;
        margin-bottom: 100px;
    }

    .osus-first-content .osus-first-container .osus-first-text {
        margin-right: 20px;
        line-height: 1.6;
        font-size: 17px;
        text-align: justify;
    }

    .osus-first-content .osus-first-container img {
        width: 486px;
        height: auto;
    }

    .osus-first-content .osus-second-container {
        display: flex;
        margin-bottom: 100px;
    }

    .osus-first-content .osus-second-container .osus-flex {
        display: flex;
    }

    .osus-first-content .osus-second-container img {
        width: 520px;
        height: auto;
    }

    .osus-first-content .osus-second-container .osus-second-text {
        line-height: 2;
        font-size: 17px;
        text-align: justify;
        margin-right: 60px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links {
        display: flex;
        justify-content: space-between;
    }

    .osus-first-content .osus-second-container .osus-second-text .osus-links a {
        margin-left: 10px;
        padding: 0px 45px;
        margin-top: 0;
        font-size: 16px;
    }

    .osus-second-container .second-osus {
        width: 520px !important;
        height: auto !important;
    }

    .osus-second-text.second-osus-container {
        width: 60%;
    }
}

.book-span {
    color: var(--date-color);
}

.scroll {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.spe-h1.index-journals,
.spe-h1.index-book,
.spe-h1.publication-jor,
.spe-h1.publication-book {
    color: #000000;
}

@media (max-width: 574px) {
    .tow-books .daw .card.pod {
        padding: 25px 13px !important;
        box-sizing: border-box;
    }

    .container.articles {
        width: 90% !important;
    }

    .container.spe-show {
        width: 100% !important;
    }

    .tow-books {
        margin-bottom: 40px;
    }

    .spe-h1.pod {
        margin-top: -1px;
    }

    .spe-h1.infograph {
        margin-top: -1px;
    }

    .spe-h1.index-journals,
    .spe-h1.index-book {
        text-align: center;
    }

    .tow-books .daw .card .daw-info span {
        font-size: 12px;
    }

    .tow-books .daw .card .daw-info p {
        font-size: 14px;
    }
}

@media (min-width: 575px) {

    .spe-h1.index-journals,
    .spe-h1.index-book {
        text-align: center;
    }

    .spe-h1.pod,
    .spe-h1.infograph {
        margin-top: 10px;
    }


    .tow-books .daw .card .daw-info span {
        font-size: 12px;
    }

    .tow-books .daw .card .daw-info p {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .tow-books .daw .card .daw-info span {
        font-size: 14px;
    }

    .tow-books .daw .card .daw-info p {
        font-size: 15px;
    }
}

@media (min-width: 992px) {

    .spe-h1.pod,
    .spe-h1.infograph {
        margin-top: 0;
    }

    .tow-books .daw .card .daw-info span {
        font-size: 14px;
    }

    .tow-books .daw .card .daw-info p {
        font-size: 16px;
    }

    .spe-h1.index-journals,
    .spe-h1.index-book {
        margin-top: 7px;
    }

    .all-studies h1 {
        margin-bottom: -22px;
    }
}

.infogr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infogr a {
    display: block;
    width: 100%;
}

.infogr p {
    transition: opacity 0.5s ease-in-out;
}

.infogr button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.infogr button:hover {
    opacity: 1;
}

.infogr .prev {
    right: 10px;
}

.infogr .next {
    left: 10px;
}

.show-all.infograph {
    margin: 20px auto !important;
    padding: 5px 17px !important;
}

.tow-books.infograph {
    margin-top: 40px;
}

.container.index-articles-pod img {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

/* .org-publications {
    background-color: #3333;
} */

/* صفحة تفاصيل الانفوجراف */
.index-articles.infograph-detail .infograph-title {
    font-size: 22px;
    padding-bottom: 14px;
    margin-right: 0px;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: 'CodecProBold';
    color: #030303;
}

.index-articles.infograph-detail .infograph-date {
    color: var(--date-color);
    font-family: 'CodecProRegular';
}

.index-articles.infograph-detail img {
    cursor: pointer !important;
}

@media (max-width: 574px) {
    .container.index-articles-pod {
        display: none;
    }

    .container.index-articles .pod {
        display: block;
    }

    .container.nav {
        width: 90% !important;
        margin-right: 15px;
    }

    .container.index-articles {
        width: 93% !important;
        margin-right: auto;
    }

    .infogr button {
        font-size: 25px;
        padding: 10px;
    }

    .infogr img {
        height: 370px !important;
    }

    .show-all.infograph {
        font-size: 14px !important;
        padding: 7px 28px !important;
    }

    .index-articles.all-art.infographs .show-all-studies {
        padding-bottom: 0 !important;
    }

    .studies-card.infograph-card {
        width: 100% !important;
        height: 420px;
    }

    .studies-card.infograph-card .infograph-img {
        max-height: 365px !important;
    }

    /* صفحة تفاصيل الانفوجراف */
    .container.index-articles.all-art {
        background: #fcfcfc;
        margin-top: 20px;
        padding: 10px 15px 0;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
        margin-bottom: 20px;
    }

    .index-articles.infograph-detail img {
        width: 100% !important;
        height: auto !important;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-bottom: 20px;
    }

    .index-articles.infograph-detail .infograph-title {
        font-size: 22px;
        padding-bottom: 14px;
        margin-right: 0px;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .index-articles.infograph-detail .infograph-date {
        font-size: 12px;
    }

    .index-articles.infograph-detail .controls {
        margin-top: 20px;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .container.index-articles-pod {
        display: none;
    }

    .container.index-articles .pod {
        display: block;
    }

    .container {
        width: 86% !important;
    }

    .infogr button {
        font-size: 24px;
    }

    .infogr img {
        max-height: 450px;
        min-height: 450px;
    }

      .studies-card.infograph-card {
        width: calc(100% - 20px) !important;
        height: 430px;
    }

    .studies-card.infograph-card .infograph-img {
        max-height: 400px !important;
    }  

    .container.index-articles.all-art {
        background: #fcfcfc;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 10px 15px 20px;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
    }

    /* user 2 */
    .container-margin {
        margin-bottom: 40px;
    }

    /* end */

    /* صفحة تفاصيل الانفوجراف */


    .index-articles.infograph-detail img {
        width: 100% !important;
        height: auto !important;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-bottom: 20px;
    }

    .index-articles.infograph-detail .infograph-title {
        font-size: 22px;
        padding-bottom: 14px;
        margin-right: 0px;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .index-articles.infograph-detail .infograph-date {
        font-size: 12px;
    }

    .index-articles.infograph-detail .controls {
        margin-top: 20px;
    }
}

@media (min-width: 768px) {
    .container.index-articles-pod {
        display: block;
    }

    .container.index-articles .pod {
        display: none;
    }

    .container {
        width: 83% !important;
    }

    .infogr button {
        font-size: 30px;
    }

    .infogr img {
        max-height: 500px;
        min-height: 500px;
    }

    .studies-card.infograph-card {
        width: calc(50% - 10px) !important;
        height: 440px;
    }

    .studies-card.infograph-card .infograph-img {
        max-height: 370px !important;
    }

    .container.index-articles.all-art {
        background: #fcfcfc;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 10px 15px 20px;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
    }

    .outside-container {
        background-color: #d0d0d0;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .container.index-articles .tow-books.publications-all .daw {
        background-color: white;
        padding: 3px 12px 0px;
        box-sizing: border-box;
        margin-top: 22px;
        margin-bottom: 22px !important;
        width: calc(50% - 7px);
    }

    /* صفحة التفاصيل */


    .index-articles.infograph-detail img {
        width: 95% !important;
        height: auto !important;
        margin-top: 25px;
        display: block;
    }

    .index-articles.infograph-detail .infograph-title {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .index-articles.infograph-detail .infograph-date {
        font-size: 18px;
    }

    .index-articles.infograph-detail .controls {
        margin-top: 27px;
    }

    .publications.carousel-title {
        text-align: center;

    }

    /* user 2 */
    .container-margin {
        margin-bottom: 60px;
    }

    /* end */
}

@media (min-width: 992px) {
    .publications.carousel-title {
        text-align: center;
        margin-bottom: -10px;
        margin-top: 0;
    }

    .container.index-articles.all-art {
        background: #fcfcfc;
        margin-top: 40px;
        padding: 20px 20px 25px;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
    }

    .container.index-articles.all-art .studies {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .container.index-articles .pod {
        display: none;
    }

    .container {
        width: 80% !important;
    }

    .infogr button {
        font-size: 40px;
    }

    .infogr img {
        max-height: 620px;
        min-height: 620px;
    }

    .container.index-articles .tow-books.publications-all .daw {
        background-color: white;
        padding: 20px 20px 15px;
        box-sizing: border-box;
        margin-top: 22px;
        margin-bottom: 22px !important;
    }

    .outside-container {
        background-color: #d0d0d0;
        margin-top: 26px;
        margin-bottom: 20px;
    }

    .index-articles.all-art.infographs {
        margin-bottom: 40px !important;
    }

    .studies-card.infograph-card {
        width: calc(33% - 5px) !important;
        height: 525px;
    }

    .studies-card.infograph-card .infograph-img {
        max-height: 440px !important;
    }

    /* صفحة التفاصيل */
    .index-articles.infograph-detail img {
        width: 95% !important;
        height: auto !important;
        margin-top: 30px;
        display: block;
    }

    .index-articles.infograph-detail .infograph-title {
        margin-bottom: 14px;
        font-size: 25px;
    }

    .index-articles.infograph-detail .infograph-date {
        font-size: 16px;
    }

    .index-articles.infograph-detail .controls {
        margin-top: 30px;
    }
}

.cardContainer-inside {
    display: none !important;
}

.cardContainer-inside.active {
    display: block !important;
}

a {
    text-decoration: none !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
    word-wrap: break-word;
    white-space: normal;
    letter-spacing: normal;
    text-rendering: optimizeLegibility;
    font-weight: unset;
}

/* user 2 */
td.Table-Style {
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #000000;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #000000;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #000000;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #000000;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: top;
}

td.Cell-Style-1 {
    border-bottom-color: #939598;
    border-bottom-width: 1px;
    border-left-color: #939598;
    border-left-width: 1px;
    border-right-color: #939598;
    border-right-width: 1px;
    border-top-color: #939598;
    border-top-width: 1px;
    padding-bottom: 6px;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 6px;
    vertical-align: middle;
}

td.Header {
    background-color: #2b3990;
    border-bottom-color: #939598;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: #939598;
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: #939598;
    border-right-style: solid;
    border-right-width: 1px;
    border-top-color: #939598;
    border-top-style: solid;
    border-top-width: 1px;
    vertical-align: middle;
}

.Table-Cells {
    color: #58595b;
    font-family: "Adobe Arabic", serif;
    font-size: 15px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1.034;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    orphans: 1;
    page-break-after: auto;
    page-break-before: auto;
    text-align: center !important;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    widows: 1;
}

.Table-Header {
    color: #ffffff;
    font-family: "Adobe Arabic", serif;
    font-size: 15px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    line-height: 1.034;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    orphans: 1;
    page-break-after: auto;
    page-break-before: auto;
    text-align: center !important;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    widows: 1;
}

table.Table-Style {
    border-collapse: collapse;
    border-color: #939598;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 9px;
    margin-top: 9px;
}

table._idGenTablePara-1 {
    margin-left: auto;
    margin-right: auto;
}

table._idGenTablePara-2 {
    margin-left: auto;
}

col._idGenTableRowColumn-1 {
    width: 51px;
}

col._idGenTableRowColumn-2 {
    width: 122px;
}

col._idGenTableRowColumn-3 {
    width: 94px;
}

col._idGenTableRowColumn-4 {
    width: 102px;
}

tr._idGenTableRowColumn-5 {
    min-height: 28px;
}

tr._idGenTableRowColumn-6 {
    background-color: #e6e7e8;
    min-height: 54px;
}

tr._idGenTableRowColumn-7 {
    background-color: #ffffff;
    min-height: 54px;
}

col._idGenTableRowColumn-8 {
    width: 162px;
}

col._idGenTableRowColumn-9 {
    width: 156px;
}

tr._idGenTableRowColumn-10 {
    background-color: #e6e7e8;
    min-height: 44px;
}

tr._idGenTableRowColumn-11 {
    background-color: #ffffff;
    min-height: 44px;
}

col._idGenTableRowColumn-12 {
    width: 74px;
}

col._idGenTableRowColumn-13 {
    width: 138px;
}

tr._idGenTableRowColumn-14 {
    min-height: 33px;
}

tr._idGenTableRowColumn-15 {
    background-color: #e6e7e8;
    min-height: 38px;
}

tr._idGenTableRowColumn-16 {
    background-color: #ffffff;
    min-height: 38px;
}

col._idGenTableRowColumn-17 {
    width: 54px;
}

col._idGenTableRowColumn-18 {
    width: 130px;
}

col._idGenTableRowColumn-19 {
    width: 92px;
}

tr._idGenTableRowColumn-20 {
    background-color: #e6e7e8;
    min-height: 51px;
}

tr._idGenTableRowColumn-21 {
    background-color: #ffffff;
    min-height: 51px;
}

col._idGenTableRowColumn-22 {
    width: 126px;
}

col._idGenTableRowColumn-23 {
    width: 95px;
}

tr._idGenTableRowColumn-24 {
    background-color: #e6e7e8;
    min-height: 60px;
}

tr._idGenTableRowColumn-25 {
    background-color: #ffffff;
    min-height: 60px;
}

col._idGenTableRowColumn-26 {
    width: 116px;
}

col._idGenTableRowColumn-27 {
    width: 99px;
}

col._idGenTableRowColumn-28 {
    width: 100px;
}

tr._idGenTableRowColumn-29 {
    background-color: #e6e7e8;
    min-height: 36px;
}

tr._idGenTableRowColumn-30 {
    background-color: #ffffff;
    min-height: 36px;
}

col._idGenTableRowColumn-31 {
    width: 165px;
}

col._idGenTableRowColumn-32 {
    width: 148px;
}

tr._idGenTableRowColumn-33 {
    background-color: #ffffff;
    min-height: 45px;
}

tr._idGenTableRowColumn-34 {
    background-color: #e6e7e8;
    min-height: 45px;
}

col._idGenTableRowColumn-35 {
    width: 59px;
}

col._idGenTableRowColumn-36 {
    width: 97px;
}

col._idGenTableRowColumn-37 {
    width: 113px;
}

tr._idGenTableRowColumn-38 {
    min-height: 41px;
}

tr._idGenTableRowColumn-39 {
    background-color: #e6e7e8;
    min-height: 106px;
}

tr._idGenTableRowColumn-40 {
    background-color: #ffffff;
    min-height: 82px;
}

col._idGenTableRowColumn-41 {
    width: 93px;
}

col._idGenTableRowColumn-42 {
    width: 153px;
}

col._idGenTableRowColumn-43 {
    width: 123px;
}

tr._idGenTableRowColumn-44 {
    background-color: #e6e7e8;
    min-height: 43px;
}

tr._idGenTableRowColumn-45 {
    background-color: #ffffff;
    min-height: 43px;
}

col._idGenTableRowColumn-46 {
    width: 53px;
}

col._idGenTableRowColumn-47 {
    width: 139px;
}

col._idGenTableRowColumn-48 {
    width: 85px;
}

col._idGenTableRowColumn-49 {
    width: 57px;
}

col._idGenTableRowColumn-50 {
    width: 119px;
}

col._idGenTableRowColumn-51 {
    width: 80px;
}

tr._idGenTableRowColumn-52 {
    background-color: #e6e7e8;
    min-height: 33px;
}

.table-caption {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.custom-li {
    font-weight: bold;
}

.definition {
    margin-top: auto;
}

.refernces-samp {
    margin-right: 30px;
}

.top-margin {
    margin-top: inherit;
}

.abstract {
    font-size: 22px !important;
    font-weight: bolder;
}

.table-caption {
    font-size: 1.3em;
    margin-bottom: 10px;
}

@media (max-width: 450px) {
    .Table-Style {
        width: auto;
    }
}

@media (max-width: 574px) {
    .pub-2 {
        margin-top: 17px;
        font-size: 15px;
    }

    .p-img2 {
        font-size: 20px;
        margin-top: 15px;
    }

    .Heading-3 {
        font-size: 16px;
        line-height: 1.4;
        /* font-weight: bold; */
    }

    .Heading-4 {
        font-size: 15px;
        line-height: 1.4;
    }

    .table-caption {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .table-caption-p {
        font-size: 17px !important;
    }

    .Heading-5 {
        font-size: 17px;
        margin-bottom: -9px;
        margin-top: 15px;
    }

    .top-margin {
        margin-top: 15px
    }

    .abstract {
        font-size: 17px !important;
    }

    .rwanda {
        margin-bottom: 0px;
    }
}

@media (min-width: 575px) {
    .p-img2 {
        font-size: 18px;
        margin-top: 8px;
    }

    .pub-2 {
        margin-top: 20px;
        font-size: 14px;
    }

    .abstract {
        font-size: 19px !important;
    }

    .Heading-3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .Heading-4 {
        font-size: 17px;
        line-height: 1.4;
    }

    .Heading-5 {
        font-size: 17px;
        margin-bottom: -7px;
    }

    .table-caption {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .table-caption-p {
        font-size: 1.1em !important;
    }
}

@media (min-width: 768px) {
    .p-img2 {
        font-size: 18px;
        margin-top: 8px;
    }

    .pub-2 {
        margin-top: 12px;
        font-size: 13px;
    }

    .abstract {
        font-size: 20px !important;
    }

    .Heading-3 {
        font-size: 19px;
    }

    .Heading-4 {
        font-size: 18px;
    }

    .Heading-5 {
        font-size: 18px;
        margin-bottom: -5px;
    }

}

@media (min-width: 992px) {
    .pub-2 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .p-img2 {
        margin-top: 10px;
        font-size: 20px;
    }

    .Heading-3 {
        font-size: 21px;
        font-family: 'CodecProBold';
    }

    .Heading-4 {
        font-size: 19px;
        font-family: 'CodecProBold'
    }

    .Heading-5 {
        text-align: right;
        font-size: 19px;
        margin-bottom: -5px;
    }

    .table-caption {
        font-size: 1.3em;
    }

    .table-caption-p {
        font-size: 1.3em !important;

    }
}

.pub-2 {
    display: block;
    color: var(--fourth-color);
    font-family: "CodecProExtraBold";
}

.p-img2 {
    display: block;
    font-family: "CodecProBold";
    color: #00a79e;
    line-height: 1.4;
}

.Heading-3 {
    font-family: 'CodecProBold';
}

.Heading-4 {
    font-family: 'CodecProBold'
}

.Heading-5 {
    text-align: right;
    font-weight: bold;
}

/* study-5 */
.prophet {
    font-size: larger;
}

.important {
    font-weight: bold;
}

.study-figcaption {
    text-align: center;
    margin-bottom: inherit;
    font-size: larger;
}

.fig-imge {
    width: 100% !important;
}

.li-normal {
    list-style: none;
    padding: 0;
}

/* .li-normal::before {
      content: "-";
      color: #555;
    } */

/* .dash {
      display: inline-block;
      width: 50px;
      height: 1px;
      background-color: #000;
      margin: 0 10px;
      vertical-align: middle;
    } */

.fig-2 {
    margin-top: 70px;
}

.fig-imge-2 {
    width: 75% !important;
}

.fig-imge-3 {
    width: 95% !important;
}

.list-style-none {
    list-style: none;
    padding: 0;
    margin-right: 25px;
}

.alpha-text {
    margin-right: 12px !important;
}

/* تنسيق المصدر */
.source {
    background-color: #2b3990;
    ;
    /* لون أزرق داكن */
    color: white;
    /* لون النص أبيض */
    padding: 10px 20px;
    /* مساحة داخلية */
    text-align: center;
    /* تمركز النص */
    margin-top: 20px;
    /* مسافة من الشكل البياني */
    font-size: 18px;
    /* حجم الخط */
    margin-bottom: 40px;
}

span.Hyperlink {
    text-decoration: underline;
}

/* tables */
.study-5 col._idGenTableRowColumn-1 {
    width: 40px;
}

.study-5 col._idGenTableRowColumn-2 {
    width: 127px;
}

.study-5 col._idGenTableRowColumn-3 {
    width: 161px;
}

.study-5 tr._idGenTableRowColumn-4 {
    min-height: 28px;
}

.study-5 tr._idGenTableRowColumn-5 {
    background-color: #e6e7e8;
    min-height: 51px;
}

.study-5 tr._idGenTableRowColumn-6 {
    background-color: #ffffff;
    min-height: 36px;
}

.study-5 tr._idGenTableRowColumn-7 {
    background-color: #e6e7e8;
    min-height: 36px;
}

.study-5 tr._idGenTableRowColumn-8 {
    background-color: #ffffff;
    min-height: 51px;
}

.study-5 col._idGenTableRowColumn-9 {
    width: 145px;
}

.study-5 col._idGenTableRowColumn-10 {
    width: 72px;
}

.study-5 col._idGenTableRowColumn-11 {
    width: 108px;
}

.study-5 col._idGenTableRowColumn-12 {
    width: 44px;
}

.study-5 tr._idGenTableRowColumn-13 {
    background-color: #e6e7e8;
    min-height: 40px;
}

.study-5 tr._idGenTableRowColumn-14 {
    background-color: #ffffff;
    min-height: 40px;
}

.study-5 col._idGenTableRowColumn-15 {
    width: 123px;
}

.study-5 tr._idGenTableRowColumn-16 {
    background-color: #e6e7e8;
    min-height: 28px;
}

.study-5 tr._idGenTableRowColumn-17 {
    background-color: #ffffff;
    min-height: 28px;
}

.study-5 col._idGenTableRowColumn-18 {
    width: 92px;
}

.study-5 tr._idGenTableRowColumn-19 {
    min-height: 26px;
}

.study-5 tr._idGenTableRowColumn-20 {
    background-color: #e6e7e8;
    min-height: 37px;
}

.study-5 tr._idGenTableRowColumn-21 {
    background-color: #ffffff;
    min-height: 37px;
}

.study-5 col._idGenTableRowColumn-22 {
    width: 68px;
}

.study-5 col._idGenTableRowColumn-23 {
    width: 177px;
}

.study-5 tr._idGenTableRowColumn-24 {
    min-height: 33px;
}

.study-5 tr._idGenTableRowColumn-25 {
    background-color: #e6e7e8;
    min-height: 66px;
}

.study-5 tr._idGenTableRowColumn-26 {
    background-color: #ffffff;
    min-height: 66px;
    text-align: center;
}

.study-5 tr._idGenTableRowColumn-27 {
	background-color:#e6e7e8;
	min-height:65px;
}

.study-5 tr {
    text-align: center;
}


.ref-re-margin {
    margin-right: 36px;
}

/* moblie */
@media (min-width: 575px) {
    .source {
        font-size: 17px;
    }
}

@media (max-width: 574px) {
    .fig-2 {
        margin-top: 50px;
    }

    .source {
        background-color: #2b3990;
        color: white;
        padding: 3px 20px;
        text-align: center;
        margin-top: 20px;
        font-size: 17px;
        margin-bottom: 40px;
    }

    .fig-imge-2 {
        width: 100% !important;
    }

    .fig-imge-3 {
        width: 100% !important;
    }

    .list-style-none {
        display: contents;
        list-style: none;
    }

    .alpha-text {
        margin-top: auto;
    }

    .ref-re-margin {
        margin-right: 0px;
    }

    .study-figcaption {
        text-align: center;
        margin-bottom: inherit;
        font-size: 17PX;
    }
}

@media (min-width: 992px) {
    .source {
        font-size: 18px;
    }
}

/* study-6 */
/* in table  */
.study-6 td.CellOverride-1 {
    vertical-align: middle;
}

/* table*/
/* .study-6 td._idGenCellOverride-1 {
    border-right-color: #939598;
    border-right-style: solid;
    border-right-width: 1px;
} */

.study-6 col._idGenTableRowColumn-1 {
    width: 177px;
}

.study-6 col._idGenTableRowColumn-2 {
    width: 92px;
}

.study-6 col._idGenTableRowColumn-3 {
    width: 50px;
}

.study-6 tr._idGenTableRowColumn-4 {
    min-height: 26px;
}

.study-6 tr._idGenTableRowColumn-5 {
    background-color: #e6e7e8;
    min-height: 23px;
}

.study-6 tr._idGenTableRowColumn-6 {
    background-color: #ffffff;
    min-height: 36px;
}

.study-6 tr._idGenTableRowColumn-7 {
    background-color: #e6e7e8;
    min-height: 36px;
}

.study-6 tr._idGenTableRowColumn-8 {
    background-color: #ffffff;
    min-height: 23px;
}

.study-6 col._idGenTableRowColumn-9 {
    width: 122px;
}

.study-6 col._idGenTableRowColumn-10 {
    width: 62px;
}

.study-6 col._idGenTableRowColumn-11 {
    width: 108px;
}

.study-6 col._idGenTableRowColumn-12 {
    width: 38px;
}

.study-6 tr._idGenTableRowColumn-13 {
    min-height: 28px;
}

.study-6 tr._idGenTableRowColumn-14 {
    background-color: #ffffff;
    min-height: 21px;
}

.study-6 tr._idGenTableRowColumn-15 {
    background-color: #e6e7e8;
    min-height: 21px;
}

.study-6 tr._idGenTableRowColumn-16 {
    background-color: #ffffff;
    min-height: 51px;
}

.study-6 col._idGenTableRowColumn-17 {
    width: 277px;
}

.study-6 tr._idGenTableRowColumn-18 {
    background-color: #e6e7e8;
    min-height: 22px;
}

.study-6 tr._idGenTableRowColumn-19 {
    background-color: #ffffff;
    min-height: 22px;
}

.study-6 col._idGenTableRowColumn-20 {
    width: 184px;
}

.study-6 tr._idGenTableRowColumn-21 {
    background-color: #e6e7e8;
    min-height: 28px;
}

.study-6 tr._idGenTableRowColumn-22 {
    background-color: #ffffff;
    min-height: 28px;
}

.study-6 tr._idGenTableRowColumn-23 {
    background-color: #e6e7e8;
    min-height: 96px;
}

.study-6 tr._idGenTableRowColumn-24 {
    background-color: #e6e7e8;
    min-height: 51px;
}

.study-6 tr._idGenTableRowColumn-25 {
    background-color: #e6e7e8;
    min-height: 48px;
}

.study-6 tr._idGenTableRowColumn-26 {
    background-color: #ffffff;
    min-height: 48px;
}

.study-6 table._idGenTablePara-1 {
    margin-left: auto;
    margin-right: auto;
}


.fig-margin {
    margin-top: 50px;
}

.fig-margin-2 {
    margin-top: 30px;
}

.fig-imge-vertical {
    width: 95% !important;
}

@media (max-width: 1500px) {
    #horizontal-structure {
        display: none;
    }

}

@media (min-width: 1500px) {
    #vertical-structure {
        display: none;
    }
}

span.CharOverride-3 {
    font-size: 58%;
    vertical-align: super;
}

@media (min-width: 575px) {
    .study-figcaption {
        font-size: 1.1em
    }
}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    .study-figcaption {
        font-size: 1.3em;
    }
}

/* study-3 */
/* tables */
.study-3 col._idGenTableRowColumn-1 {
    width: 208px;
}

.study-3 col._idGenTableRowColumn-2 {
    width: 48px;
}

.study-3 col._idGenTableRowColumn-3 {
    width: 110px;
}

.study-3 tr._idGenTableRowColumn-4 {
    min-height: 28px;
}

.study-3 tr._idGenTableRowColumn-5 {
    background-color: #e6e7e8;
    min-height: 36px;
}

.study-3 tr._idGenTableRowColumn-6 {
    background-color: #ffffff;
    min-height: 26px;
}

.study-3 tr._idGenTableRowColumn-7 {
    background-color: #e6e7e8;
    min-height: 26px;
}

.study-3 col._idGenTableRowColumn-8 {
    width: 315px;
}

.study-3 col._idGenTableRowColumn-9 {
    width: 54px;
}

.study-3 tr._idGenTableRowColumn-10 {
    background-color: #e6e7e8;
    min-height: 23px;
}

.study-3 tr._idGenTableRowColumn-11 {
    background-color: #ffffff;
    min-height: 23px;
}

.study-3 col._idGenTableRowColumn-12 {
    width: 59px;
}

.study-3 col._idGenTableRowColumn-13 {
    width: 134px;
}

.study-3 col._idGenTableRowColumn-14 {
    width: 176px;
}

.study-3 tr._idGenTableRowColumn-15 {
    background-color: #ffffff;
    min-height: 36px;
}

.study-3 col._idGenTableRowColumn-16 {
    width: 114px;
}

.study-3 col._idGenTableRowColumn-17 {
    width: 127px;
}

.study-3 col._idGenTableRowColumn-18 {
    width: 67px;
}

.study-3 col._idGenTableRowColumn-19 {
    width: 62px;
}

.study-3 tr._idGenTableRowColumn-20 {
    background-color: #e6e7e8;
    min-height: 21px;
}

.study-3 tr._idGenTableRowColumn-21 {
    background-color: #ffffff;
    min-height: 21px;
}

.study-3 table._idGenTablePara-1 {
    margin-left: auto;
    margin-right: auto;
}

/* images */
.fig-imge-4 {
    width: 90% !important;
}

/* box */
.box {
    border: 1px solid #3333cc;
    padding: 20px;
    background-color: #f5f5f5;
    /* width: 90%; */
    max-width: 800px;
    /* margin: auto; */
    line-height: 1;
}

.box h4 {
    margin-top: 0;
    font-weight: bold;
    color: #000;
    font-size: larger;
    line-height: 1.5;
}

.box ul {
    padding-right: 20px;
}

.box ul li {
    margin-bottom: 10px;
}

/* الوضع الليلي */
body.dark-mode .box {
    /* background-color: #333; */
    color: black;
    /* border-color: white; */
}

/* body.dark-mode h4 {
    color: white;
    } */

.box-source {
    background-color: #2b3990;
    ;
    /* لون أزرق داكن */
    color: white;
    /* لون النص أبيض */
    padding: 10px 20px;
    /* مساحة داخلية */
    text-align: center;
    /* تمركز النص */
    margin-top: 5px;
    /* مسافة من الشكل البياني */
    font-size: 18px;
    /* حجم الخط */
    margin-bottom: 30px;
}

.source-link a {
    color: white !important;
}

.source-link a:hover {
    text-decoration: underline !important;
}


@media(max-width: 574px) {
    .fig-imge-4 {
        width: 100% !important;
    }

    .box h4 {
        margin-top: 0;
        font-weight: bold;
        color: #000;
        font-size: 17px;
        line-height: 1.5;
    }

    .box ul li {
        margin-bottom: 5px;
    }

    .box-source {
        padding: 5px 20px;
        margin-bottom: 20px;
        font-size: 16px;
    }
}

@media(min-width: 575px) {
    .fig-imge-4 {
        width: 95% !important;
    }

    .box-source {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

@media(min-width: 575px) {
    .fig-imge-4 {
        width: 95% !important;
    }
}

@media(min-width: 992px) {
    .fig-imge-4 {
        width: 90% !important;
    }

    .box-source {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

/* study-1 */
.question {
    font-weight: bold;
    line-height: 2 !important;
}

/* tables */
.study-1 col._idGenTableRowColumn-1 {
    width: 81px;
}

.study-1 col._idGenTableRowColumn-2 {
    width: 51px;
}

.study-1 col._idGenTableRowColumn-3 {
    width: 59px;
}

.study-1 col._idGenTableRowColumn-4 {
    width: 58px;
}

.study-1 tr._idGenTableRowColumn-5 {
    min-height: 28px;
}

.study-1 tr._idGenTableRowColumn-6 {
    background-color: #e6e7e8;
    min-height: 36px;
}

.study-1 tr._idGenTableRowColumn-7 {
    background-color: #ffffff;
    min-height: 28px;
}

.study-1 tr._idGenTableRowColumn-8 {
    background-color: #e6e7e8;
    min-height: 28px;
}

.study-1 tr._idGenTableRowColumn-9 {
    background-color: #ffffff;
    min-height: 36px;
}

.study-1 col._idGenTableRowColumn-10 {
    width: 45px;
}

.study-1 col._idGenTableRowColumn-11 {
    width: 24px;
}

.study-1 col._idGenTableRowColumn-12 {
    width: 43px;
}

.study-1 tr._idGenTableRowColumn-13 {
    background-color: #e6e7e8;
    min-height: 71px;
}

.study-1 tr._idGenTableRowColumn-14 {
    background-color: #ffffff;
    min-height: 74px;
}

.study-1 tr._idGenTableRowColumn-15 {
    background-color: #e6e7e8;
    min-height: 74px;
}

.study-1 col._idGenTableRowColumn-16 {
    width: 92px;
}

.study-1 tr._idGenTableRowColumn-17 {
    min-height: 33px;
}

.study-1 tr._idGenTableRowColumn-18 {
    background-color: #e6e7e8;
    min-height: 26px;
}

.study-1 tr._idGenTableRowColumn-19 {
    background-color: #ffffff;
    min-height: 26px;
}

.study-1 col._idGenTableRowColumn-20 {
    width: 123px;
}

.study-1 tr._idGenTableRowColumn-21 {
    background-color: #e6e7e8;
    min-height: 21px;
}

.study-1 tr._idGenTableRowColumn-22 {
    background-color: #ffffff;
    min-height: 21px;
}

.study-1 table._idGenTablePara-1 {
    margin-left: auto;
}

.study-1 table._idGenTablePara-2 {
    margin-left: auto;
    margin-right: auto;
}

.study-1 div._idGenObjectStyleOverride-1 {
    border-width: 0px;
}

.study-1 hr.HorizontalRule-1 {
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-top: solid #000000 1px;
}

.table-source {
    margin-left: 5%;
    margin-right: 5%;
}

@media (max-width: 837px) {
    .table-container {
        display: none;
    }

    #table-2 {
        display: block !important;
        margin: auto;
    }
}

.fig-imge-5 {
    width: 80% !important;
}

.bold-font {
    font-weight: bold;
}

.arabic {
    direction: rtl;
    text-align: right;
    display: block;
    margin-top: 5px;
}

.custom-h5 {
    margin-bottom: 10px;
    margin-top: 15px;
}


@media (max-width: 574px) {
    .table-source {
        margin-left: 0%;
        margin-right: 0%;
        font-size: 16px;
        padding: 3px 17px;
    }

    .fig-imge-5 {
        width: 100% !important;
    }

    .study-1 {
        width: -webkit-fill-available;
    }
}

@media (max-width: 1450px) {
    .large-table {
        margin-left: 3% !important;
        margin-right: 3% !important;
    }
}

@media (max-width: 1430px) {
    .large-table {
        margin-left: 2% !important;
        margin-right: 2% !important;
    }
}

@media (max-width: 1400px) {
    .large-table {
        margin-left: 1% !important;
        margin-right: 1% !important;
    }
}

@media (max-width: 1480px) {
    .large-table {
        margin-left: 4%;
        margin-right: 4%;
    }
}

@media (max-width: 1390px) {
    .large-table {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
}

/* study-2*/
.study-2 td.CellOverride-1 {
    vertical-align: middle;
}

/* .study-2 td._idGenCellOverride-1 {
    border-right-color: #939598;
    border-right-style: solid;
    border-right-width: 1px;
} */

.study-2 col._idGenTableRowColumn-1 {
    width: 99px;
}

.study-2 col._idGenTableRowColumn-2 {
    width: 48px;
}

.study-2 col._idGenTableRowColumn-3 {
    width: 74px;
}

.study-2 tr._idGenTableRowColumn-4 {
    min-height: 48px;
}

.study-2 tr._idGenTableRowColumn-5 {
    background-color: #e6e7e8;
    min-height: 34px;
}

.study-2 tr._idGenTableRowColumn-6 {
    background-color: #ffffff;
    min-height: 34px;
}

.study-2 tr._idGenTableRowColumn-7 {
    background-color: #e6e7e8;
    min-height: 36px;
}

.study-2 col._idGenTableRowColumn-8 {
    width: 105px;
}

.study-2 col._idGenTableRowColumn-9 {
    width: 85px;
}

.study-2 col._idGenTableRowColumn-10 {
    width: 178px;
}

.study-2 tr._idGenTableRowColumn-11 {
    min-height: 26px;
}

.study-2 tr._idGenTableRowColumn-12 {
    background-color: #e6e7e8;
    min-height: 54px;
}

.study-2 tr._idGenTableRowColumn-13 {
    background-color: #ffffff;
    min-height: 54px;
}

.study-2 col._idGenTableRowColumn-14 {
    width: 243px;
}

.study-2 col._idGenTableRowColumn-15 {
    width: 125px;
}

.study-2 tr._idGenTableRowColumn-16 {
    min-height: 23px;
}

.study-2 tr._idGenTableRowColumn-17 {
    background-color: #e6e7e8;
    min-height: 23px;
}

.study-2 tr._idGenTableRowColumn-18 {
    background-color: #ffffff;
    min-height: 23px;
}

.study-2 col._idGenTableRowColumn-19 {
    width: 45px;
}

.study-2 col._idGenTableRowColumn-20 {
    width: 94px;
}

.study-2 col._idGenTableRowColumn-21 {
    width: 84px;
}

.study-2 tr._idGenTableRowColumn-22 {
    min-height: 33px;
}

.study-2 tr._idGenTableRowColumn-23 {
    background-color: #e6e7e8;
    min-height: 96px;
}

.study-2 tr._idGenTableRowColumn-24 {
    background-color: #ffffff;
    min-height: 81px;
}

.study-2 tr._idGenTableRowColumn-25 {
    background-color: #e6e7e8;
    min-height: 81px;
}

.study-2 tr._idGenTableRowColumn-26 {
    background-color: #ffffff;
    min-height: 96px;
}

.study-2 tr._idGenTableRowColumn-27 {
    background-color: #ffffff;
    min-height: 111px;
}

.study-2 tr._idGenTableRowColumn-28 {
    background-color: #e6e7e8;
    min-height: 111px;
}

.study-2 col._idGenTableRowColumn-29 {
    width: 195px;
}

.study-2 col._idGenTableRowColumn-30 {
    width: 101px;
}

.study-2 col._idGenTableRowColumn-31 {
    width: 72px;
}

.study-2 tr._idGenTableRowColumn-32 {
    min-height: 28px;
}

.study-2 tr._idGenTableRowColumn-33 {
    background-color: #e6e7e8;
    min-height: 27px;
}

.study-2 tr._idGenTableRowColumn-34 {
    background-color: #ffffff;
    min-height: 27px;
}

.study-2 col._idGenTableRowColumn-35 {
    width: 224px;
}

.study-2 tr._idGenTableRowColumn-36 {
    background-color: #e6e7e8;
    min-height: 28px;
}

.study-2 tr._idGenTableRowColumn-37 {
    background-color: #ffffff;
    min-height: 28px;
}

.study-2 col._idGenTableRowColumn-38 {
    width: 51px;
}

.study-2 col._idGenTableRowColumn-39 {
    width: 46px;
}

.study-2 tr._idGenTableRowColumn-40 {
    background-color: #e6e7e8;
    min-height: 18px;
}

.study-2 tr._idGenTableRowColumn-41 {
    background-color: #ffffff;
    min-height: 18px;
}

.study-2 col._idGenTableRowColumn-42 {
    width: 70px;
}

.study-2 col._idGenTableRowColumn-43 {
    width: 53px;
}

.study-2 col._idGenTableRowColumn-44 {
    width: 49px;
}

.study-2 col._idGenTableRowColumn-45 {
    width: 50px;
}

.study-2 tr._idGenTableRowColumn-46 {
    background-color: #e6e7e8;
    min-height: 43px;
}

.study-2 tr._idGenTableRowColumn-47 {
    background-color: #ffffff;
    min-height: 43px;
}

.study-2 tr._idGenTableRowColumn-48 {
    background-color: #ffffff;
    min-height: 48px;
}

.study-2 col._idGenTableRowColumn-49 {
    width: 61px;
}

.study-2 col._idGenTableRowColumn-50 {
    width: 65px;
}

.study-2 tr._idGenTableRowColumn-51 {
    min-height: 81px;
}

.study-2 col._idGenTableRowColumn-52 {
    width: 174px;
}

.study-2 col._idGenTableRowColumn-53 {
    width: 69px;
}

.study-2 col._idGenTableRowColumn-54 {
    width: 68px;
}

.study-2 col._idGenTableRowColumn-55 {
    width: 58px;
}

.study-2 tr._idGenTableRowColumn-56 {
    background-color: #e6e7e8;
    min-height: 30px;
}

.study-2 tr._idGenTableRowColumn-57 {
    background-color: #ffffff;
    min-height: 30px;
}

.study-2 tr._idGenTableRowColumn-58 {
    background-color: #e6e7e8;
    min-height: 21px;
}

.study-2 tr._idGenTableRowColumn-59 {
    background-color: #ffffff;
    min-height: 21px;
}

.study-2 col._idGenTableRowColumn-60 {
    width: 42px;
}

.study-2 col._idGenTableRowColumn-61 {
    width: 57px;
}

.study-2 col._idGenTableRowColumn-62 {
    width: 92px;
}

.study-2 col._idGenTableRowColumn-63 {
    width: 112px;
}

.study-2 tr._idGenTableRowColumn-64 {
    background-color: #e6e7e8;
    min-height: 66px;
}

.study-2 tr._idGenTableRowColumn-65 {
    background-color: #ffffff;
    min-height: 60px;
}

.study-2 tr._idGenTableRowColumn-66 {
    background-color: #e6e7e8;
    min-height: 60px;
}

.study-2 col._idGenTableRowColumn-67 {
    width: 87px;
}

.study-2 col._idGenTableRowColumn-68 {
    width: 146px;
}

.study-2 col._idGenTableRowColumn-69 {
    width: 135px;
}

.study-2 tr._idGenTableRowColumn-70 {
    background-color: #ffffff;
    min-height: 36px;
}

.study-2 col._idGenTableRowColumn-71 {
    width: 123px;
}

.study-2 tr._idGenTableRowColumn-72 {
    background-color: #ffffff;
    min-height: 51px;
}

.study-2 col._idGenTableRowColumn-73 {
    width: 118px;
}

.study-2 col._idGenTableRowColumn-74 {
    width: 250px;
}

.study-2 col._idGenTableRowColumn-75 {
    width: 73px;
}

.study-2 col._idGenTableRowColumn-76 {
    width: 173px;
}

.study-2 col._idGenTableRowColumn-77 {
    width: 119px;
}

.study-2 col._idGenTableRowColumn-78 {
    width: 131px;
}

.study-2 col._idGenTableRowColumn-79 {
    width: 71px;
}

.study-2 col._idGenTableRowColumn-80 {
    width: 151px;
}

.study-2 col._idGenTableRowColumn-81 {
    width: 76px;
}

.study-2 col._idGenTableRowColumn-82 {
    width: 292px;
}

.study-2 tr._idGenTableRowColumn-83 {
    background-color: #e6e7e8;
    min-height: 37px;
}

.study-2 tr._idGenTableRowColumn-84 {
    background-color: #ffffff;
    min-height: 37px;
}

.study-2 table._idGenTablePara-1 {
    margin-left: auto;
}

.study-2 table._idGenTablePara-2 {
    margin-left: auto;
    margin-right: auto;
}

span.CharOverride-1 {
    font-style: normal;
    font-weight: bold;
}

.List-Paragraph {
    margin-top: 7px;
    margin-bottom: 5px;
}

.fig-imge-6 {
    width: 65% !important;
}

.study-2 {
    margin-right: auto !important;
    margin-left: auto !important;
}

.table-caption-p {
    text-align: center !important;
    margin-bottom: 10px;
    font-weight: 500;
    margin-right: 5% !important;
    margin-left: 5% !important;
    line-height: normal !important;
}


/* screens views */
@media (max-width: 574px) {
    .margin-bottom-table {
        margin-bottom: 35px !important;
    }

    .fig-imge-6 {
        width: 95% !important;
    }

    .modify-margin {
        margin: 16px;
    }

    .mobile-view-2 {
        margin: 25px;
    }

    .mobile-view-3 {
        margin: 10px;
    }
}

@media (min-width: 575px) {
    .margin-bottom-table {
        margin-bottom: 40px !important;
    }

    .fig-imge-6 {
        width: 75% !important;
    }
}

@media (min-width: 992px) {
    /* .margin-bottom-table {
        margin-bottom: 50px !important;
    } */

    .fig-imge-6 {
        width: 65% !important;
    }
}

@media (max-width: 991px) {
    .mobile-view {
        margin: 10px;
    }
}

/* Journal studies */
@media (min-width: 575px) {
    .show-all-studies .show-cards-number {
        width: calc(50% - 20px) !important;
    }
}

@media (min-width: 992px) {
    .show-all-studies .show-cards-number {
        width: calc(33% - 20px) !important;
    }
}

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

/* study-2-1  */
td.CellOverride-1 {
    border-top-style: solid;
}

.study-2-1 col._idGenTableRowColumn-1 {
    width: 26px;
}

.study-2-1 tr._idGenTableRowColumn-2 {
    min-height: 140px;
}

.study-2-1 tr._idGenTableRowColumn-3 {
    min-height: 54px;
}

.study-2-1 tr._idGenTableRowColumn-4 {
    background-color: #e6e7e8;
    height: 37px;
}

.study-2-1 tr._idGenTableRowColumn-5 {
    background-color: #ffffff;
    height: 45px;
}

.study-2-1 tr._idGenTableRowColumn-6 {
    background-color: #ffffff;
    height: 37px;
}

.study-2-1 col._idGenTableRowColumn-7 {
    width: 99px;
}

.study-2-1 col._idGenTableRowColumn-8 {
    width: 161px;
}

.study-2-1 col._idGenTableRowColumn-9 {
    width: 108px;
}

.study-2-1 tr._idGenTableRowColumn-10 {
    min-height: 48px;
}

.study-2-1 tr._idGenTableRowColumn-11 {
    background-color: #e6e7e8;
    min-height: 21px;
}

.study-2-1 tr._idGenTableRowColumn-12 {
    background-color: #ffffff;
    min-height: 21px;
}

.study-2-1 #_idContainer002,
#_idContainer007 {
    display: inline-block;
    height: 539px;
    width: 369px;
}

.study-2-1 #_idContainer003 {
    display: inline-block;
    height: 103px;
    width: 349px;
}

.study-2-1 #_idContainer004 {
    display: inline-block;
    height: 180px;
    width: 350px;
}

.study-2-1 #_idContainer005 {
    display: inline-block;
    height: 160px;
    width: 264px;
}

@media (min-width: 673px) {
    .vatical-data td {
        vertical-align: bottom;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        /* لتكون الكتابة من الأعلى للأسفل */
    }
}

@media (max-width: 673px) {
    .vatical-data thead tr:first-child td {
        writing-mode: sideways-lr;
    }
}

.study-2-1 {
    margin-right: auto !important;
    margin-left: auto !important;
}

 /* study-2-2 */

 /* table  */
 table.TableOverride-1 {
	border-collapse:collapse;
	border-width:1px;
}

.study-2-2 td.CellOverride-1 {
	vertical-align:middle;
}
.study-2-2 td.CellOverride-2 {
	background-color:#283c90;
}

/* .study-2-2 td._idGenCellOverride-1 {
	border-right-color:#939598;
	border-right-style:solid;
	border-right-width:1px;
} */
.study-2-2 col._idGenTableRowColumn-1 {
	width:74px;
}
.study-2-2 tr._idGenTableRowColumn-2 {
	min-height:28px;
}
.study-2-2 tr._idGenTableRowColumn-3 {
	background-color:#e6e7e8;
	min-height:63px;
}
.study-2-2 tr._idGenTableRowColumn-4 {
	background-color:#ffffff;
	min-height:34px;
}
.study-2-2 tr._idGenTableRowColumn-5 {
	background-color:#e6e7e8;
	min-height:34px;
}
.study-2-2 col._idGenTableRowColumn-6 {
	width:73px;
}
.study-2-2 col._idGenTableRowColumn-7 {
	width:105px;
}
.study-2-2 col._idGenTableRowColumn-8 {
	width:80px;
}
.study-2-2 col._idGenTableRowColumn-9 {
	width:111px;
}
.study-2-2 tr._idGenTableRowColumn-10 {
	min-height:33px;
}
.study-2-2 tr._idGenTableRowColumn-11 {
	background-color:#e6e7e8;
	height:54px;
}
.study-2-2 tr._idGenTableRowColumn-12 {
	background-color:#ffffff;
	height:54px;
}
.study-2-2 col._idGenTableRowColumn-13 {
	width:165px;
}
.study-2-2 col._idGenTableRowColumn-14 {
	width:45px;
}
.study-2-2 col._idGenTableRowColumn-15 {
	width:83px;
}
.study-2-2 col._idGenTableRowColumn-16 {
	width:75px;
}
.study-2-2 tr._idGenTableRowColumn-17 {
	min-height:32px;
}
.study-2-2 tr._idGenTableRowColumn-18 {
	background-color:#e6e7e8;
	min-height:36px;
}
.study-2-2 tr._idGenTableRowColumn-19 {
	background-color:#ffffff;
	min-height:21px;
}
.study-2-2 tr._idGenTableRowColumn-20 {
	background-color:#e6e7e8;
	min-height:21px;
}

.study-2-2 table{
    margin-right: auto !important;
    margin-left: auto !important;
}

.normal-li {
    font-weight: 500;
}

@media (max-width: 574px) {
     .mobile-view-4 {
       margin: auto;
    }

    .study-2-2 #table003 {
    width: -webkit-fill-available;
}
}

@media (min-width: 575px) {
    .mobile-view-4 {
      margin: 10px;
    }
}

@media (min-width: 768px) {
    .fig-imge-7 {
        width: auto !important;
    }
}


/* study 2-3 */
.study-2-3 col._idGenTableRowColumn-1 {
	width:78px;
}
.study-2-3 col._idGenTableRowColumn-2 {
	width:150px;
}
.study-2-3 col._idGenTableRowColumn-3 {
	width:139px;
}
.study-2-3 tr._idGenTableRowColumn-4 {
	min-height:33px;
}
.study-2-3 tr._idGenTableRowColumn-5 {
	background-color:#e6e7e8;
	min-height:36px;
}
.study-2-3 tr._idGenTableRowColumn-6 {
	background-color:#ffffff;
	min-height:51px;
}
.study-2-3 tr._idGenTableRowColumn-7 {
	background-color:#ffffff;
	min-height:36px;
}
.study-2-3 col._idGenTableRowColumn-8 {
	width:99px;
}
.study-2-3 col._idGenTableRowColumn-9 {
	width:161px;
}
.study-2-3 col._idGenTableRowColumn-10 {
	width:108px;
}
.study-2-3 tr._idGenTableRowColumn-11 {
	background-color:#e6e7e8;
	min-height:51px;
}
.study-2-3 col._idGenTableRowColumn-12 {
	width:123px;
}
.study-2-3 tr._idGenTableRowColumn-13 {
	min-height:18px;
}
.study-2-3 col._idGenTableRowColumn-14 {
	width:122px;
}
.study-2-3 col._idGenTableRowColumn-15 {
	width:69px;
}
.study-2-3 col._idGenTableRowColumn-16 {
	width:118px;
}
.study-2-3 col._idGenTableRowColumn-17 {
	width:90px;
}
.study-2-3 col._idGenTableRowColumn-18 {
	width:91px;
}
.study-2-3 tr._idGenTableRowColumn-19 {
	height:28px;
}
.study-2-3 tr._idGenTableRowColumn-20 {
	background-color:#e6e7e8;
	height:40px;
}
.study-2-3 tr._idGenTableRowColumn-21 {
	background-color:#ffffff;
	height:40px;
}


 /* study-2-4 */

.study-2-4 td.CellOverride-1 {
	background-color:#dcddde;
}

/* .study-2-4 td._idGenCellOverride-1 {
	border-right-color:#939598;
	border-right-style:solid;
	border-right-width:1px;
} */
.study-2-4 col._idGenTableRowColumn-1 {
	width:123px;
}
.study-2-4 col._idGenTableRowColumn-2 {
	width:61px;
}
.study-2-4 tr._idGenTableRowColumn-3 {
	background-color:#e6e7e8;
	min-height:21px;
}
.study-2-4 tr._idGenTableRowColumn-4 {
	background-color:#ffffff;
	min-height:21px;
}
.study-2-4 tr._idGenTableRowColumn-5 {
	background-color:#ffffff;
	min-height:36px;
}
.study-2-4 tr._idGenTableRowColumn-6 {
	background-color:#e6e7e8;
	min-height:36px;
}
.study-2-4 col._idGenTableRowColumn-7 {
	width:36px;
}
.study-2-4 col._idGenTableRowColumn-8 {
	width:64px;
}
.study-2-4 col._idGenTableRowColumn-9 {
	width:28px;
}
.study-2-4 col._idGenTableRowColumn-10 {
	width:58px;
}
.study-2-4 tr._idGenTableRowColumn-11 {
	background-color:#e6e7e8;
	min-height:34px;
}
.study-2-4 tr._idGenTableRowColumn-12 {
	background-color:#ffffff;
	min-height:34px;
}
.study-2-4 col._idGenTableRowColumn-13 {
	width:65px;
}
.study-2-4 tr._idGenTableRowColumn-14 {
	min-height:28px;
}
.study-2-4 col._idGenTableRowColumn-15 {
	width:92px;
}
.study-2-4 tr._idGenTableRowColumn-16 {
	min-height:34px;
}
.study-2-4 table._idGenTablePara-1 {
	margin-left:auto;
	margin-right:auto;
}

.study-2-4 table{
    margin-right: auto !important;
    margin-left: auto !important;
}

.full-width {
    width: 100% !important;
}

.large-table-width {
    margin-left: 5% !important;
    margin-right: 5% !important;
}

/* .add-new-margin {
    margin-left: 2px !important;
    margin-right: 2px !important;
} */

.add-padding {
    padding-right: 1px;
    padding-left: 1px;
}

.margin-zero{
    margin-left: 5% !important;
    margin-right: 5% !important;
}

@media (max-width: 450px) {
    .margin-zero{
        margin-left: 0% !important;
        margin-right: 0% !important;
    }

    .large-table-width {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
}
@media (max-width: 992px) and (min-width: 574px) {
    .custom-mobile-view-3 {
        margin: 10px;
    }
}

/* إصلاح المسافات الإضافية */
.nested-list {
    padding: 0 !important;
}

.nested-list li {
    margin: 0 !important;
    line-height: normal !important;
}

.nested-list li a {
    display: block;
    padding: 5px 10px !important; /* تحكم أنت في المسافة الداخلية */
    line-height: 1.2 !important;
}

.nested-list::before,
.nested-list::after {
    content: none !important; /*إزالة أي محتوى pseudo*/
}
