.hero {
    width: 100%;
    position: relative;
    padding: 0 0 0 0;
}

a.front-more {
    font-size: 20px;
}

.font-conferences {
    font-size: 18px !important;
}

.p-15{
    padding: 15px 10px;
}

.row{
    margin-left: 0 !important;
}
.content textarea {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    text-wrap: wrap;
    direction: rtl;
    font-family: sans-serif;
    resize: none;
    unicode-bidi: plaintext;
    border: none;
}
.custom-btn {
    /* width: 130px; */
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

.btn-5 {
    /* width: 30px; */
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
    background: #253d55;
}

.btn-5:hover {
    color: #253d55;
    background: white;
    box-shadow: none;
}

.btn-5:before,
.btn-5:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #253d55;
    box-shadow:
        -1px -1px 5px 0px #fff,
        7px 7px 20px 0px #0003,
        4px 4px 5px 0px #0002;
    transition: 400ms ease all;
}

.btn-5:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.btn-5:hover:before,
.btn-5:hover:after {
    width: 100%;
    transition: 800ms ease all;
}




.image-containerr {
    display: flex;
    justify-content: center;
    /* Horizontally center the image */
    align-items: center;
    /* Vertically center the image */
    height: 250px;
    /* Set a fixed height for the container */
    background-color: white;
}

.Bar-logo {
    margin: 10px !important;
    border-radius: 20PX;
    justify-content: center;
    width: 20PX;
    height: 20PX;
}

.apppic {
    margin-right: 8px;
}

@media (max-width: 767px) {

    /* Apply styles only for screens with width up to 767px (mobile devices) */
    .d-flex.flex-wrap.justify-content-center.align-items-center {
        flex-direction: column;
        align-items: center;

    }

    .d-flex.flex-wrap.justify-content-center.align-items-center>a {
        width: 150px;
        max-width: 200px;
        /* Adjust the maximum width as needed */
    }

    .apppic {

        width: 170px;
    }
}

.social-links a {
    font-size: 30px !important;
}

.social-links a.twitter:hover {
    color: #00acee;
}

.social-links a.facebook:hover {
    color: #3b5998;
}

.social-links a.instagram:hover {
    color: #E4405F;
}

.social-links a.youtube:hover {
    color: #FF0000;
}

.social-links a.telegram:hover {
    color: #229ED9;
}

.social-links a.whatsapp:hover {
    color: #25D366;
}

.ghost-blue {
    color: #0073b5;
    background: #253d55;
    padding: 0px 7px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}

.ghost-blue:hover,
.ghost-blue:active {
    color: #fff;
    background: #0066ff;
}





/* CSS code */
.row_bg {
    background-color: #253d55;
    height: 60px;
    overflow: hidden;
    border-radius: 30px;
    display: flex;
    align-items: center;
    width: 100%;
}

.scrolling-marquee {
    width: 100%;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;

    color: white;
    /* Change the animation duration as needed */
}

.scrolling-marquee span {
    animation: marquee-slide 20s linear infinite;
}

@keyframes marquee-slide {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes marquee-scroll {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    max-height: 500px !important;
}


/* Responsive styles for .card-body */

@media (max-width: 768px) {

    .scrolling-marquee {
        width: 200%;
        white-space: nowrap;
        animation: marquee-scroll 20s linear infinite;
        overflow: none;
        /* تم تغيير هذا الخاصية لإخفاء المحتوى الزائد */
        color: white;
        /* Change the animation duration as needed */
    }

    @keyframes marquee-slide {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    @keyframes marquee-scroll {

        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(200%);
        }
    }


    /* For screens up to 768px wide */
    .card-body {
        max-height: none !important;
        overflow-y: auto;
        /* Add vertical scrollbar if content overflows */
    }
}

.custom-card {
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000;
    /* Set the text color to black */
    font-size: 18px;
}

.custom-card .card-title {
    color: #333;
    text-align: center;
}

.custom-card .card-text {
    color: #333;
    text-align: left;
    margin-top: 20%;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: -100px;
    left: 10px;
}

.video-container iframe {
    width: 560px;
    height: 300px;
}

@media only screen and (max-width: 600px) {

    /* Adjust dimensions for mobile devices */
    .video-container {
        position: absolute;
        top: 1px;
        left: 10px;
    }

    .video-container iframe {
        width: 160px;
        height: 150px;
    }


}

.sticked-header-offset {
    margin-top: 0;
}

.blogsec {
    position: relative;
    margin-top: -20%;
    z-index: 3;
    color: #fff;
    padding-right: 20px;
    width: 100%;
}

.blogsec .post-category {
    font-weight: 600;
    color: white;
}

.blogsec a {
    text-shadow: rgb(16, 18, 19) 3px 0px 0px, rgb(16, 18, 19) 2.83487px 0.981584px 0px, rgb(16, 18, 19) 2.35766px 1.85511px 0px, rgb(16, 18, 19) 1.62091px 2.52441px 0px, rgb(16, 18, 19) 0.705713px 2.91581px 0px, rgb(16, 18, 19) -0.287171px 2.98622px 0px, rgb(16, 18, 19) -1.24844px 2.72789px 0px, rgb(16, 18, 19) -2.07227px 2.16926px 0px, rgb(16, 18, 19) -2.66798px 1.37182px 0px, rgb(16, 18, 19) -2.96998px 0.42336px 0px, rgb(16, 18, 19) -2.94502px -0.571704px 0px, rgb(16, 18, 19) -2.59586px -1.50383px 0px, rgb(16, 18, 19) -1.96093px -2.27041px 0px, rgb(16, 18, 19) -1.11013px -2.78704px 0px, rgb(16, 18, 19) -0.137119px -2.99686px 0px, rgb(16, 18, 19) 0.850987px -2.87677px 0px, rgb(16, 18, 19) 1.74541px -2.43999px 0px, rgb(16, 18, 19) 2.44769px -1.73459px 0px, rgb(16, 18, 19) 2.88051px -0.838247px 0px;
    color: white;
    font-size: 40px !important;
}

.blogsec a:hover {
    color: #366FEA;
    text-shadow: rgb(16, 18, 19) 3px 0px 0px, rgb(16, 18, 19) 2.83487px 0.981584px 0px, rgb(16, 18, 19) 2.35766px 1.85511px 0px, rgb(16, 18, 19) 1.62091px 2.52441px 0px, rgb(16, 18, 19) 0.705713px 2.91581px 0px, rgb(16, 18, 19) -0.287171px 2.98622px 0px, rgb(16, 18, 19) -1.24844px 2.72789px 0px, rgb(16, 18, 19) -2.07227px 2.16926px 0px, rgb(16, 18, 19) -2.66798px 1.37182px 0px, rgb(16, 18, 19) -2.96998px 0.42336px 0px, rgb(16, 18, 19) -2.94502px -0.571704px 0px, rgb(16, 18, 19) -2.59586px -1.50383px 0px, rgb(16, 18, 19) -1.96093px -2.27041px 0px, rgb(16, 18, 19) -1.11013px -2.78704px 0px, rgb(16, 18, 19) -0.137119px -2.99686px 0px, rgb(16, 18, 19) 0.850987px -2.87677px 0px, rgb(16, 18, 19) 1.74541px -2.43999px 0px, rgb(16, 18, 19) 2.44769px -1.73459px 0px, rgb(16, 18, 19) 2.88051px -0.838247px 0px;
    font-weight: 700;
}

.blogsec p {
    font-size: 1px !important;
}

.hero .icon-boxx p {
    text-shadow: rgb(16, 18, 19) 3px 0px 0px, rgb(16, 18, 19) 2.83487px 0.981584px 0px, rgb(16, 18, 19) 2.35766px 1.85511px 0px, rgb(16, 18, 19) 1.62091px 2.52441px 0px, rgb(16, 18, 19) 0.705713px 2.91581px 0px, rgb(16, 18, 19) -0.287171px 2.98622px 0px, rgb(16, 18, 19) -1.24844px 2.72789px 0px, rgb(16, 18, 19) -2.07227px 2.16926px 0px, rgb(16, 18, 19) -2.66798px 1.37182px 0px, rgb(16, 18, 19) -2.96998px 0.42336px 0px, rgb(16, 18, 19) -2.94502px -0.571704px 0px, rgb(16, 18, 19) -2.59586px -1.50383px 0px, rgb(16, 18, 19) -1.96093px -2.27041px 0px, rgb(16, 18, 19) -1.11013px -2.78704px 0px, rgb(16, 18, 19) -0.137119px -2.99686px 0px, rgb(16, 18, 19) 0.850987px -2.87677px 0px, rgb(16, 18, 19) 1.74541px -2.43999px 0px, rgb(16, 18, 19) 2.44769px -1.73459px 0px, rgb(16, 18, 19) 2.88051px -0.838247px 0px;
    color: white;
    font-size: 30px !important;
}

article .post-img img {
    height: 100vh;
    padding: 0 !important;
}

@media (max-width: 767px) {
    .blogsec {
        position: absolute;
        top: -100px;
        margin-bottom: 60px;
        margin-top: 35vh;
        z-index: 99;
        color: #fff;
        text-shadow: rgb(16, 18, 19) 3px 0px 0px, rgb(16, 18, 19) 2.83487px 0.981584px 0px, rgb(16, 18, 19) 2.35766px 1.85511px 0px, rgb(16, 18, 19) 1.62091px 2.52441px 0px, rgb(16, 18, 19) 0.705713px 2.91581px 0px, rgb(16, 18, 19) -0.287171px 2.98622px 0px, rgb(16, 18, 19) -1.24844px 2.72789px 0px, rgb(16, 18, 19) -2.07227px 2.16926px 0px, rgb(16, 18, 19) -2.66798px 1.37182px 0px, rgb(16, 18, 19) -2.96998px 0.42336px 0px, rgb(16, 18, 19) -2.94502px -0.571704px 0px, rgb(16, 18, 19) -2.59586px -1.50383px 0px, rgb(16, 18, 19) -1.96093px -2.27041px 0px, rgb(16, 18, 19) -1.11013px -2.78704px 0px, rgb(16, 18, 19) -0.137119px -2.99686px 0px, rgb(16, 18, 19) 0.850987px -2.87677px 0px, rgb(16, 18, 19) 1.74541px -2.43999px 0px, rgb(16, 18, 19) 2.44769px -1.73459px 0px, rgb(16, 18, 19) 2.88051px -0.838247px 0px;
        /* background: rgba(0, 0, 0, 0.5) !important;*/
        width: 100%;
    }

    .blogsec a {
        font-size: 16px !important;
    }



    .hero .icon-boxx p {
        font-size: 20px !important;
    }

    .blogsec p {
        font-size: 1px !important;
        margin-bottom: 80px;
    }



    article .post-img img {
        height: 40vh;
        margin-top: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {
    .blogsec {
        position: absolute;
        margin-bottom: 120px;
        top: -100px;
        margin-top: 80vh;
        z-index: 99;
        color: #060c3b;
        /* background: rgba(0, 0, 0, 0.5) !important;*/
        text-shadow: rgb(16, 18, 19) 3px 0px 0px, rgb(16, 18, 19) 2.83487px 0.981584px 0px, rgb(16, 18, 19) 2.35766px 1.85511px 0px, rgb(16, 18, 19) 1.62091px 2.52441px 0px, rgb(16, 18, 19) 0.705713px 2.91581px 0px, rgb(16, 18, 19) -0.287171px 2.98622px 0px, rgb(16, 18, 19) -1.24844px 2.72789px 0px, rgb(16, 18, 19) -2.07227px 2.16926px 0px, rgb(16, 18, 19) -2.66798px 1.37182px 0px, rgb(16, 18, 19) -2.96998px 0.42336px 0px, rgb(16, 18, 19) -2.94502px -0.571704px 0px, rgb(16, 18, 19) -2.59586px -1.50383px 0px, rgb(16, 18, 19) -1.96093px -2.27041px 0px, rgb(16, 18, 19) -1.11013px -2.78704px 0px, rgb(16, 18, 19) -0.137119px -2.99686px 0px, rgb(16, 18, 19) 0.850987px -2.87677px 0px, rgb(16, 18, 19) 1.74541px -2.43999px 0px, rgb(16, 18, 19) 2.44769px -1.73459px 0px, rgb(16, 18, 19) 2.88051px -0.838247px 0px;
        width: 100%;
    }

    .blogsec a {
        font-size: 23px !important;
    }

    .blogsec p {
        margin-bottom: 160px;
    }

    article .post-img img {
        height: 100vh;
    }
}

.image-row {
    display: flex;
    align-items: center;
}

.image-row>img {
    width: 250px;
    margin: 5px;
    height: 150px !important;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    overflow-x: scroll;
    /* Add cursor style for selection */
}

#mainImage {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

@media (max-width: 768px) {
    .image-row {
        align-items: center;
        overflow-x: scroll;
        gap: 10px;
    }

    .image-row>img {
        width: 50%;
        height: auto;
        margin: 10px 0 2px !important;
    }
}


#menu-container {
    display: none;
    transform: translate(-50%, 20%);
    position: absolute;
    top: 30%;
    left: 60%;
    width: 788px !important;
    height: 550px !important;
    border-radius: 50px;
    background: #253d55;
    color: white;

}

#menu-container ul {
    list-style-type: none;
    padding: 0;
}

#menu-container li {
    font-size: 20px !important;
    margin: 20px;
}

#menu-container a {
    color: white;
    text-align: center;
    margin: 10px;
    width: 100%;

}

#menu-container a:hover {
    text-shadow: rgb(42, 65, 75) 2px 0px 0px, rgb(42, 65, 75) 1.75517px 0.958851px 0px, rgb(42, 65, 75) 1.0806px 1.68294px 0px, rgb(42, 65, 75) 0.141474px 1.99499px 0px, rgb(42, 65, 75) -0.832294px 1.81859px 0px, rgb(42, 65, 75) -1.60229px 1.19694px 0px, rgb(42, 65, 75) -1.97998px 0.28224px 0px, rgb(42, 65, 75) -1.87291px -0.701566px 0px, rgb(42, 65, 75) -1.30729px -1.5136px 0px, rgb(42, 65, 75) -0.421592px -1.95506px 0px, rgb(42, 65, 75) 0.567324px -1.91785px 0px, rgb(42, 65, 75) 1.41734px -1.41108px 0px, rgb(42, 65, 75) 1.92034px -0.558831px 0px;
}

#close-button {
    background: transparent;
    border: none !important;
    font-size: 0;
}

#menu-button {
    position: absolute;
    font-size: 30px;
    top: 15px;
    right: 0;
    margin-right: 15px !important;
    color: white;
    text-decoration: none;
}

.shear-icon{
    font-size: large;
    background-color: var(--orgenal);color: var(--btn1-card-color);
    border-radius: 20px !important;
    padding-top: 9px;
    padding-right: 25px !important;
    padding-inline:auto !important ;
    margin-right:5px ;
    border: solid 2px gray;
    }

    .archive{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .archive .archive_img{
        width: 100%;
    }
    .archive .archive_img img{
        width: 100%;
        max-height: 750px;
        object-fit: contain;
    }
    .archive .archive_files{
        padding: 15px 30px;
    }
    .archive .archive_files a{
        background-color: #253d55;
        padding: 10px 55px;
        color: white;
        border-radius: 15px;
    }
    .search_contain{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    .search_input{
        width: 250px;
        height: 40px;
        text-indent: 10px;
        border-radius: 15px;
        outline: none;
        border: 1px solid black;
    }
    .search_btn{
        background-color: #253D55;
        color: white;
        width: 50px;
        height: 40px;
        border: none;
        outline: none;
        font-size: 24px;
        border-radius: 15px;
    }
    .filter_section{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .dropdown_archive{
        width: 150px;
    }
    .teams_h1 {
        position: relative;
        text-align: center;
        margin-top: 100px !important;
        margin-bottom: -130px;
        z-index: 999;
        text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
    }
    .teams_h1:hover{
        color: #0070b0;
    }

    .start_img{
        width: 30% !important;
        height: 450px;
        border-radius: 50%;
        margin-top: 50px;
    }

@media (max-width: 767px) {

    /* Styles for mobile devices */
    #menu-container {
        position: absolute;
        top: 0%;
        left: 50%;
        width: 360px !important;
        height: 530px !important;
    }

    #menu-container a {
        margin: 0;
        width: 100%;
    }

    #menu-button {
        top: 10;
    }

    #menu-container .conferences {
        margin-top: 38px;
    }

    #menu-container a span {
        font-size: 17px;
        width: 100%;
        margin-left: 40px;
    }
    .search_input{
        width: 250px;
        margin: 0 10px 0 0;
    }
    .search_btn{
        background-color: #253D55;
        color: white;
        width: 50px;
        height: 40px;
        border: none;
        outline: none;
        font-size: 24px;
        border-radius: 15px;
    }
    .teams_h1 {
        text-align: center;
        margin-top: 450px !important;
    }
    .margin_b{
        margin-bottom: 350px;
    }
    .start_img{
        width: 90% !important;
        height: 400px;
        border-radius: 50%;
        margin-top: 100px;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {

    /* Styles for iPad */
    #menu-container {
        transform: translate(-50%, -50%);
        position: absolute;
        height: 480px !important;
        width: 710px !important;
        top: 420%;
        left: 50%;
    }

    #menu-container a {
        margin: 7px;
        width: 100%;
    }

}