html, body {
    position: relative;
    height: 100%;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
   
    background-image: url('../images/body_bg.jpg');
}


.popup_Comment {
    padding: 20px;
}


.popup_Comment h5 {
    text-align: center;
    background-color: #efefef;
    padding: 10px;
    color: #f25076;
    border-radius: 5px;
}

.popup_Comment .Form {
    margin-top: 20px;
    border-radius: 5px;
    margin-left: 10px;
}

.popup_Comment .Form label {
    font-size: 12px;
}

.popup_Comment .Form input,.popup_Comment .Form textarea {
    box-shadow: none;
    background-color: #FFF;
    border: 1px solid #c2c1c1;
}

.popup_Comment .Form input::placeholder,.popup_Comment .Form textarea::placeholder {
    color: #949494;
}
.popup_Comment .Form input:focus,.popup_Comment .Form textarea:focus {
    border-color: #f25076;
    transition: all 0.2s ease-in-out;
} 

.popup_Comment .Form textarea {
    resize: none;
}

.popup_Comment .Form .sendbtnDiv {
    text-align: right;
    margin-bottom: 0;
}

.popup_Comment .Form .sendbtnDiv .send_btn {
    background: #f25076;
    border: none;
    padding: 5px;
    width: 150px;
    border-radius: 5;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

.popup_Comment .Form .sendbtnDiv .send_btn:hover {
    background-color: #000;
    transition: all 0.2s ease-in;
}

#loadMore {
    padding: 7px;
    text-align: center;
    background-color: #f25076;
    color: #fff;
    border-width: 1px solid #f25076;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    width: 120px;
    margin: auto;
}

#loadMore:hover {
    background-color: #000;
}

.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 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-right: 10px;
    }

header nav ul li a.active {
    background-color: #f25076;
    padding: 7px 10px;
    color: #FFF;
    border-radius: 5px;
    text-decoration: none;
}

header nav ul li a:not(.active) {
    text-decoration: none;
    color: #FFF;
    padding: 7px 10px;
    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;
  }
  .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: left;
    border: 4px solid #fff;
    border-radius: 5px;
    margin-right: 30px;
}

.contentSlider .Desc {
    margin-top: 50px;
}

.contentSlider .Desc h1 {
    margin-bottom: 10px;
    font-size: 30px;
    text-align: left;
}

.contentSlider .Desc p {
    text-align: left;
    font-size: 16px;
}


#Content .leftBar {
    padding:10px 20px;
}

#Content .leftBar .segnature {
    margin-top: 20px;
}


#Content .leftBar .segnature a {
    outline: none;
    text-decoration: none;
}

#Content .leftBar .articles {
    margin:20px 0; 
    text-align: center;
}

#Content .leftBar .articles .title {
    text-align: left;
    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: left;
            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: left;
        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;
    }

.nav-pills {
    place-content: center;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        border-color: #f25076;
        background-color: #f25076;
        color: #FFF !important;
    }

    .nav-pills .nav-link {
        color: #696969 !important;
        border: 2px solid #f1f0f0;
        background-color: transparent;
        border-radius: 8px;
        padding: 5px 15px;
        margin-right: 10px;
        font-size: 14px;
    }


#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: left;
    width: 40%;
    text-align: left;
}

#Content .rightBar .social .link .left span {
    text-align: left;
}

#Content .rightBar .social .link .right {
    float: right;
    width: 60%;
    text-align: right;
}

#Content .rightBar .social .link .right a {
    text-decoration: none;
    outline: none;
}

#Content .rightBar .social .link .right img {
    text-align: right;
    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;
}



#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;
}

footer {
    padding: 10px;
    background-color: #cfcfcf;
    border-radius: 10px;
    margin: 10px 0 10px 0;
    text-align: center;
}

footer .copyrights p {
    margin-bottom: 0;
    color: #6b6b6b;
    font-size: 14px;
}

footer .DevelopedBy span {
    color: #6b6b6b;
    font-size: 14px;
}

/************/
/*  CV Page*/
/**********/
#Content .leftBar .cuuriculum {
    margin-top: 20px;
    background-color: #efefef;
    border-radius: 8px;
    padding: 10px;
    color: #f25076;
    margin-bottom: 20px;
    margin-left: 10px;
}

#Content .leftBar .cuuriculum h5 {
    font-size: 20px;
    margin-bottom: 0;
}

#Content .leftBar .cuuriculum_content {
    margin-left: 15px;
}

#Content .leftBar .cuuriculum_content p {
    font-family: "Times New Roman", serif;
    font-style: italic;
    font-size: 20px;
    color: #16284b;
}

#Content .leftBar .cuuriculum_content span {
    color: #000;
    font-weight: bold;
}

/************/
/*  Articles Page*/
/**********/
#Content .leftBar .article_title {
    margin-top: 10px;
    background-color: #efefef;
    border-radius: 8px;
    padding: 10px;
    color: #f25076;
    margin-bottom: 20px;
}

#Content .leftBar .article_title h5 {
    font-size: 20px;
    margin-bottom: 0;
}

#Content .leftBar .articleCard {
    display: none;
}

/*************/
/* Contact Page */
/**************/
#Content .leftBar .ContactTitle {
    margin-top: 20px;
    background-color: #efefef;
    border-radius: 8px;
    padding: 10px;
    color: #f25076;
    margin-bottom: 20px;
}

#Content .leftBar .ContactTitle h5 {
    font-size: 20px;
    margin-bottom: 0;
}

#Content .leftBar .Form {
    margin-top: 20px;
    border-radius: 5px;
    margin-left: 10px;
}

#Content .leftBar .Form input,#Content .leftBar .Form textarea {
    box-shadow: none;
    background-color: #FFF;
    border: 1px solid #c2c1c1;
}

#Content .leftBar .Form input::placeholder,#Content .leftBar .Form textarea::placeholder {
    color: #949494;
}
#Content .leftBar .Form input:focus,#Content .leftBar .Form textarea:focus {
    border-color: #f25076;
    transition: all 0.2s ease-in-out;
} 

#Content .leftBar .Form textarea {
    resize: none;
}

.sendbtnDiv {
    text-align: right;
    margin-bottom: 0;
}

#Content .leftBar .Form .sendbtnDiv .send_btn {
    background: #f25076;
    border: none;
    padding: 5px;
    width: 150px;
    border-radius: 5;
    color: #FFF;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

#Content .leftBar .Form .sendbtnDiv .send_btn:hover {
    background-color: #000;
    transition: all 0.2s ease-in;
}

/*************/
/* gallery Page */
/**************/
#Content .leftBar .galleryTitle {
    margin-top: 20px;
    background-color: #efefef;
    border-radius: 8px;
    padding: 10px;
    color: #f25076;
    margin-bottom: 20px;
}

#Content .leftBar .galleryTitle h5 {
    font-size: 20px;
    margin-bottom: 0;
}

#lightgallery img {
    width: 100%;
    height: 100px;
    padding: 10px;
    background-color: #efefef;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.2s ease-out;
}

#lightgallery img:hover {
    transform: scale(1.1);
    transition: all 0.2s ease-in;
}

/*************/
/* Links Page */
/**************/
#Content .leftBar .LinksTitle {
    margin-top: 20px;
    background-color: #efefef;
    border-radius: 8px;
    padding: 10px;
    color: #f25076;
    margin-bottom: 20px;
}

#Content .leftBar .LinksTitle h5 {
    font-size: 20px;
    margin-bottom: 0;
}

#Content .leftBar .Links a {
    text-decoration: none;
    color: #6b6b6b;
    transition: all 0.2s ease-in;
}

#Content .leftBar .Links .Link {
    text-align: center;
    margin-bottom: 10px;
}

#Content .leftBar .Links .Link img {
    width: 100%;
    height: 65px;
    border-radius: 5px;
}

#Content .leftBar .Links .Link p {
    font-size: 14px;
}

#Content .leftBar .Links .Link:hover{
    color: #f25076;
    transform: scale(1.1);
    transition: all 0.2s ease-in;
}

/*************/
/* ArticleDetails Page */
/**************/
#Content .leftBar .ArticleDetails {
    margin-top: 20px;
    background-color: #efefef;
    border-radius: 8px;
    padding: 10px;
    color: #f25076;
    margin-bottom: 20px;
}

#Content .leftBar .ArticleDetails h5 {
    font-size: 20px;
    margin-bottom: 0;
}

#Content .leftBar .articleDetail {
    text-align: center;
}

#Content .leftBar .articleDetail .author {
    margin-bottom: 5px;
}

#Content .leftBar .articleDetail .author span {
    color: #6b6b6b;
}

#Content .leftBar .articleDetail .author span .Nada {
    color: #f25076;
}

#Content .leftBar .articleDetail .date {
    margin-bottom: 5px;
}

#Content .leftBar .articleDetail .date i {
    font-size: 14px;
    color: #6b6b6b;
}

#Content .leftBar .articleDetail .date span {
    color: #6b6b6b;
    font-size: 14px;
}

#Content .leftBar .articleDetail .img {
    margin-bottom: 5px;
}

#Content .leftBar .articleDetail .img img{
    max-width: 60%;
    height: 300px;
    border: 1px solid #efefef;
}

#Content .leftBar .articleDetail .links {
    margin-bottom: 20px;
    text-align: left;
}

#Content .leftBar .articleDetail .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#Content .leftBar .articleDetail .links ul li {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
}

#Content .leftBar .articleDetail .links ul li a {
    text-decoration: none;
    color: #6b6b6b;
    outline: none;
}

#Content .leftBar .articleDetail .links ul li a:hover {
    color: #f25076;
}

#Content .leftBar .articleDetail .desc {
    text-align: left;
}

#Content .leftBar .articleDetail .desc p {
    color: #6b6b6b;
}


#Content .leftBar .comments {
    margin-top: 50px;
}

#Content .leftBar .comments .CommentNum i {
    font-size: 30px;
    color: #f25076;
}

#Content .leftBar .comments .CommentNum span {
    color: #6b6b6b;
    font-size: 20px;
}

#Content .leftBar .comments hr {
    border-top: 1px solid rgba(0,0,0,0.1);
}


#Content .leftBar .comments .commentInp {
    margin-top: 20px;
    padding: 15px;
    border-color: #ddd;
    font-size: 14px;
    color: #949494;
}


#Content .leftBar .comments .commentInp:focus {
    outline: none;
    box-shadow: none;
    border-color: #f25076;
}

#Content .leftBar .comments .user_comment {
    margin: 20px 0;
}

#Content .leftBar .comments .user_comment .userData span {
    color: #f25076;
    font-size: 14px;
}

#Content .leftBar .comments .user_comment .userData span .time {
    font-size: 12px;
    color: #949494;
}

#Content .leftBar .comments .user_comment .MyComment {
    margin-left: 50px;
}

#Content .leftBar .comments .user_comment .MyComment p {
    color: #6b6b6b;
    font-size: 14px;
}

#Content .leftBar .comments .user_comment .replay {
    margin-left: 50px;
}

#Content .leftBar .comments .user_comment .replay .replayComment span {
    font-size: 14px;
    color: #504f4f;
    font-weight: 500;
    cursor: pointer;
}


.replayInp {
    margin-top: 20px;
    padding: 10px;
    border-color: #ddd;
    font-size: 14px;
    color: #949494;
}


.replayInp:focus {
    outline: none;
    box-shadow: none;
    border-color: #f25076;
}
.replayInp {
    display: none;
}


#Content .leftBar .comments .user_comment .replay .likeUnlike button {
    line-height: 1;
    font-size: 12px;
}

#Content .leftBar .comments .user_comment .replay .likeUnlike button:hover {
    background-color: #263a60;
    color: #FFF;
}

#Content .leftBar .comments .user_comment .replay .likeUnlike button:focus {
    outline: none;
    box-shadow: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #lightgallery img {
        height: 95px;
    }
    #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: 10px;
        width: 100%;
        margin-bottom: 10px;
        padding-top: 25px;
    }
    .contentSlider {
        top: 50%;
        width: 70%;
    }
    .contentSlider img {
        float: left;
        width: 100%;
        height: 170px;
        margin-right: 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-left: 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;
    }
    /* Links */
    #Content .leftBar .Links .Link img {
        width: 80px;
        border-radius: 5px;
    }

    /* Article Details */
    #Content .leftBar .articleDetail .img img {
        max-width: 100%;
        height: auto;
    }

    #Content .leftBar .articleDetail .title h3 {
        font-size: 22px;
    }
    #Content .leftBar .articleDetail .links {
        text-align: center;
    }
    #Content .leftBar .articleDetail .links ul li {
        display: inline-block;
        margin-right: 5px;
        font-size: 10px;
        margin-bottom: 5px;
    }
    #Content .leftBar .articleDetail .desc {
        text-align: center;
    }
    #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) {
    #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: 10px;
        width: 100%;
        margin-bottom: 10px;
        padding-top: 25px;
    }
    .contentSlider {
        top: 50%;
        width: 70%;
    }
    .contentSlider img {
        float: left;
        width: 100%;
        height: 230px;
        margin-right: 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;
    }
     /* Links */
     #Content .leftBar .Links .Link img {
        width: 80px;
        border-radius: 5px;
    }
    #Content .leftBar .videos .title,
    #Content .leftBar .articles .title {
        text-align: left;
        width: 45%;
        margin-right: 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 10px;
    }
    .contentSlider {
        top: 55%;
    }
    /*.contentSlider img {
        float: none;
        margin-right: 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 .articles .title {
        width: 45%;
    }*/
    #lightgallery img {
        height: 100px;
    }
    #Content .leftBar .articleDetail .img img {
        max-width: 90%;
    }
    #Content .leftBar .articleDetail .links {
        text-align: center;
    }
    #Content .leftBar .articleDetail .desc {
        text-align: center;
    }
    #Content .leftBar .articleDetail .links ul li {
        margin-right: 10px;
    }
}

/* 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-right: 0px;
    }
    .contentSlider .Desc p {
        text-align: left;
        font-size: 14px;
    }
    #Content .rightBar .social .twitter_Wedgit, #Content .rightBar .social .instagram_Wedgit {
        width: 90%;
        margin: auto;
        margin-bottom: 20px;

    }
    #Content .leftBar .Links .Link p {
        font-size: 13px;
    }
    #Content .leftBar .videoItem iframe {
        height: 165px;
    }

    #Content .leftBar .videos .title,
    #Content .leftBar .articles .title {
        width: 60%;
    }
}