
/* -- General CSS -- */

@font-face {font-family: Helvetica; src: url('../fonts/HelveticaNeueW23forSKY-Reg.ttf');}

body{
    font-family: Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    --main-blue: #0173ff;
    --main-red: #d2110b;
    font-size: 16px;
    background: #f2f4f5;
}

p {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none !important;
}

.clear {
    clear: both;
}

@media (min-width: 1700px) {

    .custom.container-fluid {
        max-width: 1700px;
    }
}
.searchtable{
	    display: block;
    width: 100%;
    padding: 0 15px;
	
	
}
#fullsearch {
    width: 100%;
    display: block;
}
#searchtable .bbcodes {
    background: #050550;
    color: #fff;
    border: 1px solid #050550;
    padding: 5px 10px;
    margin-left: 10px;
    transition: all .5s ease-in-out;
}
#searchtable .bbcodes:hover {
    background: #fff;
    color: #050550;
}
.search_result_num{
	    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 0 25px;
	
}
/* -- ./General CSS -- */

/* -- Search -- */
#search-wrapper {
    display: inline-block;
    position: relative; 
    margin-right: 10px;
}

#search-wrapper.search-expanded #close-icon:before {
    -webkit-animation: cross-1-in 0.25s linear 0s forwards;
    animation: cross-1-in 0.25s linear 0s forwards; 
}
#search-wrapper.search-expanded #close-icon:after {
    -webkit-animation: cross-2-in 0.25s linear 0.2s forwards;
    animation: cross-2-in 0.25s linear 0.2s forwards; 
}
#search-wrapper.search-expanded:after {
    -webkit-animation: lens-out 0.5s linear 1 forwards;
    animation: lens-out 0.5s linear 1 forwards; 
}
#search-wrapper:after {
    position: absolute;
    bottom: 3px;
    right: -9px;
    display: block;
    content: "";
    width: 14px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(45deg) scaleX(0);
    transform: rotate(45deg) scaleX(0);
    transform-origin: 0 50%;
    -webkit-animation: lens-in 0.6s linear 0.9s forwards;
    animation: lens-in 0.6s linear 0.9s forwards; 
}
#search-wrapper #story {
    color: #ffffff;
    background: none;
    border: 2px solid;
    border-color: #fff;
    outline: none;
    padding: 0 9px;
    border-radius: 1000px;
    width: 0;
    transition: all 0.3s 0.6s;
    font-size: 12px; 
    cursor: pointer;
}

#search-wrapper.search-expanded #story {
    cursor: text;
}
#search-wrapper #story::-webkit-input-placeholder {
    color: #fff; 
}
#search-wrapper #story:focus {
    width: 200px;
    padding: 7px 15px; 
}
#search-wrapper #close-icon {
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    transition: 0.2s all;
    display: none; 
}
#search-wrapper #close-icon[style*="display: block"] {
    color: red; 
}
#search-wrapper #close-icon[style*="display: block"]:before {
    -webkit-transform: rotate(45deg) scaleX(1) translateY(10px);
    transform: rotate(45deg) scaleX(1) translateY(10px); 
}
#search-wrapper #close-icon[style*="display: block"]:after {
    -webkit-transform: rotate(-45deg) scaleX(1) translateY(-10px);
    transform: rotate(-45deg) scaleX(1) translateY(-10px); 
}
#search-wrapper #close-icon:before, 
#search-wrapper #close-icon:after {
    display: block;
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transform-origin: 100% 50%; 
}
#search-wrapper #close-icon:before {
    -webkit-transform: rotate(45deg) scaleX(0) translateY(10px);
    transform: rotate(45deg) scaleX(0) translateY(10px); 
}
#search-wrapper #close-icon:after {
    -webkit-transform: rotate(-45deg) scaleX(0) translateY(-10px);
    transform: rotate(-45deg) scaleX(0) translateY(-10px); 
}
#search-wrapper #close-icon.closing:before {
    -webkit-animation: cross-1-out 0.25s linear 0s forwards;
    animation: cross-1-out 0.25s linear 0s forwards; 
}
#search-wrapper #close-icon.closing:after {
    -webkit-animation: cross-2-out 0.25s linear 0.2s forwards;
    animation: cross-2-out 0.25s linear 0.2s forwards;
 }

@-webkit-keyframes lens-out {
    0% {
        -webkit-transform: rotate(45deg) scaleX(1);
        transform: rotate(45deg) scaleX(1); 
    }
    30% {
        -webkit-transform: rotate(45deg) scaleX(1.4);
        transform: rotate(45deg) scaleX(1.4); 
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(0);
        transform: rotate(45deg) scaleX(0); 
    } 
}
@keyframes lens-out {
    0% {
        -webkit-transform: rotate(45deg) scaleX(1);
        transform: rotate(45deg) scaleX(1); 
    }
    30% {
        -webkit-transform: rotate(45deg) scaleX(1.4);
        transform: rotate(45deg) scaleX(1.4); 
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(0);
        transform: rotate(45deg) scaleX(0); 
    } 
}
@-webkit-keyframes lens-in {
    0% {
        -webkit-transform: rotate(45deg) scaleX(0);
        transform: rotate(45deg) scaleX(0); 
    }
    30% {
        -webkit-transform: rotate(45deg) scaleX(1.4);
        transform: rotate(45deg) scaleX(1.4); 
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(1);
        transform: rotate(45deg) scaleX(1); 
    } 
}
@keyframes lens-in {
    0% {
        -webkit-transform: rotate(45deg) scaleX(0);
        transform: rotate(45deg) scaleX(0);
    }
    30% {
        -webkit-transform: rotate(45deg) scaleX(1.4);
        transform: rotate(45deg) scaleX(1.4); 
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(1);
        transform: rotate(45deg) scaleX(1); 
    } 
}
@-webkit-keyframes cross-1-in {
    0% {
        -webkit-transform: rotate(45deg) scaleX(0) translateY(10px);
        transform: rotate(45deg) scaleX(0) translateY(10px); 
    }
    70% {
        -webkit-transform: rotate(45deg) scaleX(1.2) translateY(10px);
        transform: rotate(45deg) scaleX(1.2) translateY(10px); 
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(1) translateY(10px);
        transform: rotate(45deg) scaleX(1) translateY(10px); 
    } 
}
@keyframes cross-1-in {
    0% {
        -webkit-transform: rotate(45deg) scaleX(0) translateY(10px);
        transform: rotate(45deg) scaleX(0) translateY(10px); 
    }
    70% {
        -webkit-transform: rotate(45deg) scaleX(1.2) translateY(10px);
        transform: rotate(45deg) scaleX(1.2) translateY(10px);
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(1) translateY(10px);
        transform: rotate(45deg) scaleX(1) translateY(10px); 
    }
}
@-webkit-keyframes cross-2-in {
    0% {
        -webkit-transform: rotate(-45deg) scaleX(0) translateY(-10px);
        transform: rotate(-45deg) scaleX(0) translateY(-10px); 
    }
    70% {
        -webkit-transform: rotate(-45deg) scaleX(1.2) translateY(-10px);
        transform: rotate(-45deg) scaleX(1.2) translateY(-10px); 
    }
    100% {
        -webkit-transform: rotate(-45deg) scaleX(1) translateY(-10px);
        transform: rotate(-45deg) scaleX(1) translateY(-10px); 
    } 
}
@keyframes cross-2-in {
    0% {
        -webkit-transform: rotate(-45deg) scaleX(0) translateY(-10px);
        transform: rotate(-45deg) scaleX(0) translateY(-10px); 
    }
    70% {
        -webkit-transform: rotate(-45deg) scaleX(1.2) translateY(-10px);
        transform: rotate(-45deg) scaleX(1.2) translateY(-10px); 
    }
    100% {
        -webkit-transform: rotate(-45deg) scaleX(1) translateY(-10px);
        transform: rotate(-45deg) scaleX(1) translateY(-10px); 
    } 
}
@-webkit-keyframes cross-1-out {
    0% {
        -webkit-transform: rotate(45deg) scaleX(1) translateY(10px);
        transform: rotate(45deg) scaleX(1) translateY(10px); 
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(0) translateY(10px);
        transform: rotate(45deg) scaleX(0) translateY(10px); 
    } 
}
@keyframes cross-1-out {
    0% {
        -webkit-transform: rotate(45deg) scaleX(1) translateY(10px);
        transform: rotate(45deg) scaleX(1) translateY(10px); 
    }
    100% {
        -webkit-transform: rotate(45deg) scaleX(0) translateY(10px);
        transform: rotate(45deg) scaleX(0) translateY(10px); 
    }
}
@-webkit-keyframes cross-2-out {
    0% {
        -webkit-transform: rotate(-45deg) scaleX(1) translateY(-10px);
        transform: rotate(-45deg) scaleX(1) translateY(-10px); }
    100% {
        -webkit-transform: rotate(-45deg) scaleX(0) translateY(-10px);
        transform: rotate(-45deg) scaleX(0) translateY(-10px); 
    } 
}
@keyframes cross-2-out {
    0% {
        -webkit-transform: rotate(-45deg) scaleX(1) translateY(-10px);
        transform: rotate(-45deg) scaleX(1) translateY(-10px); 
    }
    100% {
        -webkit-transform: rotate(-45deg) scaleX(0) translateY(-10px);
        transform: rotate(-45deg) scaleX(0) translateY(-10px); 
    } 
}
@media (min-width: 768px) and (max-width: 991px) {
    #search-wrapper {
        margin-top: 15px;
        padding-right: 1em; 
        position: absolute;
        top: 10px;
        left: 55px;
    } 
    #search-wrapper:after {
        right: 4px;
    }
}
@media (max-width: 767px) {
    #search-wrapper {
        margin-top: 15px;
        padding-right: 1em; 
        position: absolute;
        top: 0;
        left: 55px;
    } 
    #search-wrapper:after {
        right: 4px;
    }
    #search-wrapper.search-expanded #story {
        background: #2e2e44;
    }
}
/* -- ./Search -- */

/* -- Header -- */
.header-area {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  padding-top: 20px;
  left: 0;
  z-index: 300;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; 
  background: #050550;
}

.header-area .navbar-collapse {
    margin-top: -20px;
    transition: all .5s ease-in-out;
}

.header-area.main .navbar-collapse,
.header-area.sticky .navbar-collapse {
    margin-top: 0;
}

.header-area.main {
    background: transparent;
}

.header-area .logo {
    width: 220px;
    position: relative;
    top: -10px;
    transition: all 0.5s ease-in-out;
}

.header-area.sticky .logo {
    width: 180px;
    top: 0;
}

.header-area .navbar {
    border-bottom: 1px solid;
    border-color: #ffffff;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    height: 55px; 
}
.header-area .navbar .navbar-nav {
    margin-right: 50px; 
}
.header-area .navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500; 
    color: #fff;
    font-weight: bold;
    position: relative;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.navbar-nav.search-expanded .nav-link {
    padding: 10px !important;
}

.header-area .navbar .navbar-nav .nav-link:after {
    position: absolute;
    right: 5px;
    left: calc(100% - 5px);
    border-bottom: 2px solid #eee;
    content: '';
    bottom: 5px;
}   

.header-area .navbar .navbar-nav .nav-link:hover, 
.header-area .navbar .navbar-nav .nav-link:focus {
    color: #eee; 
}
.header-area .navbar .navbar-nav .nav-item.active .nav-link {
    color: #eee; 
}

.header-area .navbar .navbar-nav .nav-item.active .nav-link:after {
    left: 5px;
}
.header-area.sticky {
    background-color: #050550;
    padding-top: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); 
}
.header-area.sticky .navbar {
    border-color: #050550; 
}

.header-area:not(.main) .navbar {
    border: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    cursor: pointer; 
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    padding-top: 5px;
    border-radius: 3px; 
    opacity: 0;
    visibility: hidden;
    top: 60px;
    display: block;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}

.dropdown-menu .dropdown-item {
    border-bottom: 1px solid #e1e1e1;
    white-space: unset;
}

.dropdown-menu .dropdown-item:last-child {
    border: 0;
}

@media (min-width: 992px) {
    .nav-item.dropdown .nav-link:hover + .dropdown-menu,
    .nav-item.dropdown.open .dropdown-menu,
    .nav-item.dropdown .dropdown-menu:hover {
        display: block;
        opacity: 1;
        visibility: visible;
        top: 47px;
    }
}
/* -- ./Header -- */

/* -- Slider -- */
.slider-area {
    position: relative;
    z-index: 1; 
}
.slider-area .slider-slides {
    position: relative;
    z-index: 10; 
}
.slider-area .slider-slides .single-slider-slide {
    height: calc(100vh - 53px);
    position: relative;
    z-index: 1; 
}

.slider-area .slider-slides .single-slider-slide img,
.slider-area .slider-slides .single-slider-slide iframe {
    width: 100%;
    height: 100%;
}

.slider-area .slider-slides .single-slider-slide .para {
    position: absolute;
    bottom: 120px;
    right: 0;
    left: 0;
    z-index: 15;
    font-size: 25px;
}

.slider-area .slider-slides .single-slider-slide .para p {
    width: 50%;
    height: 70px;
    color: #fff;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.slider-area .slider-slides .single-slider-slide .para p:hover {
    color: #8fabce;
}

.slider-area .slider-slides .single-slider-slide .para .date {
    font-size: 14px;
    color: #eee;
    position: relative;
    top: -5px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider-area .slider-slides .single-slider-slide {
        height: 450px; 
    } 
}
@media (max-width: 767px) {
    .slider-area .slider-slides .single-slider-slide {
        height: 400px; 
    } 
}
.slider-area .slider-post-area {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 200; 
}
.slider-area .slider-post-slide .single-slide .post-number {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    min-width: 80px; 
}

.slider-area .slider-post-slide .single-slide .post-number a {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
}

.slider-area .slider-post-slide .single-slide .post-number img {
    transition: all .5s ease-in-out;
    width: 100%;
    height: 100%;
}

.slider-area .slider-post-slide .single-slide:hover .post-number img {
    transform: scale(1.2);
}

.slider-area .slider-post-slide .single-slide .post-title .date {
   color: #eee;
   font-size: 14px;
   display: block;
   margin-top: 5px;
}

.slider-area .slider-post-slide .single-slide .post-title a {
    margin-bottom: 0;
    height: 50px;
    overflow: hidden;
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff; 
    transition: all 0.5s ease-in-out;
}

.slider-area .slider-post-slide .single-slide .post-title a:hover {
    color: #8fabce;
}

.slider-area .slider-post-slide .center .single-slide .post-number p {
    border: 5px solid;
    border-top-color: #0000ff;
    border-bottom-color: #0000ff;
    border-right-color: #fff;
    border-left-color: #0000ff; 
}
.slider-area .slider-post-slide .center .single-slide .post-title a {
    color: #ffffff;
    font-weight: 700; 
}
.slider-area .slider-post-slide .center .single-slide .post-title a:hover {
    color: #8fabce;
}
.slider-area .overlay {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-linear-gradient(rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 30%,  rgba(0,0,0,0.3) 40%,  rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%);
    background: -moz-linear-gradient(rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 30%,  rgba(0,0,0,0.3) 40%,  rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 30%,  rgba(0,0,0,0.3) 40%,  rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%);
    opacity: 0.7;
}

/* -- ./Slider -- */

/* -- Marquee -- */

.marquee-box {
    background: #050550;
}

.marquee-wrapper {
    height: 53px;
    overflow: hidden;
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.marquee-wrapper .marquee-title {
    position: absolute;
    z-index: 999;
    top: 0;
    bottom: 1px;
    right: -2px;
    padding: 0 15px;
    background: #050550;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.marquee-wrapper .marquee-title:after {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 5px;
    width: 3px;
    border-radius: 5px;
    background: #8fabce;
    content: '';
}

.marquee {
    direction: ltr;
}

.marquee ul {
    direction: rtl;
}

.marquee li {
    display: inline-block;
    color: #fff;
}

.marquee li p,
.marquee li img {
    display: inline-block;
}

.marquee li p a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.marquee li p a:hover {
    color: #ccc;
}

.marquee li img {
    margin: 0 30px;
    width: 30px;
}

.marquee li:last-child img {
    display: none;
}

/* -- ./Marquee -- */

/* -- News Blocks -- */

.news-wrapper {
    background: #fff;
    padding: 15px;
    margin-top: 30px;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.15);
}

.main-title {
    margin: 0;
    margin-bottom: 30px;
    background-color: #f2f4f5;
    padding: 10px 25px;
    border-right: 4px solid #050550;
    font-size: 22px;
    position: relative;
}

.main-title.top {
    margin-top: 30px;
}

.main-title a {
    color: #050550;
    transition: all 0.5s ease-in-out;
}

.main-title img {
    max-height: 30px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.main-title a:hover {
    color: #999;
}

.zoom-img {
    overflow: hidden;
    display: block;
    width: 100%;
    position: relative;
}

.zoom-img img,
.zoom-img iframe {
    height: 100%;
    width: 100%;
    transition: all .75s ease-in-out;
}

.zoom-img .img-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
}

.zoom-img:hover .img-overlay {
    display: none;
}

.zoom-img:hover img {
    transform: scale(1.1);
}

.sub-news-small {
    margin-bottom: 15px;
}

.sub-news-small .zoom-img {
    width: 100%;
    height: 65px;
}

.sub-news-small .col-4 {
    padding-left: 0;
}

.sub-news-small p {
    height: 47px;
    overflow: hidden;
    font-size: 16px;
    font: bold;
}

.sub-news-small p a {
    color: #000;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.sub-news-small p a:hover {
    color: #777;
}

.sub-news-small ul li {
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 10px;
    color: #aaa;
}

.sub-news-small ul li:last-child {
    margin-left: 0;
}

.sub-news-small ul li svg {
    color: #bf4743;
    margin-left: 2px;
}

.sub-news-block .zoom-img {
    height: 200px;
    width: 100%;
}

.sub-news-block {
    margin-bottom: 10px;
}

.sub-news-block p {
    position: absolute;
    z-index: 55;
    bottom: 30px;
    right: 10px;
    left: 10px;
    height: 45px;
    overflow: hidden;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
}
.sub-news-block ul {
    position: absolute;
    z-index: 5;
    bottom: 5px;
    right: 10px;
    left: 10px;
}
.sub-news-block ul li {
    display: inline-block;
    margin-left: 15px;
    font-size: 12px;
    color: #eee;
    position: relative;
}

.sub-news-block .shadow {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85px;
    background: -webkit-linear-gradient(rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 20%,rgba(0,0,0,.7) 100% );
}

.sub-news-block ul li svg {
    color: #0173ff;
}

.sub-news-block ul li:last-child {
    float: left;
    margin: 0;
}
/* -- ./News Blocks -- */

/* -- Iraq News -- */

.iraq-block .col-sm-6:nth-child(even) {
    padding-right: 5px;
}

.iraq-block .col-sm-6:nth-child(odd) {
    padding-left: 5px;
}

.iraq-block {
    padding-bottom: 20px;
}

/* -- ./Iraq News -- */


/* -- Video1 -- */

.gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 5vw);
    grid-gap: 10px;
}

.gallery .gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery .gallery__item--2 {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery .gallery__item--3 {
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 4;
}

.gallery .gallery__item--4 {
    grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 4;
}

.gallery .gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 7;
}

.gallery .gallery__item--6 {
    grid-column-start: 4;
    grid-column-end: 7;
    grid-row-start: 4;
    grid-row-end: 7;
}

.gallery .gallery__item--7 {
    grid-column-start: 7;
    grid-column-end: 9;
    grid-row-start: 4;
    grid-row-end: 7;
}

.gallery figure {
    margin: 0;
    position: relative;
}

.gallery figure img,
.gallery figure iframe {
    width: 100%;
    height: 100%;
}

.gallery figure p {
    position: absolute;
    z-index: 10;
    bottom: 10px;
    left: 5px;
    right: 5px;
    color: #fff;
    height: 40px;
    overflow: hidden;
}

.gallery figure .type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #050550;
    padding: 2px 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}

.gallery figure .date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #aaa;
    color: #eee;
    padding: 2px 5px 0;
    border-radius: 5px;
    font-size: 11px;
}

.gallery figure .fa-play {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    padding: 8px 7px 8px 9px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    top: calc(50% - 15px);
    right: calc(50% - 15px);
    transition: all 0.5s ease-in-out;
}

.gallery figure:hover .fa-play {
    background: #bf4743;
}

.gallery figure .shadow {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85px;
    background: -webkit-linear-gradient(rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 20%,rgba(0,0,0,.7) 100% );
}
.video-box {
    background: #050550;
    margin-top: 30px;
    padding: 30px 0;
}

.video-box .main-title {
    border-color: #000;
    background: #2e2e44;
}

.video-box .main-title a {
    color: #fff;
}

.video-box .main-title a:hover {
    color: #ccc;
}

/* -- ./Video1 -- */

/* -- Video 2 -- */

.video-box1 {
    background: #050550;
    margin-top: 30px;
    padding: 30px 0;
    overflow-x: hidden;
    max-width: 100%;
}

.video-box1 .main-title {
    border-color: #000;
    background: #2e2e44;
}

.video-box1 .main-title a {
    color: #fff;
}

.video-box1 .main-title a:hover {
    color: #ccc;
}

.video-box1 .container-fluid.box {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: skew(5deg);
    padding: 0 50px;
}
.video-box1 .container-fluid.box .card {
    flex: 1;
    transition: all 1s ease-in-out;
    height: 75vmin;
    position: relative;
    border: 0;
    border-radius: 0;
    border-right: none;
    overflow: hidden;
}
.video-box1 .container-fluid.box .card .card-head {
    color: #fff;
    background: #050550;
    padding: 5px 10px;
    transform: rotate(-90deg);
    transform-origin: 0% 0%;
    transition: all 0.5s ease-in-out;
    min-width: 50%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 15px;
    white-space: nowrap;
}
.video-box1 .container-fluid.box .card:hover {
    flex-grow: 10;
}

.video-box1 .container-fluid.box .card:hover .card-head {
    text-align: center;
    top: calc(100% - 36px);
    color: #aaa;
    background: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    transform: rotate(0deg) skew(-5deg);
    min-width: 105%;
}
.video-box1 .container-fluid.box .card img,
.video-box1 .container-fluid.box .card iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.video-box1 .container-fluid.box .card a {
    display: flex;
    height: 100%;
    width: 100%;
}

.video-box1 .container-fluid.box .card .fa-play-circle {
    position: absolute;
    z-index: 5;
    color: #fff;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    right: calc(50% - 15px);
    transition: all 1s ease-in-out;
}

.video-box1 .container-fluid.box .card:hover .fa-play-circle {
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    right: calc(50% - 25px);
    color: #050550;
} 

.video-box1 .container-fluid.box .card .date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8fabce;
    color: #fff;
    padding: 2px 5px;
    border-radius: 10px;
}

.video-box1 .container-fluid.box .card .para {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
    padding: 15px 10px 10px;
    transition: all 1s ease-in-out;
}
.video-box1 .container-fluid.box .card:hover .para {
    bottom: 35px;
}
.video-box1 .container-fluid.box .card .para p {
    height: 25px;
    overflow: hidden;
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* -- ./Video 2 -- */

/* -- Video 3 -- */
.video-box2 {
    background: #050550;
    margin-top: 30px;
    padding: 30px 0;
    overflow-x: hidden;
    max-width: 100%;
}

.video-box2 .main-title {
    border-color: #000;
    background: #2e2e44;
}

.video-box2 .main-title a {
    color: #fff;
}

.video-box2 .main-title a:hover {
    color: #ccc;
}

.video-card .type {
    position: absolute;
    z-index: 5;
    display: block;
    top: 10px;
    right: 5px;
    padding-right: 20px;
    padding-left: 10px;
    background: #bf4743;
    color: #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.video-card .type:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #bf4743 transparent transparent transparent;
    position: absolute;
    bottom: -10px;
    right: 0;
    content: '';
}

.video-card .info {
    width: calc(100% - 40px);
    margin: 0 20px;
    position: relative;
    z-index: 2;
    top: -50px;
    background: #fff;
    padding: 15px 30px;
    border-top: 2px solid #bf4743;
    border-radius: 5px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.video-card .info p {
    margin: 0;
    height: 50px;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    
}

.video-card .info p a {
    color: #444;
    transition: all 0.5s ease-in-out;
}

.video-card .info p a:hover {
    color: #bf4743;
}

.video-card img,
.video-card iframe {
    width: 100%;
    height: 300px;
}

.video-card .zoom-img svg {
    position: absolute;
    top: calc(50% - 20px);
    right: calc(50% - 20px);
    width: 40px;
    height: 40px;
    z-index: 5;
    color: #fff;
    transition: all .5s ease-in-out;
}

.video-card:hover .zoom-img svg {
    color: #bf4743;
}

.video-card:hover img {
    transform: scale(1.1);
}

.video-card .btn-details {
    position: absolute;
    z-index: 1;
    top: 300px;
    width: 90px;
    background: #bf4743;
    padding: 5px 0;
    text-align: center;
    border-radius: 25px;
    color: #fff;
    left: calc(50% - 45px);
    transition: all 0.5s ease-in-out;
}

.video-card:hover .btn-details {
    top: 210px;
}

.video-card .btn-details:hover {
    background: #fff;
    color: #bf4743;
}

/* -- ./Video 3 -- */

/* -- Articles -- */

.articles .zoom-img {
    width: 65px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

/* -- ./Articles -- */

/* -- Infograph -- */

.infograph .col-lg-3:nth-child(1),
.infograph .col-lg-3:nth-child(5) {
    padding-left: 5px;
}

.infograph .col-lg-3:nth-child(2),
.infograph .col-lg-3:nth-child(3),
.infograph .col-lg-3:nth-child(6),
.infograph .col-lg-3:nth-child(7) {
    padding-left: 5px;
    padding-right: 5px;
}

.infograph .col-lg-3:nth-child(4),
.infograph .col-lg-3:nth-child(8) {
    padding-right: 5px;
}

.infograph .main-title {
    margin-bottom: 23px;
}

.infograph .main-title.top {
    margin-top: 23px;
}

.img-infograph {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.img-infograph img {
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 767px) {
    .img-infograph img {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .img-infograph img {
        height: 280px;
    }
}

@media (max-width: 400px) {
    .img-infograph img {
        height: 220px;
    }
}

/* -- ./Infograph -- */

/* -- Live stream -- */

.news-box {
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.news-box.open {
    transform: scale(1);
    visibility: visible;
}

.news-box span {
    position: absolute;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    top: 15px;
    left: 15px;
}

.news-box iframe,
.news-box video {
    position: absolute;
    max-height: calc(100% - 50px);
    max-width: calc(100% - 50px);
}

.news-btn {
    display: block;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    width: 170px;
    border-radius: 10px;
    border: 1px solid #050550;
    background: #050550;
    color: #fff;
    outline: none !important;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.news-btn:hover {
    background: #fff;
    color: #050550;
}

/* -- ./Live stream -- */

/* -- Persons -- */

.team {
    height: 350px;
    overflow: hidden;
}

.team h2 {
    margin-bottom: 25px;
    text-align: center;
    color: #23282D;
}

.team h2 i:before {
    font-size: 38px;
}

.team .flickity-viewport {
    height: 300px !important;
}

.team .item {
    width: 25%;
    height: 100%;
    padding: 15px;
}

.team .item img {
    width: 150px;
    height: 150px;
    cursor: pointer;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    box-shadow: 1px 1px 15px rgba(83,84,86,0.7);
    margin-bottom: 45px;
    transition: all 0.5s ease-in-out;
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, transparent) , to(rgba(250, 250, 250, 0.5)));
}

.team .item p {
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    height: 40px;
    overflow: hidden;
    text-align: center;
}

.team .item .pen {
    display: block;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    color: #aaa;
}

.team .item .pen svg {
    margin-left: 5px;
}

.team .item .name {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    cursor: pointer;
    text-align: center;
    display: block;
}

.team .flickity-prev-next-button {
    bottom: -70px;
    top: auto;
    right: auto;
    left: calc(50% - 50px);
    border-radius: 0;
    background: none;
    opacity: 1;
    outline: none !important;
    transition: all 0.5s ease-in-out;
}
    
.team .flickity-prev-next-button.next {
    left: calc(50% + 10px);
}

.team .flickity-prev-next-button .arrow {
    fill: #fff;
}
.team .flickity-page-dots {
    display: none;
}

.modal-team .modal-dialog {
    max-width: 80%;
}

.modal-team .modal-body {
    padding: 0;
    min-height: calc(100vh - 60px);
}

.modal-team .img-box,
.modal-team .img-box .right-col,
.modal-team .img-box .left-col {
    min-height: calc(100vh - 60px);
}

.modal-team .img-box .right-col {
    width: 40%;
    float: right;
    background: #f2f2f2;
}

.modal-team .img-box img {
    width: 100%; 
    height: 400px;
}

.modal-team .img-box .left-col {
    width: 60%;
    float: right;
    padding: 25px;
}

.modal-team .img-box .name {
    color: #050550;
    font-weight: bold;
    font-size: 22px;
    margin: 10px 0;
    padding-right: 20px;
}

.modal-team .img-box ul {
    margin: 10px 0;
    padding-right: 25px;
}

.modal-team .img-box ul li {
    margin-bottom: 10px;
    color: #23282D;
}

.modal-team .img-box ul li span {
    direction: ltr;
    display: inline-block;
}

.modal-team .img-box ul li svg {
    margin-left: 5px;
    color: #050550;
}


.modal-team .img-box .left-col .info {
    border: 1px solid #e1e1e1;
    position: relative;
    margin-top: 40px;
}

.modal-team .img-box .left-col .info h3 {
    font-size: 20px;
    display: inline-block;
    padding: 10px 20px;
    background: #050550;
    color: #fff;
}

.modal-team .img-box .left-col .info p {
    padding: 0 15px;
    text-align: justify;
    line-height: 30px;
}

.modal-team .img-box .left-col .info ul li {
    position: relative;
    padding-right: 25px;
}

.modal-team .img-box .left-col .info ul li:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid #050550;
    right: 0;
    top: 7px;
    border-radius: 50%;
}

.modal-team .carousel-control-prev, 
.modal-team .carousel-control-next {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #050550;
    color: #fff;
    bottom: auto;
    border-radius: 50%;
    top: 15px;
    left: 60px;
    transition: all 0.5s ease-in-out;
}


.modal-team .carousel-control-next {
    right: auto;
    left: 105px;
}

.modal-team button.close {
    position: absolute;
    z-index: 15;
    top: 15px;
    left: 15px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 43px;
    background: #050550;
    color: #fff;
    bottom: auto;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    font-size: 15px;
    outline: none;
}

.modal-team button.close:hover {
    opacity: 1;
    color: #fff !important;
}

@media (max-width: 1200px) and (min-width: 768px) {
    .modal-team .img-box .right-col,
    .modal-team .img-box .left-col {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .modal-team .img-box img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .modal-team .img-box .right-col,
    .modal-team .img-box .left-col {
        width: 100%;
        float: none;
        min-height: auto;
        padding-bottom: 25px;
    }
    .modal-team .img-box img {
        height: 300px;
    }
    .modal-team .img-box .left-col .info {
        margin-top: 0;
    }
}

@media (max-width: 500px) {
    .modal-team .img-box img {
        height: 225px;
    }
}

/* -- ./Persons -- */


/* -- Economy -- */
.eco-slider {
    height: 366px;
    overflow: hidden;
}

.eco-slider .flickity-viewport {
    height: 366px !important;
}

.eco-slider .item,
.eco-slider img,
.eco-slider iframe {
    width: 100%;
    height: 100%;
}

.eco-slider .flickity-prev-next-button {
    top: 25px;
    width: 30px;
    height: 30px;
    background: #050550;
    opacity: 0.4;
    border-radius: 0;
}

.eco-slider .flickity-prev-next-button:hover {
    opacity: 1;
}

.eco-slider .flickity-prev-next-button .arrow {
    fill: #fff;
}

.eco-slider .flickity-prev-next-button.next {
    right: auto;
    left: 42px;
}

.eco-slider .item p {
    position: absolute;
    font-size: 16px;
    z-index: 5;
    bottom: -40px;
    left: 10px;
    right: 10px;
    font-weight: bold;
    max-height: 45px;
    overflow: hidden;
    color: #fff;
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.eco-slider .item.is-selected p {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.eco-slider .item .shadow {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: -webkit-linear-gradient(rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 20%,rgba(0,0,0,.7) 100% );
}

@media (max-width: 600px) {
    .eco-slider .flickity-viewport,
    .eco-slider {
        height: 280px !important;
    }
}

@media (max-width: 400px) {
    .eco-slider .flickity-viewport,
    .eco-slider {
        height: 220px !important;
    }
}

/* -- ./Economy Slider -- */

/* -- Reports -- */

.reports .sub-news-block {
    margin-bottom: 32px;
}

/* -- ./Reports -- */

/* -- urgent news -- */

.newsbar{
	width: 100%;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9999;
    height: 50px;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.newsbar .show {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
    width: 40px;
    height: 50px;
    background: #c60101;
    height: 100%;
    color: #fff;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.newsbar .show.back {
    height: 35px;
    font-size: 22px;
    top: auto;
    bottom: 0;
    left: 0;
    position: fixed;
    background: #a60101;
}
.newsbar .show.back:hover svg {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.newsbar .show.back:hover svg {
    transform: rotate(360deg);
}
.newsbar .hidden-part {
	background: #a60101;
    height: 50px;
    padding: 10px 0 5px;
    position: relative;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.newsbar .urgent {
    color: #FFF;
    background: #760101;
    width: 60px;
    padding: 5px 0;
    text-align: center;
    display: inline-block;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 40px;
    font-size:20px;
}
.newsbar .urgent span {
    animation: blinker 0.5s ease-in-out infinite;
    -webkit-animation: blinker 0.5s ease-in-out infinite;
}  
@keyframes blinker {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes blinker {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
} 
.newsbar .newss{
	display: inline-block;
}
.newsbar .newss{
	height: 25px;
	overflow: hidden;
}
.newsbar .newss .activenews {
	display: block;
	padding-right: 20px;
	position: absolute;
}
.newsbar p{
	margin: 0;
	padding: 5px 0;
	height: 25px;
    overflow: hidden;
    font-size: 16px;
    position: relative;
    top: -4px;
}
.newsbar p a{
	color: #fff;
}
.newsbar .newss div {
	display: none;
}
.newsbar ~ footer .copyrights {
    padding-bottom: 50px;
}
@media (max-width:500px){
	.newsbar {
        height: 90px;
        bottom: -5px;
	}
	.newsbar .hidden-part {
		padding: 0;
		height: 90px;
	}
	.newsbar .urgent{
		width: 100%;
        height: auto;
        line-height: normal;
        position: relative;
        z-index: 9;
	}
	.newsbar .newss .activenews{
		text-align: center;
		padding-right: 0px;
	}
	.newsbar p{
        height: 45px;
        padding-left: 40px;
        text-align: right;
        padding-right: 5px;
    }
    .newsbar .show {
        height: 63px;
        bottom: 0;
        top: auto;
    }
    .newsbar .show.back {
        width: 30px
    }
    .newsbar ~ footer .copyrights {
        padding-bottom: 105px;
    }
}

/* -- ./urgent news -- */

/* -- Footer -- */

.go-top {
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 55px;
    width: 40px;
    height: 40px;
    background: #454176;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff !important;
}

footer {
    background: #050550;
    padding: 20px 0 0;
    margin-top: 30px;
}

footer .footer-about {
    padding-right: 15px;
    color: #bbb;
    margin-top: 10px;
    font-weight: bold;
    line-height: 1.5;
}

footer .site-map {
    font-size: 15px;
    font-weight: bold;
    width: 25%;
    float: right;
    margin-top: 25px;
}

footer .site-map a {
    color: #fff;
    transition: all .5s ease-in-out;
}

footer .site-map a:hover {
    color: #757396;
}

footer .site-map li {
    padding-bottom: 10px;
}

footer .site-map li span {
    padding-bottom: 10px;
    font-size: 22px;
    display: block;
    color: #757396;
    position: relative;
}

footer .site-map li ul {
    padding-right: 4px;
}

footer .site-map li ul li {
    position: relative;
}

footer .socail li {
    display: inline-block;
    margin-left: 15px;
}

footer .socail li a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #050550;
    text-align: center;
    line-height: 2.3;
    font-size: 16px;
    transition: all .5s ease-in-out;
}

footer .socail li a:hover {
    background: #050550;
    color: #fff;
}

.copyrights {
    background: #2e2e44;
    padding: 10px;
    margin-top: 25px;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

footer .important-links {
    text-align: center;
    margin-bottom: 30px;
}

footer .important-links li {
    margin: 10px;
    display: inline-block;
    font-weight: bold;
}

footer .important-links li span {
    padding: 5px 10px;
    font-size: 20px;
    color: #757396;
}

footer .important-links li a {
    color: #fff;
    transition: all .5s ease-in-out;
}

footer .important-links li a:hover {
    color: #757396;
}

/* -- ./Footer -- */

/* -- Ads -- */

.ads-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 0;
}

.articles + .ads-box {
    height: 420px;
}

.ads-box a {
    display: block;
    max-width: 100%;
    height: 100%;
}

.ads-box img,
.ads-box iframe {
    max-width: 100%;
    height: 100%;
    display: block;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.15);
}
/* -- ./Ads -- */

/* -- Download Apps -- */

footer .down {
    position: relative;
}

.download-app {
    position: absolute;
    bottom: 0;
    left: 15px;
}

.download-app p {
    color: #444;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.download-app li {
    display: inline-block;
    margin-right: 10px;
}

.download-app li img {
    max-width: 35px;
    margin: 0 auto;
    float: right;
    position: relative;
    top: -3px;
    right: -5px;
}

.download-app li a {
    width: 150px;
    height: 50px;
    display: block;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 10px 10px 15px;
    color: #fff;
    position: relative;
}

.download-app li a:hover {
    background: #fff;
    color: #050550;
}

.download-app li a .ar {
    font-size: 12px;
    display: block;
    margin-bottom: -2px;
    margin-top: -3px;
}

.download-app li a .en {
    font-size: 16px;
    font-weight: 600;
}

.download-app li .app-store {
    padding-right: 40px;
}

.download-app li .app-store svg {
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.download-app li .play-store {
    padding-left: 40px;
}

.download-app li .play-store svg {
    font-size: 30px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.download-app li .huawei svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.download-app li .huawei:hover svg {
    fill: #050550;
}

/* -- ./Download Apps -- */

/* -- Home page responsive -- */
@media (max-width: 1200px) and (min-width: 992px) {
    .header-area .navbar .navbar-nav .nav-link {
        padding: 10px;
    }
    .header-area .navbar .navbar-nav.search-expanded .nav-link {
        padding: 10px 5px !important;
        font-size: 12px;
    }
    .sub-news-small ul li {
        margin-top: 5px;
    }
    .articles + .ads-box {
        height: 245px
    }
}
@media (max-width: 991px) {
    .overlay-all {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999998;
        display: none;
        background: rgba(0,0,0,0.5);
    }
    .header-area .navbar .navbar-nav .nav-link {
        padding: 15px !important;
    }
    .header-area .navbar {
        height: 80px;
        padding-left: 0;
    }
    .navbar-toggler {
        outline: none;
    }
    .collapse {
        display: block !important;
    }
    .header-area .navbar-nav {
        position: fixed;
        top: 0;
        right: -200px;
        bottom: 0;
        width: 200px;
        background: #050550;
        z-index: 999999;
        overflow-y: scroll;
        transition: all .5s ease-in-out;
    }
    .header-area .navbar-nav.open-nav {
        right: 0;
    }
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: #2e2e44;
        visibility: visible;
        opacity: 1;
        transition: none;
    }
    .dropdown-item {
        color: #fff;
    }
    .sub-news-small .zoom-img {
        height: 140px;
    }
    .articles .sub-news-small .zoom-img {
        height: 100px;
        width: 100px;
    }
    .sub-news-block .zoom-img {
        height: 220px;
    }
    .video-card img, .video-card iframe {
        height: 250px;
    }
    .video-card .btn-details {
        display: none
    }
    .infograph .col-lg-3 {
        padding: 5px 10px !important;
    }
    .team .container {
        max-width: 100%;
    }
    .caricature-slider .flickity-viewport {
        height: 465px !important;
    }
    .reports .sub-news-block .zoom-img {
        height: 270px;
    }
    footer .socail {
        text-align: center;
        padding: 15px 0;
    }
    .download-app {
        position: static;
        margin-top: 25px;
        text-align: center;
    }
    .download-app li {
        margin: 10px;
    }
}
@media (max-width: 767px) {
    .slider-area .slider-slides .single-slider-slide .para {
        font-size: 18px;
    }
    .slider-area .slider-slides .single-slider-slide .para p {
        height: 55px;
        width: 95%;
    }
    .header-area .navbar {
        padding-right: 0;
    }
    .header-area .logo {
        width: 200px;
    }
    .header-area .navbar {
        height: 65px;
    }
    .navbar-toggler {
        position: relative;
        top: -5px;
    }
    .header-area.sticky .logo {
        width: 165px;
        top: -4px;
    }
    .sub-news-small .zoom-img {
        height: 130px;
    }
    .sub-news-block .zoom-img {
        height: 300px;
    }
    .iraq-block .col-sm-6 {
        padding: 5px 10px !important;
    }
    .team .item {
        width: 33.33%;
    }
    .ads-box {
        padding-left: 10px;
        padding-right: 10px;
        height: auto !important;
    }
    .ads-box img, .ads-box iframe {
        height: auto;
    }
    .video-box1 .container-fluid.box {
        padding: 15px;
        transform: none;
        display: block;
    }
    .video-box1 .container-fluid.box .card {
        margin-bottom: 15px;
        height: 300px;
    }
    .video-box1 .container-fluid.box .card .card-head {
        min-width: 40px;
        bottom: 40px;
    }
    .video-box1 .container-fluid.box .card .fa-play-circle {
        width: 50px;
        height: 50px;
        right: calc(50% - 25px);
        top: calc(50% - 25px);
    }
    .video-box1 .container-fluid.box .card .para {
        bottom: 0;
    }
    .video-box1 .container-fluid.box .card .para p {
        height: 40px;
    }
    footer .site-map {
        width: 50%;
    }
    footer .footer-about {
        margin-bottom: 15px;
    }
}

@media (max-width: 500px) {
    .team .item {
        width: 50%;
    }
    .caricature-slider .flickity-viewport {
        height: 300px !important;
    }
    footer .site-map {
        width: 50%;
    }
    footer .site-map:last-child {
        float: right;
    }
}
@media (max-width: 400px) {
    .sub-news-small .zoom-img {
        height: 80px;
    }
    .sub-news-block .zoom-img,
    .reports .sub-news-block .zoom-img {
        height: 225px;
    }
    .team .item {
        width: 100%;
    }
    .caricature-slider .flickity-viewport {
        height: 225px !important;
    }
    .articles .sub-news-small .zoom-img {
        width: 80px;
        height: 80px;
    }
}
/* -- /Home page responsive -- */

/* -- Last News Page -- */ 

.inner-page {
    padding-top: 80px;
}

.inner-page  .news-wrapper {
    padding: 10px;
}

.nav-tabs {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.nav-tabs .nav-item {
    width: 50%;
    float: right;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.nav-tabs .nav-item a {
    border: 0 !important;
    color: #23282D;
}

.nav-tabs .nav-item a.active {
    color: #bf4743;
}

.nav-tabs .nav-item:first-child:after {
    position: absolute;
    z-index: 5;
    left: -1px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #ccc;
    border-radius: 10px;
    content: '';
}

.last-box {
    border-radius: 15px;
    border: 1px solid #e1e1e1;
    padding: 15px;
    position: relative;
    padding-top: 30px;
    margin-bottom: 25px;
}

.last-box .news-date {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #050550;
    color: #fff;
    padding: 5px 10px;
    z-index: 5;
}

.last-box .single-news {
    margin-bottom: 5px;
    display: block;
}

.last-box .single-news .zoom-img {
    width: 100px;
    height: 80px;
    display: inline-block;
}

.last-box .single-news .para {
    display: inline-block;
    padding-right: 15px;
    width: calc(100% - 120px);
}

.last-box .single-news .para p {
    height: 40px;
    overflow: hidden;
    position: relative;
    top: -20px;
    color: #23282D;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.last-box .single-news:hover .para p {
    color: #050550;
}

.last-box .single-news .para .date {
    position: relative;
    top: -10px;
    color: #aaa;
}

.last-box.red {
    border-color: #bf4743;
    background: #efadaa73;
}

.last-box.red .news-date {
    background: #bf4743;
}

.last-box.red .news-date .word {
    animation: blanker 0.5s ease-in-out infinite;
}

@keyframes blanker {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.last-box.red .single-news:hover .para p {
    color: #bf4743;
}

/* -- ./Last News Page -- */ 

/* -- Pagination -- */

.page-navigation {
    clear: both;
    display: block;
    padding: 25px 15px 10px;
}

.page-navigation a,
.page-navigation span {
    border: 1px solid #050550;
    padding: 5px 10px;
    margin-bottom: 15px;
    display: inline-block;
    color: #050550;
}

.page-navigation span:hover {
    cursor: not-allowed;
}

.page-navigation span,
.page-navigation a:hover {
    color: #fff;
    background: #050550;
}

/* -- Pagination -- */

/* -- Inner News -- */
.inner-news .col-sm-6:nth-child(odd) {
    padding-left: 5px;
}

.inner-news .col-sm-6:nth-child(even) {
    padding-right: 5px;
}

.inner-news .sub-news-block .zoom-img {
    height: 270px;
}

@media (max-width: 767px) {
    .inner-news .sub-news-block .zoom-img {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .inner-news .col-sm-6:nth-child(odd) {
        padding-left: 15px;
    }
    
    .inner-news .col-sm-6:nth-child(even) {
        padding-right: 15px;
    }
}

/* -- ./Inner News -- */

/* -- Videos Page -- */

.video-page .main-title a {
    color: #bf4743;
}

.video-page .main-title {
    border-right-color: #bf4743;
}

.video-page .page-navigation a,
.video-page .page-navigation span {
    border: 1px solid #bf4743;
    color: #bf4743;
}

.video-page .page-navigation span,
.video-page .page-navigation a:hover {
    color: #fff;
    background: #bf4743;
}

.videos-inner .col-sm-6:nth-child(even) .video-card .type {
    right: 0px;
}

.videos-inner .col-sm-6:nth-child(odd) .video-card .type {
    right: 10px;
}

.videos-inner .video-card .type:after {
    border-width: 5px 5px 0 0;
    bottom: -5px;
}

.videos-inner .col-sm-6:nth-child(odd) {
    padding-left: 5px;
}

.videos-inner .col-sm-6:nth-child(even) {
    padding-right: 5px;
}

@media (max-width: 575px) {
    .videos-inner .col-sm-6:nth-child(odd) {
        padding-left: 15px;
    }
    
    .videos-inner .col-sm-6:nth-child(even) {
        padding-right: 15px;
    }

    .videos-inner .col-sm-6:nth-child(even) .video-card .type {
        right: 10px;
    }
    
}

/* -- ./Videos Page -- */

/* -- Articles Page -- */
.inner-page .row.articles {
    margin: 0;
}

.inner-page .articles .zoom-img {
    width: 100px;
    height: 100px;
}

.inner-page .articles.tab-pane .zoom-img {
    width: 75px;
    height: 75px;
    margin-top: 15px;
}

.inner-page .articles .sub-news-small {
    margin-bottom: 15px;
}

.inner-page .articles .sub-news-small p {
    margin-top: 20px;
}

@media (max-width: 767px) and (min-width: 576px) {
    .inner-page .articles .zoom-img {
        width: 70px;
        height: 70px;
    }
    .inner-page .articles .sub-news-small p {
        margin-top: 0px;
    }
}

/* -- ./Articles Page -- */

/* -- News Details -- */
h1.main-title {
    font-weight: bold;
}
.news-details .info {
    display: inline-block;
    margin-right: 10px;
}
.news-details .info li {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #e1e1e1;
    color: #aaa;
    margin-bottom: 15px;
}

.news-details .info li:last-child,
.news-details .info li:nth-last-child(2) {
    padding-left: 0;
    margin-left: 0;
    border: 0;
}

.news-details .info li svg {
    margin-left: 5px;
}

.news-details .main-img {
    position: relative;
}

.news-details .main-img svg {
    position: absolute;
    z-index: 5;
    top: calc(50% - 25px);
    right: calc(50% - 25px);
    width: 50px;
    height: 50px;
    color: #fff;
    transition: all .5s ease-in-out;
}

.news-details .main-img:hover svg {
    color: #d2110b;
}

.news-details .main-img img,
.news-details .main-img iframe {
    width: 100%;
    max-height: 600px;
    margin-bottom: 15px;
}

.news-details .type {
    margin-bottom: 10px;
    padding: 2px 10px;
    background: #bf4743;
    color: #fff;
    display: inline-block;
    border-radius: 10px;
}

.news-details .news-text {
    margin-bottom: 15px;
    font-size: 16px;
}

.news-details .news-text *  {
    font-family: Helvetica, sans-serif !important;
}

.news-details .news-text p {
    font-weight: bold;
    font-size: 18px;
}

.news-details .news-text img,
.news-details .news-text iframe {
    width: 100%;
    margin: 15px 0;
}

.news-details .tags {
    margin-bottom: 25px;
}

.news-details .tags a {
    display: inline-block;
    margin: 5px;
    background: #050550;
    padding: 2px 5px;
    color: #fff;
}

.news-details .tags a:hover {
    background: #757396;
}

.news-details .font-list {
    float: left;
}

.news-details .font-block .font-inc a,
.news-details .font-block .font-dec a {
    display: inline-block;
    width: 40px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #444;
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.news-details .font-block .font-dec.none a,
.news-details .font-block .font-inc.none a {
    cursor: not-allowed;
    background: #999 !important;
    border-color: #999 !important;
    color: #fff !important;
}

.news-details .font-block .font-inc a:hover,
.news-details .font-block .font-dec a:hover {
    background: #fff;
    color: #444;
}

.news-details .share {
    margin-bottom: 15px;
    margin-top: 15px;
}

.news-details .share li {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 15px;
    position: relative;
    top: 0;
    transition: all .5s ease-in-out;
}

.news-details .share li a {
    padding: 5px 10px;
    border-radius: 5px;
    background: #444;
    color: #fff;
}

.news-details .share li.facebook a {
    background: #0778e9;
    color: #fff;
}

.news-details .share li.twitter a {
    background: #50abf1;
    color: #fff;
}

.news-details .share li.whatsapp a {
    background: #46c254;
    color: #fff;
}

.news-details .share li.telegram a {
    background: #2897ce;
    color: #fff;
    font-size: 26px;
}

.news-details .share li.viber a {
    background: #7b519c;
    color: #fff;
    font-size: 26px;
}

.news-details .share li.print a {
    background: #d2110b;
    color: #fff;
}

.related-news .col-sm-6:nth-child(odd) {
    padding-left: 5px;
}

.related-news .col-sm-6:nth-child(even) {
    padding-right: 5px;
}

.related-news .sub-news-block .zoom-img {
    height: 250px;
}

@media (max-width: 767px) {
    .news-details .font-list {
        float: none;
        display: block !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .news-details .font-block .font-inc,
    .news-details .font-block .font-dec {
        padding: 0 5px;
    }
}

@media (max-width: 575px) {
    .related-news .col-sm-6:nth-child(odd) {
        padding-left: 15px;
    }
    
    .related-news .col-sm-6:nth-child(even) {
        padding-right: 15px;
    }

    .related-news .articles .zoom-img {
        width: 80px;
        height: 80px;
    }
    .related-news .articles .sub-news-small p {
        margin-top: 0;
    }
    .news-details .main-img svg {
        top: calc(50% - 15px);
        right: calc(50% - 15px);
        width: 30px;
        height: 30px;
    }
}

/* -- ./News Details -- */

/* -- Iraq News -- */

.inner-iraq .col-md-4:nth-child(3n + 1),
.last-box .col-md-4:nth-child(3n + 1) {
    padding-left: 5px;
    padding-right: 15px;
}

.inner-iraq .col-md-4:nth-child(3n + 2),
.last-box .col-md-4:nth-child(3n + 2) {
    padding-right: 5px;
    padding-left: 5px;
}

.inner-iraq .col-md-4:nth-child(3n + 3),
.last-box .col-md-4:nth-child(3n + 3) {
    padding-right: 5px;
    padding-left: 15px;
}

.inner-news-block {
    margin-bottom: 10px;
}

.inner-news-block .zoom-img {
    width: 100%;
    height: 175px;
}

@media (min-width: 1400px) {
    .inner-news-block .zoom-img {
        height: 250px;
    }
    
}

.inner-news-block .para {
    background: #f1f1f1;
    padding: 10px 15px;
}

.inner-news-block .para p a {
    color: #000;
    font-weight: bold;
    height: 48px;
    overflow: hidden;
    display: block;
    transition: all .5s ease-in-out;
}

.inner-news-block .para p a:hover {
    color: #bf4743;
}

.inner-news-block .para ul {
    margin-top: 15px;
    margin-bottom: 0;
}

.inner-news-block .para ul li {
    display: inline-block;
    color: #999;
}

.inner-news-block .para ul li:first-child {
    margin-left: 10px;
}

.inner-news-block .para ul li svg {
    color: #bf4743;
}

.news-details .type-box {
    float: left;
    border: 0;
}

@media (max-width: 767px) {
    .inner-iraq .col-md-4:nth-child(odd),
    .last-box .col-md-4:nth-child(odd)  {
        padding-right: 15px;
        padding-left: 5px;
    }

    .inner-iraq .col-md-4:nth-child(even),
    .last-box .col-md-4:nth-child(even) {
        padding-left: 15px;
        padding-right: 5px;
    }
    .news-details .type-box {
        float: none;
    }
}

@media (max-width: 575px) {
    .inner-iraq .col-md-4,
    .last-box .col-md-4 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

/* -- ./Iraq News -- */

/* -- About us -- */


.about-text {
    padding-bottom: 25px;
}

.about-text p {
    font-weight: bold;
}

.about-text img,
.about-text iframe {
    display: block;
    margin: 15px auto;
    max-width: 100%;
}

/* -- ./About us -- */


/* -- Contact Us Page  -- */

#dle-content{
	padding: 20px 10px;
}

#dle-content h3{
	display: none;
}

#dle-content input,
#dle-content textarea{
	outline: none;
	margin-bottom: 15px;
	width: 100%;
	padding: 5px 10px;
	border-radius: 5px;
    border: 1px solid #ccc;
}


#dle-content select {
    outline: none;
    margin-bottom: 10px;
    min-width: 150px;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

#dle-content input::placeholder,
#dle-content textarea::placeholder {
    font-size: 14px;
    color: #aaa;
}

#dle-content .c-capcha{
	text-align: center;
}

#dle-content .c-capcha input{
	width: 100px;
}

#dle-content button.btn{
    display: block;
	margin: 5px auto;
	outline: none;
	border: 1px solid #050550;
	color: #fff;
    background: #050550;
    transition:  all 0.5s ease-in-out;
}

#dle-content button.btn:hover{
	background: #fff;
    color: #050550;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

#dle-content .c-capcha input {
    display: block;
    margin: 10px auto 30px;
}

.phone-email li {
    margin-bottom: 10px;
    font-weight: bold;
    padding-right: 10px;
}

.phone-email a {
    color: #333;
    transition: all .5s ease-in-out;
}

.phone-email a:hover {
    color: #050550;
}

.contact-page {
    background: #fff;
    box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.1);
    padding: 15px;
}

.contact-page iframe {
    width: 100%;
    min-height: 500px
}

@media (max-width:767px) {
    .phone-email ul {
        margin-bottom: 15px;
        padding-bottom: 15px;
        text-align: center;
        border-bottom: 1px solid #e1e1e1;
    }
    .contact-page iframe {
        min-height: 300px;
    }
}

/* -- ./Contact Us Page  -- */

/* -- People Page -- */

.inner-page .team {
    height: auto;
}

.inner-page .team .item {
    width: 100% !important;
}

.inner-page .team .item .name {
    color: #050550;
    text-align: center;
    display: block;
    transition: all .5s ease-in-out;
}

.inner-page .team .item:hover .name {
    color: #d2110b;
}

.inner-page .team .item img {
    margin-bottom: 25px;
}

/* -- ./People Page -- */

/* -- Download App Page -- */
.app-page .download-app {
    position: static;
    margin-top: 30px;
    text-align: center;
}
.app-page .download-app a {
    color: #050550;
    text-align: right;
    border-color: #050550;
}
.app-page .download-app a svg {
    fill: #050550;
}
.app-page .download-app li {
    margin-bottom: 15px;
}
.app-page .download-app a:hover {
    background: #050550;
    color: #fff;
}
.app-page .download-app a:hover svg {
    fill: #fff;
}
.app-page img {
    height: 300px;
    display: block;
    margin: 0 auto;
}
.app-page p {
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .app-page img {
        margin-top: 15px;
    }
}
/* -- ./Download App Page -- */
.demo2 {
    text-align: center;
}
.demo{
    padding-right: 70px;
    width: 100%;
}
.demo li{
    padding-top: 2px;
}
.demo li a{
    color: #fff;
    height: 25px;
    overflow: hidden;
    display: inline-block;
    font-size: 20px;
}
@media (max-width: 500px) {
    .demo{
        padding-right: 0px;
    }
    .demo li {
        padding: 5px 15px 15px 32px;
    }
}


.nav-tabs + .tab-content .sub-news-small p {
    height: auto;
    overflow: hidden;
}




.follow-box {
    margin: 20px 0;
}
.follow-box h2 {
    font-size: 16px;
    font-weight: bold;
    color: #888;
    display: inline-block; 
    margin-left: 15px;
}
.follow-box ul {
    display: inline-block;
}
.follow-box ul.share {
    margin-bottom: 15px;
    margin-top: 15px;
}
.follow-box ul.share li {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    top: 0;
    transition: all .5s ease-in-out;
}
.follow-box ul.share li a {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    display: block;
    transition: all .5s ease-in-out;
}
.follow-box ul.share li.facebook a {
    background: #0778e9;
    border: 2px solid #0778e9;
    color: #fff;
}
.follow-box ul.share li.facebook a:hover {
    background: #fff;
    color: #0778e9;
}
.follow-box ul.share li.twitter a {
    background: #50abf1;
    border: 2px solid #50abf1;
    color: #fff;
}
.follow-box ul.share li.twitter a:hover {
    background: #fff;
    color: #50abf1;
}
.follow-box ul.share li.whatsapp a {
    background: #46c254;
    border: 2px solid #46c254;
    color: #fff;
}
.follow-box ul.share li.whatsapp a:hover {
    background: #fff;
    color: #46c254;
}
.follow-box ul.share li.telegram a {
    background: #2897ce;
    border: 2px solid #2897ce;
    color: #fff;
}
.follow-box ul.share li.telegram a:hover {
    background: #fff;
    color: #2897ce;
}
.follow-box ul.share li.google a {
    background: #f3b709;
    border: 2px solid #f3b709;
    color: #fff;
    font-size: 26px;
}
.follow-box ul.share li.google a:hover {
    background: #fff;
    color: #f3b709;
}

h5 {
        font-size: 18px;
    line-height: 27px;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

h5 a{
    color: #bd0000 !important;
    font-size: 22px;
}

h5 a:hover{
    color: #870000 ;
}
