@import "../../fonts/Cairo/stylesheet.css";

* {
    font-family: 'Cairo', sans-serif;
}


html {
    scroll-padding-top: 100px; /* Adjust the value for your needs */
}


body.dark{
    background-color:  #111110;
    background-position: center;
    background-repeat: repeat;
    overflow-x: hidden;
}

.dark .iconMobileMneu{
    border: 0!important;
    outline: unset !important;
    box-shadow: unset !important;
}

/* nav-iconMobileMneu-2 */
.dark .nav-iconMobileMneu-2{
    width: 35px;
    height: 30px;
    margin: 10px 10px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.dark .nav-iconMobileMneu-2 span{
    background-color:#000;
    position: absolute;
    border-radius: 2px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
}

.dark .nav-iconMobileMneu-2 span:nth-child(1){
    width: 100%;
    height:  3px;
    display: block;
    top: 0px;
    left: 0px;
}

.dark .nav-iconMobileMneu-2 span:nth-child(2){
    width: 100%;
    height:  3px;
    display: block;
    top: 13px;
    left: 0px;
}

.dark .nav-iconMobileMneu-2 span:nth-child(3){
    width: 100%;
    height:  3px;
    display: block;
    bottom: 0px;
    left: 0px;
}

.dark .nav-iconMobileMneu-2:not(.open):hover span:nth-child(1){
    width: 100%;
    height:  3px;
    display: block;
    top: -2px;
    left: 0px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
}

.dark .nav-iconMobileMneu-2:not(.open):hover span:nth-child(2){
    width: 100%;
    height:  3px;
    display: block;
    top: 13px;
    left: 0px;
    transition: .4s cubic-bezier(.8, .5, .2, 1.4);
}

.dark .nav-iconMobileMneu-2:not(.open):hover span:nth-child(3){
    width: 100%;
    height:  3px;
    display: block;
    bottom: -2px;
    left: 0px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
}

.dark .nav-iconMobileMneu-2.open span:nth-child(1){
    left:3px;
    top: 12px;
    width: 30px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    transform: rotate(90deg);
    transition-delay: 150ms;
}

.dark .nav-iconMobileMneu-2.open span:nth-child(2){
    left:2px;
    top: 20px;
    width: 20px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    transform: rotate(45deg);
    transition-delay: 50ms;
}

.dark .nav-iconMobileMneu-2.open span:nth-child(3){
    left:14px;
    top: 20px;
    width: 20px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    transform: rotate(-45deg);
    transition-delay: 100ms;
}

.dark .header {
    position: relative;
    z-index: 100;
}

.dark .header.fixedMenu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s;
    background: #fff;
}

.dark .navbar-brand img {
    height: 90px;
}

.dark .search-box {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    cursor: pointer;
}

.dark .lang-switch {
    color: gray;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.dark .lang-switch span{
    height: 100%;
    font-size:16px;
}

.dark .lang-switch.active {
    background-color: #2A75B8;
    color: white;
}

.dark .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.dark .breadcrumb-item a {
    color: #2A75B8;
    text-decoration: none;
}

/*Mega Menu Styles */
.dark .mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    top: 100%;
    visibility: hidden;
    transform: translateY(-10px);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition:  0.5s;
    opacity: 0;
}

.dark .nav-item.has-mega-menu:hover .mega-menu {
    max-height: 2000px;
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition:  1s;
}

.dark span.sub_main_menu_list {
    display: block;
    margin-bottom: 18px;
    margin-top: 18px;
    font-weight: bold;
}

.dark span.title_sub_main_menu_list {
    display: block;
    margin-bottom: 18px;
    font-weight: bold;
}

.dark .cardFullMenu {
    border-top: 2px solid #2A75B8;
}

.dark .nav-item.has-mega-menu {
    position: static;
}

.dark .nav-item.has-mega-menu a i {
    position: relative;
    top: 3px;
}

.dark .mega-menu-list a {
    color: #b2b2b4;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s, padding-left 0.3s;
    border-radius: 4px;
    display: inline-block;
}

.dark .mega-menu-list a:hover {
    color: #000000;
}

.dark .menu_dropdown:hover .dropdown-menu {
    display: block;
}

.dark .menu_dropdown .dropdown-menu {
    margin-top: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 4px 0px #00000033;
}

.dark .ul_dropdown {
    border-radius: 0;
    border: 0;
    width: max-content;
}

.dark .ul_dropdown li a {
    padding: 8px 12px;
    color: #464646;
}

.dark .menu_dropdown .dropdown-toggle::after {
    border: 0;
}

.dark .mega-menu-column h3 {
    color: #2A75B8;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.dark .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark .mega-menu-list li {
    margin-bottom: 22px;
    position: relative;
}

.dark .department-list li {
    padding: 8px 15px;
}

.dark .dropdown-submenu-sub {
    position: relative;
}

.dark .dropdown-submenu-sub > .dropdown-menu {
    top: 0;
    right:  150%;
    margin-left: 0;
    margin-right: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 0;
    width: max-content;
    transition: 0.3s;
    opacity: 0;
    z-index: -1;
}

.dark .dropdown-submenu-sub:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    right: 100%;
}

.dark .dropdown-submenu-sub.subSubMenu > .dropdown-item::after {
    content: "\f104";
    float: left;
    font-family: FontAwesome;
}

@media (min-width: 991px) {
    .dark .dropdown-submenu-sub > .dropdown-menu.changeDir {
        top: 0;
        left:  150%;
        margin-left: 0;
        margin-right: 0;
        visibility: hidden;
        position: absolute;
        border-radius: 0;
        width: max-content;
        transition: 0.3s;
        opacity: 0;
        z-index: -1;
        right: unset;
    }

    .dark .dropdown-submenu-sub:hover > .dropdown-menu.changeDir {
        visibility: visible;
        opacity: 1;
        z-index: 1;
        left: 100%;
        right: unset;
    }
}

/*/////sub_menu */
.dark #departments-section {
    overflow: hidden; /* Hide overflow to prevent items from showing off-screen */
}

.dark .itemMenu i {
    font-size: 15px;
    display: inline-block;
    margin-right: 8px;
    transition: 0.3s;
}

.dark .itemMenu.active {
    color: #000;
}

.dark .itemMenu.active i {
    margin-right: 15px;
}

.dark .subItemMenu i{
    opacity: 0;
    transition: 0.3s;
    display: inline-block;
    margin-right: 8px;
}

.dark .subItemMenu:hover i{
    opacity:1;
    margin-right: 15px;
}

.dark .sliderMenu {
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.dark .contentSubMenu {
    height: 100%;
    width: 100%;
    position: absolute;
    right: -1000px;
    transition: right 0.5s ease-in-out;
    margin-top: 29px;
    padding: 0 17px;
    border-right: 2px solid #e3e3e3;
}

.dark .contentSubMenu.openSubMenu {
    right: 0;
}

.dark .social_media {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 100;
    text-decoration: none;
}

.dark .social_media a {
    text-decoration: none;
    display: block;
    padding-left: 5px;
    width: 126px;
    position: relative;
    margin-bottom: 15px;
    left: -76px;
    transition:0.3s;
    border-radius: 0 25px 25px 0;
    border:1px solid transparent;
    border-right: 0;
}

.dark .social_media a span {
    display: inline-block;
    top: -4px;
    position: relative;
    width: 70px;
    text-align: center;
    color: #000;
}

.dark .social_media a i {
    font-family: FontAwesome;
    padding: 9px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    margin-left: 5px;
    background-color: rgb(25 24 24 / 20%);
    backdrop-filter: blur(12px);
    border: 1px solid;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.dark .social_media a:hover {
    background: #ffffff;
    left: 0;
    border:1px solid #b4b4b459;
}

.dark .social_media a:hover i {
    background: #0B4D87;
    border: 1px solid transparent;
}

/*responsive*/
.dark .menuCenterMobile{
    display: none;
}

.dark .menuCenterPc{
    display: block;
}

.dark .topBar {
    padding: 14px 0;
    background: #252d35;
    border-bottom: 1px solid #cacaca2e;
    color: #fff;
}

.dark .socialMediaHeader a {
    text-decoration: none;
    display: inline-flex;
    width: 25px;
    height: 25px;
    background: #434343;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: 0.3s;
    font-size: 13px;
}

/*-----------------*/
.dark .search-container {
    position: relative;
}

.dark .search-field {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px;
    padding: 0px 50px 0 5px;
    font-size: 16px;
    color: #666;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:   0.3s ;
    text-align: right;
}

.dark .search-field:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.dark .search-field::placeholder {
    color: #999;
    font-size: 16px;
}

.dark .search-icon {
    position: absolute;
    right: 20px;
    top: 55%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dark .btn-search {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    background: #666 !important;
    transition: color 0.3s ease;
    color: #fff !important;
    border-radius: 25px;
}

.dark .main-news-import {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.dark .image-card-import {
    height: 400px;
    width: 100%;
    background-size: cover;
    border-radius: 8px;
    position: relative;
}

.dark .main-news-title-import {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin: 15px 0;
}

.dark .main-news-description-import {
    color: #a09e9e;
}

.dark .news-item-import {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.dark .news-title-item-import {
    font-size: 21px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: bold;
}

.dark .news-description-item-import {
    color: #a09e9e;
}

.dark .news-title-list {
    color: #a09e9e;
    font-weight: bold;
}

.dark .news-image-item-import {
    height: 150px;
    width: 100%;
    background-size: cover;
    border-radius: 8px;
    position: relative;
    display: block;
}

.dark .news-card img {
    border-radius: 8px;
    object-fit: cover;
}

.dark .news-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    line-height: 2;
}

.dark .news-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    background: transparent;
    border: 0;
}

.dark .news-card .card-img-top {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.dark .imageBigNews {
    height: 450px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.dark .viewAndDate {
    color: #fff;
    height: 200px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7259278711484594) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 0 13px;
    padding-bottom: 15px;
}

.dark .viewAndDate .row {
    height: 100%;
}

.dark div.text-muted {
    line-height: 2;
    margin-bottom: 15px;
    color: #a09e9e !important;
}

.dark .shareNews a {
    color: #0B0D0E;
    text-decoration: none;
    padding: 0 5px;
}

.dark .btnMoreLoad {
    background: #ffffff !important;
    color: #363333 !important;
}

.dark .title-inPage {
    margin-bottom: 20px;
}

.dark .title-inPage img{
    width: 20px;
}

.dark .title-inPage span{
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}

/*-------------------------coruse---------------*/
.dark .backgroundpage {
    height: 500px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.dark .backgroundpage::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #2e2e2d6b;
    position: absolute;
    top: 0;
    z-index: 1;
}

.dark .menuPage {
    background: transparent;
}

.dark .menuPage ul li a {
    color: #fff !important;
    font-size: 20px;
    font-weight: bold;
    padding: 0 28px;
}

.dark .InputSearch {
    position: absolute;
    width: 100%;
    bottom: 43%;
}

/*------------courses------------------*/
.dark .card_body_courses {
    background: #fff;
    padding: 8px 8px !important;
    border-radius: 0 0 10px 10px;
}

.dark .courses-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #b5b5b55e;
    border-radius: 15px;
    padding: 10px;
    background: #f3f3f3;
}

.dark .courses-card .card-img-courses {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.dark .courses-title-list {
    color: #585858;
    font-weight: bold;
    margin-bottom: 26px;
}

.dark .courses-description-list {
    margin-bottom: 26px;
}

.dark .dateCourses {
    background: #d3d3d3;
    padding: 2px 9px;
    border-radius: 15px;
    font-size: 13px;
}

/*------------end courses------------------*/
/*------------conferences------------------*/
.dark .card_body_conferences {
    background: #fff;
    padding: 8px 8px !important;
    border-radius: 0 0 10px 10px;
}

.dark .conferences-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #b5b5b55e;
    border-radius: 15px;
    padding: 10px;
    background: #f3f3f3;
}

.dark .conferences-card .card-img-conferences {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.dark .conferences-title-list {
    color: #585858;
    font-weight: bold;
    margin-bottom: 26px;
}

.dark .conferences-description-list {
    margin-bottom: 26px;
}

.dark .dateconferences {
    background: #d3d3d3;
    padding: 2px 9px;
    border-radius: 15px;
    font-size: 13px;
}

/*------------end conferences------------------*/

/*------------index-------------*/
.dark .toolSite {
    position: fixed;
    z-index: 10;
    left: 10px;
    top: 35%;
    background: #00000036;
    border-radius: 15px;
}

.dark .btn_toolSite {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0 5px;
}

.dark .btn_toolSite:nth-child(2) {
    margin-top: 10px;
}

.dark .btn_toolSite:last-child {
    margin-bottom: 10px;
}

.dark .btn_toolSite i {
    color: #fff;
    font-size: 20px;
}

.dark .btn_toolSite span {
    color: #fff;
    display: block;
    font-size: 10px;
}

.dark #exampleModalSearch {
    background: transparent;
    border: 0;
}

.dark #exampleModalSearch .modal-content{
    background: transparent;
    color: #fff;
    border: 0;
}

.dark .modal-backdrop.fade {
    opacity: 0.9;
}

.dark #exampleModalSearch .modal-header {
    border: 0;
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    width: 100%;
}

.dark #exampleModalSearch .modal-header button {
    color: #fff;
}

.dark #exampleModalSearch .input-group-text {
    border-radius: 0;
}

.dark #exampleModalSearch .modal-body input {
    height: 50px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    box-shadow: unset;
    border-radius: 0;
    color: #fff;
}

.dark #exampleModalSearch .modal-body button {
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
}

.dark #exampleModalSearch .modal-body input::placeholder {
    color: #fff;
    opacity: 1;
}

.dark .controlSlider-next,
.dark .controlSlider-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
}

.dark .swiper-button-prev.controlSlider-prev:after,
.dark .swiper-button-next.controlSlider-next:after {
    font-size: 18px;
    color: #fff;
}

.dark a.detailsSlider {
    text-decoration: none;
    color: #fff;
    background: #275ECD;
    padding: 6px 24px;
    font-size: 15px;
    border-radius: 8px;
}

.dark .mainSlideLayer {
    position: relative;
}

.dark .nameSlider {
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.dark .overSliderCard {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.72) 35.1%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    text-align: right;
}

.dark .mainSlideWebSite.swiper {
    width: 100%;
    height: 100%;
}

.dark .mainSlideWebSite .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #0d1b3f;
    height: 675px;
}

.dark .mainSlideWebSite .swiper-slide .imageSlider {
    display: block;
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.dark .mainSlideWebSite .swiper-slide video {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: -107px;
}

.dark .mainSlideWebSite .swiper-pagination span {
    background: #a8a8a8;
    width: 60px;
    border-radius: 25px;
    opacity: 0.7;
    height: 5px;
}

.dark .mainSlideWebSite .swiper-pagination span.swiper-pagination-bullet-active {
    background: #ddae0f;
    opacity: 1;
}

.dark .cardIndex {
    text-align: center;
    display: block;
    text-decoration: none;
}

.dark .cardIndex span {
    display: inline-flex;
    width: 80px;
    height: 80px;
    border: 2px solid #4d4d4d;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
}

.dark .cardIndex span img {
    max-width: 50px;
}

.dark .cardIndex .titleCardIndex {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
}

.dark .cardNews {
    padding: 30px;
    text-decoration: none;
    display: block;
    width: 100%;
}

.dark .newsSwiper.swiper {
    height: 690px;
    padding-bottom: 46px;
}

.dark .newsSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.dark .newsSwiper .swiper-slide {
    background: #fff;
}

.dark .imageCardNews {
    width: 100%;
    height: 450px;
    background-size: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    background-position: center;
}

.dark .titleCardNews {
    text-align: right;
    font-size: 21px;
    font-weight: bold;
    color: #535353;
}

.dark .titleCardDescription {
    text-align: right;
    font-size: 20px;
    margin-top: 10px;
    color: #767676;
}

.dark .newsSwiper .swiper-pagination span {
    background: #a8a8a8;
    width: 60px;
    border-radius: 25px;
    opacity: 0.7;
    height: 5px;
}

.dark .newsSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #ddae0f;
    opacity: 1;
}

.dark .allRelease {
    background: #323e3a;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    margin-top: 15px;
    text-decoration: none;
}

.dark .controlSliderReleases {
    position: relative;
    width: 110px;
    height: 39px;
}

.dark .controlSliderReleases .swiper {
    padding-top: 46px;
}

.dark .controlSliderReleases .swiper-button-next,
.dark .controlSliderReleases .swiper-button-prev {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #000;
    background-color:transparent;
    backdrop-filter: blur(12px);
}

.dark .controlSliderReleases .swiper-button-prev:after,
.dark .controlSliderReleases .swiper-button-next:after {
    font-size: 18px;
    color: #000;
}

.dark .controlSliderReleases .swiper-button-prev:after {
    content: '\f061';
    font-family: FontAwesome;
}

.dark .controlSliderReleases .swiper-button-next:after {
    content: '\f060';
    font-family: FontAwesome;
}

.dark .swiperReleases.swiper {
    width: 100%;
    height: 100%;
}

.dark .swiperReleases .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dark .releasesBar {
    margin-top: 150px;
}

.dark .nameBook {
    background: #676b58;
    color: #fff;
    padding: 7px 4px;
    border-radius: 5px;
    margin-top: 15px;
}

.dark .imageBook {
    text-align: center;
}

.dark .imageBook img {
    width: 100%;
    height: 240px;
}

.dark .cardBook {
    width: 100%;
    overflow: hidden;
    padding: 0 15px;
    text-decoration: none;
}

.dark .boxReleases {
    margin-top: -110px;
}

.dark .releases {
    height: 220px;
    background: #5e5e5e;
}

.dark .titleBar {
    position: relative;
}

.dark .titleBar span {
    position: relative;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}

.dark .titleBar span::before {
    position: absolute;
    content: '';
    width: 23px;
    height: 23px;
    border-top: 4px solid #535353;
    border-right: 4px solid #535353;
    right: -10px;
}

.dark .titleBar.w-color span {
    color: #fff;
}

.dark .titleBar.w-color span::before {
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

.dark .coursesSwiper.swiper {
    width: 100%;
    padding-bottom: 110px;
}

.dark .coursesSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #ddae0f;
    opacity: 1;
}

.dark .tabCourses {
    background: #323e3a;
    color: #fff;
    padding: 5px 20px;
    border-radius: 0;
    text-decoration: none;
    border-left: 2px solid #4a5748;
}

.dark .tabCourses:first-child {
    border-radius: 0 25px 25px 0;
}

.dark .tabCourses:last-child {
    border-radius:  25px 0 0 25px;
}

.dark .cardCourses {
    text-decoration: none;
    display: block;
}

.dark .imageSliderCourses{
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.dark .imageGridCourses{
    background-size: cover;
    background-position: center;
    height: 175px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.dark .titleCourses {
    text-align: right;
    font-size: 21px;
    font-weight: bold;
    color: #fff;
}

.dark .descriptionCourses {
    text-align: right;
    font-size: 20px;
    margin-top: 10px;
    color: #767676;
    margin-bottom: 15px;
}

.dark .titleGridCourses {
    text-align: right;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.dark .descriptionGridCourses {
    text-align: right;
    font-size: 14px;
    margin-top: 10px;
    color: #767676;
    margin-bottom: 15px;
}

.dark .dateCoursesIndex span {
    border-radius: 25px;
    background: #d3d3d3;
    padding: 0 12px;
    font-size: 13px;
    color: #000;
}

.dark .swiper.seminarsSwiper {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}

.dark .seminarsSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #ddae0f;
    opacity: 1;
}

.dark .categoriesSeminars {
    background: #fff;
    color: #36474c;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.dark .categoriesSeminars i {
    color: #bab98e;
    font-size: 8px;
    padding-left: 8px;
}

.dark .categorySeminar {
    position: absolute;
    background: #fff;
    top: 10px;
    right: 10px;
    padding: 3px 9px;
    border-radius: 25px;
    font-size: 13px;
    color: #000;
}

.dark .titleAndDateSeminars {
    position: absolute;
    bottom: 8px;
    width: 100%;
    padding: 0 13px;
}

.dark .titleSeminars {
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.dark .dateSeminars {
    color: #fff;
    text-align: left;
    font-size: 13px;
}

.dark .seminars {
    min-height: 500px;
    background: #36474c;
    margin-top: 100px;
    padding: 30px 0;
    background-size: cover;
}

.dark .seminarsCard {
    width: 100%;
    height: 300px;
    position: relative;
    display: block;
    text-decoration: none;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
}

.dark .shadowCard {
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0, rgb(255 255 255 / 0%) 100%);
    height: 75%;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.dark .categoriesConferencesSwiper.swiper {
    width: 100%;
    height: 100%;
}

.dark .categoriesConferences {
    background: #323e3a;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 5px;
}

.dark .conferencesSwiper.swiper {
    width: 100%;
    height: 100%;
    padding: 15px;
    padding-bottom: 50px;
}

.dark .conferencesSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    height: 15px;
    background: #ddae0f;
    opacity: 1;
    border-radius: 5px;
}

.dark .cardConferences {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 8px 0 #0e0e0e6e;
}

.dark .imageConferences {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.dark .titleConferences {
    padding: 12px 10px;
    color: #fff;
    font-weight: bold;
}


.dark  .swiper-pagination-bullet {

    background: #ffffff;
 }


/*------------end index-------------*/
@media (min-width: 992px) {
    .dark  .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}
/*-------------insidePage------------------*/




.dark .Sidebar-page {
    padding: 1rem;
    border-radius: 8px;
    background: #586262;
}


.dark .titleSidebar-page
{
    color: #fff;

}


.dark .cardAbout
{
    border: 1px solid #e1e1e1;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 15px;
}

.dark .titleAbout i {
    font-size: 27px;
}
.dark .titleAbout span{
    font-size: 20px;

}

.dark .titleAbout img {
    width: 17px;
}

.dark .titleAbout
{
    margin-bottom: 15px;
    color: #646464;
}

.dark .cardAbout .content
{
    line-height: 2;
}


.dark .activities-card img {
    border-radius: 8px;
    object-fit: cover;
}




.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}
.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titleactivitiesTopView {
    color: #0B0D0E;
}





.dark .otherMedia   a.imageactivities {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}
.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;

}






.dark .content b{
    line-height: 2;
    color: #a1a1a1;
    text-align: justify;
}


.dark .detailsactivities span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}



.dark .sharePost  span {
    color: #fff  ;

}


.dark .row.justify-content-between .col-auto
{
    color: #fff  ;

}

.dark .sharePost  a {
    text-decoration: none;
    border: 1px solid;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff  !important;
    font-size: 15px;
}

.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}


.dark .detailslibrary span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}


.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}



.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}


.dark .card-img-library {
    width: 100%;
    height: 300px;
    background-size: cover;
    border-radius: 5px;
}

.dark .library-card {
    padding: 15px;
    background: #f2f2f2;
    position: relative;
    border: 15px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: -2px 2px 2px 0 #f2f2f2;
}

.dark .library-card:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #ededed;
    position: absolute;
    z-index: -1;
    right: -24px;
    bottom: -24px;
    border-radius: 8px;
}

.dark .library-title-list {
    font-size: 24px;
    margin-bottom: 28px;
    margin-top: 15px;
}

.dark .details-details-list {
    min-height: 170px;
    margin-bottom: 24px;
    overflow: hidden;

}

.dark a.readAndDownload {
    text-decoration: none;
    background: #dddddd;
    color: #696464;
    margin: 0 9px;
    border-radius: 6px;
    padding: 3px 10px;
    display: inline-block;
}



.dark .news-card img {
    border-radius: 8px;
    object-fit: cover;
}


.dark .sidebar-news {
    padding: 1rem;
    border-radius: 8px;
    background: #5b6565;
}
.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}
.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titleNewsTopView {
    color: #fff;
}





.dark .otherMedia   a.imageNews {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}
.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;

}





.dark .detailsNews span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}





.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}


.dark .detailsNews span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}


.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}



.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}



.dark .category-releases-card
{
    border: 1px solid #e7e7e7;
    background: #efefef;
    display: block;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}
.dark .image-category-releases
{
    background: #cccdc861;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
}


.dark .image-category-releases img
{
    max-width: 65%;
}

.dark .title_category_releases {
    text-align: center;
    position: absolute;
    width: 100%;
    right: 0;
    bottom: -20px;
}
.dark .title_category_releases span {
    background: linear-gradient(141deg, rgb(87 111 142 / 51%) 0%, rgb(148 172 200) 37%, rgb(84 115 153 / 77%) 67%, rgb(155 174 192 / 86%) 100%);
    display: inline-block;
    padding: 5px 25px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
}


.dark .releases-card img {
    border-radius: 8px;
    object-fit: cover;
}


.dark .sidebar-releases {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
}
.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}
.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titlereleasesTopView {
    color: #0B0D0E;
}




.dark .otherMedia   a.imagereleases {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}
.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;

}








.dark .detailsreleases span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}




.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}


.dark .detailsreleases span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}


.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}



.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}

.dark .card-img-releases {
    width: 100%;
    height: 335px;
    background-size: cover;
    border-radius: 5px;
}

.dark .releases-card {
    background: #f2f2f2;
    position: relative;
    border: 15px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: -2px 2px 2px 0 #f2f2f2;
}


.dark .releases-title-list {
    font-size: 18px;
    position: absolute;
    text-align: center;
    width: 90%;
    right: 13px;
    color: #fff;
    background: linear-gradient(90deg, rgb(138 150 160) 0%, rgb(116 125 133) 45%);
    padding: 0 2px;
    border-radius: 12px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -28px;
}


.dark .readAndDownloadReleases{
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -60px;
}

.dark .readAndDownloadReleases  a{
    text-decoration: none;
    background: #dddddd;
    color: #696464;
    margin: 0 9px;
    border-radius: 6px;
    padding: 3px 10px;
    display: inline-block;
}

.dark .gsc-adBlock
{
    display: none !important;
}
.dark .gsc-result-info
{
    color: #ffffff;
}

.dark .gsc-control-cse {

    background: #ffffff;
}


.dark .seminars-card img {
    border-radius: 8px;
    object-fit: cover;
}


.dark .sidebar-seminars {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
}
.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}
.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titleseminarsTopView {
    color: #0B0D0E;
}



.dark .otherMedia   a.imageseminars {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}
.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;

}







.dark .detailsseminars span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}





.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}


.dark .detailsseminars span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}


.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}



.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}
.dark .seminars-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    padding: 15px;
    background: #f2f2f2;
    position: relative;
    border: 15px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: -2px 2px 2px 0 #f2f2f2;
}

.dark .seminars-card .card-img-seminars {
    height: 335px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: block;
}

.dark .dateseminars {
    background: #d3d3d3;
    padding: 2px 9px;
    border-radius: 15px;
    font-size: 13px;
}




.dark .seminars-title-list {
    font-size: 24px;
    margin-bottom: 28px;
    margin-top: 15px;
}

.dark .details-details-list {
    min-height: 170px;
    margin-bottom: 24px;
}

.dark a.readAndDownload {
    text-decoration: none;
    background: #dddddd;
    color: #696464;
    margin: 0 9px;
    border-radius: 6px;
    padding: 3px 10px;
    display: inline-block;
}


.dark .tabMedia
{
    width: 100%;
    color: #6E767C !important;
    background: #EBEDEF !important;
    padding: 15px 0;


}
.dark .tabMedia.active
{
    color: #fff !important;
    background: #12825F !important;
}
.dark .titlePageMedia
{
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: bold;
}

.dark .imageGalleryLoop
{
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 10px 0 #00000059;
    transition: 0.3s;
    position: relative;
    overflow: hidden;

}

.dark .imageGalleryLoop .titleVideo
{
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7259278711484594) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    bottom: 0;
    height: 50%;
    display: flex;
    align-items: end;
    padding: 18px 13px;
    color: #fff;
}


.dark #myVideo {
    width: 100%;
}

.dark .openVideo iframe {
    width: 100%;
    height: 500px;
}

.dark .closeBtn {
    background: #2c825e !important;
    border-radius: 15px;
    color: #fff !important;
    padding: 7px 30px;
}



.dark .copyright {
    text-align: center;
    border-top: 3px solid #ffff;
    padding-top: 15px;
    margin-top: 42px;
    color: #fff;
}


.dark .working_hours_and_location {
    text-align: center;
    font-weight: bold;
}

.dark .logoFooter
{
    text-align: center;
}

.dark .logoFooter img
{
    width: 185px;
}

.dark .textFooter
{
    text-align: center;
    margin-top: 25px;
    margin-bottom: 50px;
}


.dark .socialMedia
{
    text-align: center;
}

.dark .socialMedia a
{
    text-decoration: none;
    color: #fff;
    padding: 0 6px;
     font-size: 15px;
}

.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}


.dark .detailsactivities span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}


.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}



.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}


.dark .title_category_details {
    position: absolute;
    width: 100%;
    bottom: 60%;
    text-align: center;
    font-size: 33px;
    color: #fff;
    font-weight: bold;
}




.dark .alriwayat-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #efefef;
    padding: 15px;
}


.dark .details_alriwayat {
    text-align: center;
    background: #f5f5f5;
    padding: 13px;
    line-height: 2.5;
    font-weight: bold;
}

.dark .details_alriwayat .source {
    text-align: left;
    margin-top: 18px;
    font-size: 13px;
    color: #6b6b6b;
}


.dark .image_alriwayat {
    height: 300px;
    width: 100%;
    border-radius: 50% 50% 10px 10px;
    background-size: cover;
    background-position: center;
    transition: 0.3s;
}


.dark .category_alriwayat:hover .image_alriwayat {
    box-shadow: 0 0 9px 0 #121111;
    transform: scale(0.9);
}

.dark .category_alriwayat {
    display: block;
    border: 1px solid #c8c8c8;
    background: #eaeaea;
    border-radius: 50% 50% 0 0;
    padding: 10px;
    text-decoration: none;
    transition: 0.3s;

}
.dark .category_alriwayat:hover {
    box-shadow: inset 0 0 13px 0px #51515191;

}

.dark .title_category_alriwayat {
    text-align: center;
    padding-top: 17px;
    color: #fff;
    font-weight: bold;
}



.dark .alriwayat-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #efefef;
    padding: 15px;
}


.dark .details_alriwayat {
    text-align: center;
    background: #f5f5f5;
    padding: 13px;
    line-height: 2.5;
    font-weight: bold;
}

.dark .details_alriwayat .source {
    text-align: left;
    margin-top: 18px;
    font-size: 13px;
    color: #6b6b6b;
}




.dark .diagram {
    position: relative;
    margin: 0 auto;

}
.dark .category_conferences {
    position: absolute;
    width: 100%;
    bottom: 42%;

}

/* الـ SVG يغطي الحاوية ليُعرض فيه الخطوط */
.dark #connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* يسمح بالنقر على العناصر أعلى الـ SVG */
    overflow: visible;
}


.dark .boxConferences.main_boxConferences
{
    background: linear-gradient(90deg, rgba(32,92,145,1) 0%, rgba(84,151,200,1) 100%);
}



.dark .boxConferences {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 12px 22px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(10, 30, 60, 0.12);
    background: linear-gradient(90deg, #75b798 0%, #3e8947 100%);
    white-space: nowrap;
    font-size: 1.05rem;
    text-decoration: none;
}



/* فرق المسافة بين الصندوق العلوي والأسفل */
.dark .top-wrap {
    display:flex;
    justify-content:center;
    align-items:center;
}

.dark .boxes-row {
    margin-top: 28px;
}

.dark .box-child {
    margin: 0 auto;
}

/* تصغير على شاشات صغيرة */
@media (max-width: 576px) {
    .dark .boxConferences { font-size: 0.95rem; padding: 10px 14px; }
}

.dark .conferences-card img {
    border-radius: 8px;
    object-fit: cover;
}


.dark .sidebar-conferences {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
}
.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}
.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titleconferencesTopView {
    color: #0B0D0E;
}







.dark .otherMedia   a.imageconferences {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}
.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;

}






.dark .detailsconferences span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}





.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}


.dark .detailsconferences span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}


.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}



.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}


.dark .bgcontact .form-control {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-right: 40px; /* مساحة للأيقونة */
}
.dark .bgcontact .input-group-text {
    background: transparent;
    border: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}
.dark .bgcontact   .input-wrapper {
    position: relative;
    margin-bottom: 15px;
}
.dark .bgcontact  textarea.form-control {
    resize: none;
    height: 120px;
}
.dark .bgcontact .btn-send {
    background-color: #f7941d;
    color: #fff;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
}
.dark .bgcontact  .btn-send:hover {
    background-color: #e08315;
}
.dark .bgcontact  .dot_and_title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
}
.dark .bgcontact  .dot_and_title img{
    width: 20px;
}
.dark .bgcontact  .dot_and_title span{
    display: block;
}

.dark .info_contact
{
    height: 100%;
}
.dark .info_contact .info-card
{
    height: 100%;
}

.dark .info_contact .map {
    width: 100%;
    height: 445px;
    margin-bottom: 30px;
    border: 1px solid gainsboro;
}
.dark .info_contact .info-card {
    background: #efefef;
    border-radius: 8px;
    padding: 46px 5px;
    text-align: center;
    transition: all 0.3s;
}
.dark .info_contact .info-card i {
    font-size: 40px;
    color: #f7941d;
    margin-bottom: 15px;
}
.dark .info_contact .info-card h5 {
    font-weight: bold;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
.dark .info_contact .info-card p {
    margin: 0;
    font-size: 15px;
    color: #888;
}




.dark .errorForm
{
    color: red;
}

.dark .borderError
{
    border: 1px solid red !important;
}

.dark .formField
{
    height: 50px;
    border: 1.9px solid #C9CFD4;
    margin-top: 14px;
}

.dark .formFieldComment
{
    border: 1.9px solid #C9CFD4;
    margin-top: 14px;
}

.dark .btnSendComment button {
    background: #2c825e !important;
    color: #fff !important;
    padding: 7px 52px;
}

.dark .courses-card img {
    border-radius: 8px;
    object-fit: cover;
}


.dark .sidebar-courses {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
}
.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}
.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titlecoursesTopView {
    color: #0B0D0E;
}





.dark .otherMedia   a.imagecourses {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}
.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;

}







.dark .detailscourses span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}




.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}


.dark .detailscourses span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}


.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}



.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}

.dark .name-departments-centers {
    position: absolute;
    width: 100%;
    bottom: 43%;
}

.dark .iconDep,.dark .nameDep
{
    text-align: center;
}
.dark .iconDep img
{
    max-width: 150px;
}
.dark .nameDep {
    font-size: 25px;
    font-weight: bold;
    margin-top: 18px;
    color: #fff;
}



.dark .breadcrumbTab .breadcrumb-item a
{
    color: #7b7b7b;
    text-decoration: none;
    padding: 7px 28px;
    background-size: 100% 100% !important;
    min-width: 145px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}



.dark .breadcrumbTab a.breadcrumbTab-active{
    color: #fff;
}

.dark .otherMedia
{
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 12px 0 #00000070;
}
.dark .otherMedia .imgprojects
{
    width: 100%;
    height: 250px;
    background-color: #f3f2f2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.dark .otherMedia video
{
    width: 100%;
    height: 250px;
    background-color: #000;

}



.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}



.dark .content{
    color: #524f4f;
    text-align: justify;
    margin-top: 19px;
    line-height: 2.7;
}

.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}

.dark .fullFile .imgprojects{

    width: 100%;
    height: 500px;

}


@media (max-width:767px ) {

    .dark .fullFile .imgprojects{

        width: 100%;
        height: 300px;

    }
}


@media (max-width:460px ) {

    .dark .fullFile .imgprojects{

        width: 100%;
        height: 250px;

    }
}


.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}

.dark .cardDetailsDep {
    background: #f0f0f0;
    padding: 25px;
    border: 2px solid #d8d8d8;
    border-radius: 10px;
}
.dark .titleCard  {
    font-size: 18px;
    font-weight: bold;
    color: #53676b;
}

.dark .downloadFile
{
    background: #323e3a;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    margin-top: 15px;
    text-decoration: none;
}


.dark .image_department_center{
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 10px 10px;
    background-size: cover;
    background-position: center;
}

.dark .image_department_center img{
    max-width: 90px;
}


.dark a.department_center {
    background: #efefef;
    display: block;
    border-radius: 50% 50% 10px 10px;
    padding: 15px;
    border: 2px solid #dad8d8a6;
    text-decoration: none;
    font-weight: bold;
    color: #5c5959;
}
.dark .name_departments_centers {
    text-align: center;
    margin-top: 15px;
}



.dark .otherMedia
{
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 12px 0 #00000070;
}
.dark .otherMedia .imgprojects
{
    width: 100%;
    height: 250px;
    background-color: #f3f2f2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.dark .otherMedia video
{
    width: 100%;
    height: 250px;
    background-color: #000;

}



.dark .poster img
{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}



.dark .content{
    color: #524f4f;
    text-align: justify;
    margin-top: 19px;
    line-height: 2.7;
}

.dark .content img
{

    max-width: 100% !important;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}


.dark .fullFile video{

    width: 100%;
    height: auto;

}

.dark .fullFile .imgprojects{

    width: 100%;
    height: 500px;

}


@media (max-width:767px ) {

    .dark .fullFile .imgprojects{

        width: 100%;
        height: 300px;

    }
}


@media (max-width:460px ) {

    .dark .fullFile .imgprojects{

        width: 100%;
        height: 250px;

    }
}


.dark .content  video
{
    width: 100% !important;
    height: auto !important;
}
.dark .content  iframe
{
    width: 100%;

}

.dark .cardDetailsDep {
    background: #f0f0f0;
    padding: 25px;
    border: 2px solid #d8d8d8;
    border-radius: 10px;
}
.dark .titleCard  {
    font-size: 18px;
    font-weight: bold;
    color: #53676b;
}


.dark .card-img-library {
    width: 100%;
    height: 255px;
    background-size: cover;
    border-radius: 5px;
}

.dark .library-card {
    padding: 15px;
    background: #f2f2f2;
    position: relative;
    border: 15px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: -2px 2px 2px 0 #f2f2f2;
}

.dark .library-card:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #ededed;
    position: absolute;
    z-index: -1;
    right: -24px;
    bottom: -24px;
    border-radius: 8px;
}

.dark .library-title-list {
    font-size: 24px;
    margin-bottom: 28px;
    margin-top: 15px;
}

.dark .details-details-list {
    min-height: 95px;
    margin-bottom: 24px;
    overflow: hidden;
}

.dark a.readAndDownload {
    text-decoration: none;
    background: #dddddd;
    color: #696464;
    margin: 0 9px;
    border-radius: 6px;
    padding: 3px 10px;
    display: inline-block;
}



.dark .tabMedia
{
    width: 100%;
    color: #6E767C !important;
    background: #EBEDEF !important;
    padding: 15px 0;


}
.dark .tabMedia.active
{
    color: #fff !important;
    background: #12825F !important;
}
.dark .titlePageMedia
{
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: bold;
}

.dark .imageGalleryLoop
{
    width: 100%;
    height: 250px;
    display: block;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 10px 0 #00000059;
    transition: 0.3s;

}

.dark .imageGalleryLoop:hover
{
    transform: scale(1.1);
}




.dark .category-library-card
{
    border: 1px solid #e7e7e7;
    background: #efefef;
    display: block;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}
.dark .image-category-library
{
    background: #cccdc861;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
}


.dark .image-category-library img
{
    max-width: 65%;
}

.dark .title_category_library {
    text-align: center;
    position: absolute;
    width: 100%;
    right: 0;
    bottom: -20px;
}
.dark .title_category_library span {
    background: linear-gradient(141deg, rgb(87 111 142 / 51%) 0%, rgb(148 172 200) 37%, rgb(84 115 153 / 77%) 67%, rgb(155 174 192 / 86%) 100%);
    display: inline-block;
    padding: 5px 25px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
}

.dark .library-card img {
    border-radius: 8px;
    object-fit: cover;
}


.dark .sidebar-library {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
}
.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}
.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titlelibraryTopView {
    color: #0B0D0E;
}


.dark .title-details{
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 10px;
    color: #fff;
}


.dark .otherMedia   a.imagelibrary {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}
.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;

}







.dark .detailslibrary span
{

    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}





.dark .poster img {
    width: 100%;
    margin-bottom: 5px;
    border-radius: 5px;
}

.dark .detailsNews span {
    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}

.dark .content img {
    max-width: 100% !important;
}

.dark .fullFile video{
    width: 100%;
    height: auto;
}

.dark .content  video {
    width: 100% !important;
    height: auto !important;
}

.dark .content  iframe {
    width: 100%;
}

.dark .category-releases-card {
    border: 1px solid #e7e7e7;
    background: #efefef;
    display: block;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.dark .image-category-releases {
    background: #cccdc861;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
}

.dark .image-category-releases img {
    max-width: 65%;
}

.dark .title_category_releases {
    text-align: center;
    position: absolute;
    width: 100%;
    right: 0;
    bottom: -20px;
}

.dark .title_category_releases span {
    background: linear-gradient(141deg, rgb(87 111 142 / 51%) 0%, rgb(148 172 200) 37%, rgb(84 115 153 / 77%) 67%, rgb(155 174 192 / 86%) 100%);
    display: inline-block;
    padding: 5px 25px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
}

.dark .releases-card img {
    border-radius: 8px;
    object-fit: cover;
}

.dark .sidebar-releases {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
}

.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titlereleasesTopView {
    color: #0B0D0E;
}

.dark .title-details {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 10px;
}

.dark .otherMedia   a.imagereleases {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}

.dark .otherMedia video{
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;
}

.dark .content{
    color: #ababab;
    text-align: justify;
    margin-top: 15px;
    line-height: 2.7;
}


.dark .detailsreleases span {
    display: inline-block;
    border-bottom: 1px solid;
    font-size: 20px;
    font-weight: bold;
}

.dark .card-img-releases {
    width: 100%;
    height: 335px;
    background-size: cover;
    border-radius: 5px;
}

.dark .releases-card {
    background: #f2f2f2;
    position: relative;
    border: 15px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: -2px 2px 2px 0 #f2f2f2;
}

.dark .releases-title-list {
    font-size: 18px;
    position: absolute;
    text-align: center;
    width: 90%;
    right: 13px;
    color: #fff;
    background: linear-gradient(90deg, rgb(138 150 160) 0%, rgb(116 125 133) 45%);
    padding: 0 2px;
    border-radius: 12px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -28px;
}

.dark .readAndDownloadReleases{
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -60px;
}

.dark .readAndDownloadReleases  a{
    text-decoration: none;
    background: #dddddd;
    color: #696464;
    margin: 0 9px;
    border-radius: 6px;
    padding: 3px 10px;
    display: inline-block;
}

.dark .gsc-adBlock {
    display: none !important;
}

.dark .gsc-result-info {
    color: #ffffff;
}

.dark .gsc-control-cse {
    background: #ffffff;
}

.dark .seminars-card img {
    border-radius: 8px;
    object-fit: cover;
}

.dark .sidebar-seminars {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
}

.dark .sidebar-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.dark .sidebar-item img {
    width: 95px;
    height: 74px;
    border-radius: 4px;
    object-fit: cover;
}

.dark .sidebar-item  .titleseminarsTopView {
    color: #0B0D0E;
}

.dark .otherMedia   a.imageseminars {
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    border-radius: 8px;
}

.dark .seminars-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    padding: 15px;
    background: #f2f2f2;
    position: relative;
    border: 15px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: -2px 2px 2px 0 #f2f2f2;
}

.dark .seminars-card .card-img-seminars {
    height: 335px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: block;
}

.dark .dateseminars {
    background: #d3d3d3;
    padding: 2px 9px;
    border-radius: 15px;
    font-size: 13px;
}

.dark .seminars-title-list {
    font-size: 24px;
    margin-bottom: 28px;
    margin-top: 15px;
}

.dark .details-details-list {
    min-height: 170px;
    margin-bottom: 24px;
}

.dark a.readAndDownload {
    text-decoration: none;
    background: #dddddd;
    color: #696464;
    margin: 0 9px;
    border-radius: 6px;
    padding: 3px 10px;
    display: inline-block;
}

.dark .tabMedia {
    width: 100%;
    color: #6E767C !important;
    background: #EBEDEF !important;
    padding: 15px 0;
}

.dark .tabMedia.active {
    color: #fff !important;
    background: #12825F !important;
}

.dark .titlePageMedia {
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: bold;
}

.dark .imageGalleryLoop {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 10px 0 #00000059;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.dark .imageGalleryLoop .titleVideo {
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7259278711484594) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    bottom: 0;
    height: 50%;
    display: flex;
    align-items: end;
    padding: 18px 13px;
    color: #fff;
}

.dark #myVideo {
    width: 100%;
}

.dark .openVideo iframe {
    width: 100%;
    height: 500px;
}

.dark .closeBtn {
    background: #2c825e !important;
    border-radius: 15px;
    color: #fff !important;
    padding: 7px 30px;
}

.dark .working_hours_and_location {
    text-align: center;
    font-weight: bold;
}

.dark .footer {
    min-height: 500px;
    width: 100%;
    background-size: cover;
    padding: 30px 0;
    color: #fff;
}

.dark .logoFooter {
    text-align: center;
}

.dark .logoFooter img {
    width: 185px;
}

.dark .textFooter {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 50px;
}

.dark .socialMedia {
    text-align: center;
}

