html, body {
    position: relative;
    height: 100%;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif !important;
    background-image: url('../images/body_bg.jpg');
  
    direction: rtl;
    text-align: right;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
}


header {
    padding: 10px;
    background-color: #263a60;
    border-radius: 10px;
    margin: 20px 0 10px 0;
}

header .logo {
    text-align: right;
}

header .logo a {
    text-decoration: none;
    outline: none;
}

header nav {
    margin-top: 20px;
}

header nav i.icon,header nav i.icon_close{                       
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 10;
    display: none; 
    transition: all 0.2s ease-out;
    color: #FFF;
}

header nav .fa-2x {
    font-size: 24px;
}



header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    header nav ul li {
        display: inline-block;
        margin-left: 2px;
    }

header nav ul li a.active {
    background-color: #f25076;
    padding: 3px 10px;
    color: #FFF;
    border-radius: 5px;
    text-decoration: none;
}

header nav ul li a:not(.active) {
    text-decoration: none;
    color: #FFF;
    padding: 3px 8px;
    border-radius: 5px;
}

header nav ul li a:not(.active):hover {
    background-color: #f25076;
}

#Content {
    padding: 10px;
    background-color: #FFF;
    border-radius: 10px;
}


.swiper-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 5px;
    direction: ltr;
  }
  .swiper-slide {
    background-position: center;
    background-size: cover;
    font-size: 18px;
    color:#fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: none;
    border: 2px solid #FFF;
    outline: none;
}

.swiper-pagination {
    position: relative;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    background-color: #000;
    border-color: #000;
    margin: 0 3px;
} 

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    outline: none;
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    outline: none;
}

.contentSlider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #FFF;
    width: 80%;
    text-align: center;
    z-index: 3;
}

    .contentSlider img {
        width: 40%;
        height: 170px;
        float: right;
        border: 4px solid #fff;
        border-radius: 5px;
        margin-left: 30px;
    }

    .contentSlider .Desc {
        margin-top: 50px;
    }

        .contentSlider .Desc h1 {
            margin-bottom: 10px;
            font-size: 30px;
            text-align: right;
        }

        .contentSlider .Desc p {
            text-align: right;
            font-size: 16px;
        }

#Content .leftBar {
    direction: rtl;
    padding:10px 20px;
}


#Content .leftBar .segnature {
    margin-left: 0;
    margin-top: 20px;
    text-align: right;
}


#Content .leftBar .segnature a {
    outline: none;
    text-decoration: none;
}

#Content .leftBar .articles {
    margin:20px 0; 
    text-align: center;
}

#Content .leftBar .articles .title {
    text-align: right;
    margin-bottom: 30px;
    border-bottom: 1px solid #f25076;
    width: 35%;
}

    #Content .leftBar .articles .article ::-webkit-scrollbar {
        width: 0px; /* Remove scrollbar space */
        background: transparent; /* Optional: just make scrollbar invisible */
    }
#Content .leftBar .articles .title h5 {
    color: #f25076;
}

#Content .leftBar .articles a {
    text-decoration: none;
    outline: none;
    color: #585756;
}

#Content .leftBar .articles .article {
    box-shadow: 2px 2px 7px #dddddd85;
    width: 100%;
    height: 185px;
    margin-bottom: 30px;
    transition: all 0.2s ease-out;
}

#Content .leftBar .articles .article:hover {
    transition: all 0.2s ease-in;
    transform: scale(1.1);
}

#Content .leftBar .articles .article:hover > p {
    color: #f25076;
}

#Content .leftBar .articles .article img {
    width: 100%;
    height: 94px;
    margin-bottom: 5px;
}

#Content .leftBar .articles .article p {
    font-size: 12px;
    height: 70px;
    padding: 5px;
    overflow: scroll;
    overflow-x: hidden;
}

    #Content .leftBar .videos {
        margin: 20px 0;
        text-align: center;
    }

        #Content .leftBar .videos .title {
            text-align: right;
            margin-bottom: 30px;
            border-bottom: 1px solid #f25076;
            width: 35%;
        }

            #Content .leftBar .videos .title h5 {
                color: #f25076;
            }

       .viewallbtn {
            text-align: center;
            margin-top: 10px;
        }

            .viewallbtn button {
                background: #FFF;
                border: 1px solid #f25076;
                padding: 5px;
                width: 100px;
                border-radius: 5;
                font-size: 14px;
                color: #f25076;
                outline: none;
                box-shadow: none;
                cursor: pointer;
                transition: all 0.2s ease-in-out;
            }

             .viewallbtn button:hover {
                    background-color: #f25076;
                    color: #FFF;
                }

    #Content .leftBar .videoItem {
        margin-bottom: 30px;
    }

        #Content .leftBar .videoItem .titlevideo {
            text-align: right;
            padding: 0 10px;
            color: #585756;
            transition: all 0.2s ease-in-out;
        }

        #Content .leftBar .videoItem:hover .titlevideo {
            color: #f25076;
        }

        #Content .leftBar .videoItem iframe {
            width: 100%;
            height: 200px;
            padding: 10px;
            border-radius: 5px;
            background-color: #efefef;
        }


#Content .rightBar .social .link {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    overflow: hidden;
    background-color: #efefef;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.2s ease-out;
}

#Content .rightBar .social .link:hover {
    transition: all 0.2s ease-in;
    background-color: #FFF;
    box-shadow: 5px 7px 7px #dddddd85;
}

#Content .rightBar .social .link:hover > .left span {
    color: #f25076;
}

#Content .rightBar .social .link .left {
    float: right;
    width: 40%;
    text-align: right;
}

#Content .rightBar .social .link .left span {
    text-align: right;
}

#Content .rightBar .social .link .right {
    float: left;
    width: 60%;
    text-align: left;
}

#Content .rightBar .social .link .right a {
    text-decoration: none;
    outline: none;
}

#Content .rightBar .social .link .right img {
    text-align: left;
    width: 30px;
    height: 30px;
    transition: all 0.2s ease-in;
}

#Content .rightBar .social .link .right img:hover {
    transform: scale(1.1);
    transition: all 0.2s ease-out;
}

#Content .rightBar .social .twitter_Wedgit {
    width: 80%;
    height: 500px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid #efefef;
    text-align: center;
    overflow: scroll;
    background-color: transparent;
    padding: 5px;
    border-radius: 10px;
    transition: all 0.2s ease-out;
}

#Content .rightBar .social .instagram_Wedgit {
    width: 80%;
    height: 500px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid #efefef;
    text-align: center;
    overflow: hidden;
    background-color: transparent;
    padding: 5px;
    border-radius: 10px;
    transition: all 0.2s ease-out;
}

#Content .rightBar .social .instagram_Wedgit .title {
    text-align: left;
    padding: 5px;
    padding-bottom: 7px;
    border-bottom: 1px solid #DDD;
    margin-bottom: 7px;
    direction: ltr;
}



#Content .rightBar .social .instagram_Wedgit .title img {
    width: 20px;
    height: 20px;
}

#Content .rightBar .social .instagram_Wedgit .title span {
    color: #292F33;
    font-size: 15px;
    font-weight: 300;
    font-family: Tahoma;
}


footer {
    padding: 10px;
    background-color: #cfcfcf;
    border-radius: 10px;
    margin: 10px 0 10px 0;
    text-align: center;
    direction: rtl;
}

footer .copyrights p {
    margin-bottom: 0;
    color: #6b6b6b;
    font-size: 14px;
}

footer .DevelopedBy span {
    color: #6b6b6b;
    font-size: 14px;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #lightgallery img {
        height: auto;
    }
    #Content .leftBar .articles .article {
        height: auto;
    }
    #Content .leftBar .articles .article img {
        height: 205px;
    }
    header nav ul {
        display: none;
    }
    header .logo img {
        width: 100%;
    }
    header nav i.icon {
        display: block;
    }
    header nav i.icon,header nav i.icon_close {
        top: 7px;
        left: 10%;
    }
    header nav {
        margin-top: 30px;
        text-align: center;
    }
    header nav ul li {
        display: block;
        margin-right: 0px;
        width: 100%;
        margin-bottom: 10px;
        padding-top: 25px;
    }
    .contentSlider {
        top: 50%;
        width: 70%;
    }

        .contentSlider img {
            float: right;
            width: 100%;
            height: 170px;
            margin-left: 0;
            margin-bottom: 5px;
        }

        .contentSlider .Desc h1 {
            font-size: 16px;
            text-align: center;
        }

        .contentSlider .Desc p {
            text-align: center;
            font-size: 11px;
        }
    #Content .leftBar .segnature {
        margin-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    #Content .leftBar .articles .title {
        text-align: center;
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }
    #Content .leftBar .articles {
        margin-right: 0;
    }
    #Content .rightBar .social .link {
        width: 95%;
    }
    footer .copyrights p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    footer .DevelopedBy span {
        color: #6b6b6b;
        font-size: 12px;
    }
    #Content .rightBar .social .twitter_Wedgit, #Content .rightBar .social .instagram_Wedgit {
        width: 95%;
        margin: auto;
        margin-bottom: 20px;

    }
    /* contact */
    #Content .leftBar .Form {
        margin-left: 0;
    }
    #Content .leftBar .videos .title {
        text-align: center;
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }




}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) and (max-width: 767px) {
    header .logo {
        text-align: left;
    }
    #Content .leftBar .articles .article {
        height: 243px;
    }
    #Content .leftBar .articles .article img {
        height: 149px;
    }
    header nav ul {
        display: none;
    }
    header nav i.icon {
        display: block;
    }
    header nav i.icon,header nav i.icon_close {
        top: -45px;
        right: 7%;
    }
    header nav {
        margin-top: 0;
        text-align: center;
    }
    header nav ul li {
        display: block;
        margin-right: 0px;
        width: 100%;
        margin-bottom: 10px;
        padding-top: 25px;
    }
    .contentSlider {
        top: 50%;
        width: 70%;
    }

        .contentSlider img {
            float: right;
            width: 100%;
            height: 230px;
            margin-left: 0;
            margin-bottom: 5px;
        }

        .contentSlider .Desc h1 {
            font-size: 20px;
            text-align: center;
        }

        .contentSlider .Desc p {
            text-align: center;
            font-size: 11px;
        }
    #Content .leftBar .segnature {
        margin-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    /*#Content .leftBar .articles .title {
        text-align: center;
        width: 45%;
        margin: auto;
        margin-bottom: 30px;
    }*/
    #Content .leftBar .articles {
        margin-left: 0;
    }
    #Content .rightBar .social .link {
        width: 80%;
    }
    #Content .rightBar .social .link .left {
        float: left;
        width: 50%;
    }
    footer .copyrights p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    footer .DevelopedBy span {
        color: #6b6b6b;
        font-size: 12px;
    }
    #Content .leftBar .videos .title,
    #Content .leftBar .articles .title {
        text-align: right;
        width: 45%;
        margin-left: auto;
        margin-bottom: 30px;
    }

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px){
    header .logo {
        text-align: center;
    }
    header nav i.icon {
        display: none;
    }
    header nav ul li {
        display: inline-block;
        margin-right: 0;
        margin: 3px 7px;
    }
    header nav ul li a.active {
        padding: 2px 10px;
    }
    header nav ul li a:not(.active) {
        padding: 2px 10px;
    }
    .contentSlider {
        top: 55%;
    }

        /*.contentSlider img {
            float: none;
            margin-left: 0;
        }*/

        .contentSlider .Desc {
            margin-top: 10px;
        }

            .contentSlider .Desc h1 {
                text-align: center;
            }

            .contentSlider .Desc p {
                text-align: center;
                font-size: 13px;
            }
    #Content .rightBar .social .link {
        width: 100%;
    }
    #Content .rightBar .social .link .left span {
        text-align: left;
        font-size: 12px;
    }
    #Content .rightBar .social .link .right {
        width: 65%;
    }
    #Content .rightBar .social .link .left {
        width: 35%;
    }
    #Content .rightBar .social .twitter_Wedgit, #Content .rightBar .social .instagram_Wedgit {
        width: 100%;
        margin: auto;
        margin-bottom: 20px;

    }
    #Content .rightBar .social .instagram_Wedgit {
        height: 245px;
    }
    #Content .leftBar .videoItem iframe {
        height: 165px;
    }

    #Content .leftBar .videos .title,
    #Content .leftBar .articles .title {
        width: 60%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #Content .rightBar .social .link {
        width: 90%;
    }
    header nav ul li a:not(.active),  header nav ul li a.active {
        padding: 7px;
    }
    header nav ul li {
        margin-left: -1px;
    }
    .contentSlider .Desc p {
        text-align: right;
        font-size: 14px;
    }
    #Content .rightBar .social .twitter_Wedgit, #Content .rightBar .social .instagram_Wedgit {
        width: 90%;
        margin: auto;
        margin-bottom: 20px;

    }
}