@keyframes ticker {
    0%   {margin-top: 0}
    10%  {margin-top: -40px}
    20%  {margin-top: -80px}
    30%  {margin-top: -120px}
    40%  {margin-top: -160px}
    50%  {margin-top: -200px}
    60%  {margin-top: -240px}
    70%  {margin-top: -280px}
    80%  {margin-top: -320px}
    90%  {margin-top: -360px}
    100%  {margin-top: 0px}
}

p,a{
    line-height: 24px;
}

.news-ban {
    height: 40px;
    overflow: hidden;
    -webkit-user-select: none;
    background: white;
    margin: 10px 0px;
    display: flex;
}

.news-ban span {
    color: var(--primary);
    position: relative;
    padding: 9px 5px;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    cursor: pointer;
    font-family: 'Droid-Arabic-Kufi-Bold','Lato', sans-serif;
    font-size: 16px;
    display: inline-flex;
}

.news-ban ul{
    margin-right: 15px;
    animation: ticker 20s cubic-bezier(1, 0, .5, 0) infinite;
    -webkit-user-select: none;
    width: 55vw;
    overflow: hidden;

}

.news-ban ul li {
    line-height:40px;
    list-style: none;
    margin-right: 0px;
    height: 40px;
    overflow: hidden;
}

.news-ban ul li a {
    color: #222;
    font-size:14px;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    font-family: 'Droid-Arabic-Kufi','Lato', sans-serif;
}

.news-ban ul:hover { animation-play-state: paused }
.news-ban span:hover+ul { animation-play-state: paused }


@media screen and (max-width:750px){
    
    .news-ban ul{
        width:1000%;
        margin-right: 7px;
    }

    .news-ban ul li {
        float: right;
        width: 100%;
    }

    .news-ban ul li a {
        font-size: 10px;
        font-weight: bold;
    }
    
    .news-ban span {
        font-size: 12px;
        padding: 4px 5px;
        text-align: center;
        width: 85px;
    }
    
}

.download-magazine{
    width: 100%;
    padding: 25px;
    font-size: 16px;
    background: #231F20;
    color: white;
    margin: 10px 0px;
}
.download-magazine:hover{
    background: var(--primary) !important;
    color: white;
}
.download-magazine i {
    margin: 0px 10px;
    font-size: 22px;
}
.pull-left-force{
    float: left !important;
}


.section-new-title{
    height: 45px;
}

/* REMOVE ME */

.logo-temp{
    width: 100px;
    padding: 24px;
    background: #dddddd;
    color: white;
    text-align: center;
}

.almashhad-landing-page{
    background-color: white;
    margin: 10px 0px
}
.almashhad-landing-slider{
    height: 450px;
}
.albums-videos-slider{
    margin: 10px 0px 0px 0px;
}
.landing{
    margin-top: 10px;
}
.almashhad-landing-img{
    height: 450px !important;
    object-fit: cover;
}
.almashhad-landing-article{
    padding: 10px;
}

.landing-articles-container{
    margin-bottom: 10px;
}
.landing-page-container{
    max-width: 1240px;
    margin: 0px auto 20px auto;
}

.landing-article{
    background-color: white;
    margin-bottom:0px
}
.landing-article:hover{
    background-color: var(--primary);
}
.landing-article .article-img{
    float: right;
}
.landing-article .article-img img{
    width: 80px;
    height: 80px;
}
.landing-article .article-body{
    padding-top: 4px;
}

.latest-release{
    padding: 0px;
}

.noty-note{
    position: absolute;
    top: 40px;
    width: 100%;
}
.noty-success{
    width: 450px;
    margin: auto;
    background-color: #8BC34A;
    padding: 20px;
    color: white;
    text-align: center;
    font-size: 17px;
    border-radius: 4px;
    box-shadow: 3px 4px 1px #524c4c38;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}


@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

.cat-articles-con{
    margin-top: 20px;
}



#owl-carousel-3{
    margin-top: 29px;
}

.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}


@media only screen and (max-width: 995px) {

    .landing{
        padding: 0px 5px;
    }
}

/* SOCIAL */
.inpage-social-container{
    margin-top: 10px;
    margin-bottom: 5px;
}
@media only screen and (min-width: 1199px) {
    .inpage-social-container{
        padding: 0px 5px;
    }
}
@media only screen and (max-width: 990px) and (min-width: 768px ) {
    .inpage-social-container{
        width:360px;
        display: block;
        margin: 0px auto 5px auto;
    }
}
.facebook-social-btn,.youtube-social-btn{
    width: calc(50% - 2.6px);
    display: inline-block;
}
.facebook-social-btn img,.youtube-social-btn img{
    width:100%;
}

.landing-article:hover .article-title a{
    color: white !important;
}