@font-face {
    font-family: 'halvatica';
    src: url('./fonts/halvatica.woff') format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: 'halvatica';
    src: url('./fonts/halvatica-bold.woff') format("truetype");
    font-weight: bold;
}


body {
    margin: 0;
    direction: rtl;
    font-size: 16px;
    line-height: 1.5;
    min-width: 100%;
    font-family: 'halvatica', sans-serif;
}

body.noScroll {
    position: fixed;
    overflow: hidden;
}

a {
    -webkit-tap-highlight-color: transparent;
}

*:focus,
*:hover,
*:active {
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.bold {
    font-weight: bold;
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 17px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 14px;
}
.weight-500 {
    font-weight: 500;
}
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
    ;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-sm {
    margin-top: .5rem;
}

.mt-md {
    margin-top: .75rem;
}

.mt-lg {
    margin-top: 1rem;
}

.mt-xl {
    margin-top: 1.5rem;
}

.rounded-xs {
    border-radius: .5rem
}

.rounded-sm {
    border-radius: .75rem
}

.rounded-md {
    border-radius: 1rem;
}

.rounded-lg {
    border-radius: 1.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.container {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-none {
    flex: 0 0 auto;
}

.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);

}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.gap-xs {
    gap: .5rem;
}

.gap-sm {
    gap: .75rem;
}

.gap-md {
    gap: 1rem;
}

.gap-lg {
    gap: 1.5rem;
}

.gap-xl {
    gap: 2rem;
}

.gap-row-md {
    row-gap: 1rem;
}

.gap-col-lg {
    column-gap: 1.5rem;
}

.p-md {
    padding: 1rem;
}

.p-lg {
    padding: 1.5rem;
}

.mt-xs {
    margin-top: .5rem;
}

.mt-sm {
    margin-top: .75rem;
}

.mt-md {
    margin-top: 1rem;
}

.mt-lg {
    margin-top: 1.5rem;
}

.mt-xl {
    margin-top: 2rem;
}

.mb-xs {
    margin-bottom: .5rem;
}

.mb-sm {
    margin-bottom: .75rem;
}

.mb-md {
    margin-bottom: 1rem;
}

.mb-lg {
    margin-bottom: 1.5rem;
}

.mb-xl {
    margin-bottom: 2rem;
}

.col-xs-1 {
    grid-column: span 1;
}

.col-xs-2 {
    grid-column: span 2;
}

.col-xs-3 {
    grid-column: span 3;
}

.col-xs-4 {
    grid-column: span 4;
}

.col-xs-5 {
    grid-column: span 5;
}

.col-xs-6 {
    grid-column: span 6;
}

.col-xs-12 {
    grid-column: span 12;
}

@media only screen and (min-width: 40em) {
    .col-2sm-6 {
        grid-column: span 6;
    }
}

@media only screen and (min-width: 48em) {
    .col-sm-2 {
        grid-column: span 2;
    }

    .col-sm-4 {
        grid-column: span 4;
    }

    .col-sm-6 {
        grid-column: span 6;
    }
}

@media only screen and (min-width: 62em) {
    .container {
        width: 61rem;
    }

    .col-md-1 {
        grid-column: span 1;
    }

    .col-md-2 {
        grid-column: span 2;
    }

    .col-md-3 {
        grid-column: span 3;
    }

    .col-md-4 {
        grid-column: span 4;
    }

    .col-md-6 {
        grid-column: span 6;
    }

    .col-md-8 {
        grid-column: span 8;
    }

    .col-md-9 {
        grid-column: span 9;
    }
}

@media only screen and (min-width: 75em) {
    .container {
        width: 71rem;
    }

    .col-lg-3 {
        grid-column: span 3;
    }

    .col-lg-4 {
        grid-column: span 4;
    }

    .col-lg-6 {
        grid-column: span 6;
    }

    .col-lg-8 {
        grid-column: span 8;
    }

    .col-lg-9 {
        grid-column: span 9;
    }
}

@media only screen and (min-width: 90em) {
    .container {
        width: 1280px;
    }
}

#sidenav-overlay {
    transition: opacity 0.5s ease-in-out;
}

nav ul {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

ul {
    list-style-type: none;
}

a {
    color: currentColor;
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

.wrapper {
    position: relative;
    padding-top: 1.5rem;
}

html input[type="button"],
button,
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

.form-control {
    outline: none;
    padding: .75rem 1rem;
    border: 0;
    appearance: none;
    transition: all .3s;
    width: 100%;
    display: flex;
    height: 50px;
    box-sizing: border-box;
    font-family: 'halvatica', sans-serif;
}

.btn {
    border: 0;
    padding: .3rem 1rem .7rem;
    font-family: 'halvatica', sans-serif;
    font-size: 16px;
}

.select-icon {
    position: absolute;
    left: 1rem;
    width: .75rem;
    height: .75rem;
    opacity: .5;
}

.btn.primary-btn {
    display: inline-block;
    padding: .5rem 1.5rem .85rem;
    font-family: 'halvatica', Helvetica, sans-serif;
    transition: all 0.3s ease-in-out
}

.sidbar-box.play-back .btn.primary-btn.watch-more {
    margin: 0 20px 20px;
    background-color: transparent;
    box-shadow: none;
    color: #db2d29;
    border-bottom: 2px solid #db2d29;
    padding: 10px 0;
    font-weight: bold;
}

.sidbar-box.play-back .btn.primary-btn.watch-more:hover {
    border-color: #252525;
    color: #252525;
}

.btn.primary-btn:hover {
    background-color: #db2d29;
}

button.btn.primary-btn:focus,
button.btn.primary-btn:hover {
    outline: none;
}

header {
    width: 100%;
    height: 126.5px;
    position: relative;
    z-index: 997;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

header.header-fix {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.nav-wrap.affix {
    position: fixed;
    z-index: 1030;
    top: 0;
    width: 100%;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

header.hide {
    transform: translateY(-100%);
}

.animated {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform, opacity;
}

.animated.slideDown {
    -webkit-animation-name: slideDown;
    -moz-animation-name: slideDown;
    -o-animation-name: slideDown;
    animation-name: slideDown;
}

.animated.slideUp {
    -webkit-animation-name: slideUp;
    -moz-animation-name: slideUp;
    -o-animation-name: slideUp;
    animation-name: slideUp;
}

header.header-fix .header-top {
    height: 70px;
    line-height: 60px;
}

.header-top {
    font-size: 15px;
    padding: 1rem 0;
    background-color: #252525;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.header-top .container,
.header-top .container .row {
    height: 100%;
}

header.header-fix .header-top {
    background-color: #db2d29;
}

nav {
    background-color: transparent;
    box-shadow: none;
    clear: both;
    text-align: center;
}

nav ul li {
    display: inline-block;
    float: none;
}

.table-list {
    display: flex;
}

nav ul li:hover,
nav ul li.active {
    background: transparent;
}

.nav-wrapper.menu-category a {
    position: relative;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: .5rem;
}

nav .button-collapse i {
    font-size: 2.1rem;
}

.news-category-dropdown {
    text-align: right;
    display: inline-block;
    margin: 0;
    list-style: none;
}

.news-category-dropdown li {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.news-category-dropdown li ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    z-index: 999;

    transition: all 0.3s;
}

.news-category-dropdown .active>a {
    color: #000 !important;
    background: #ededed;
}

.news-category-dropdown li ul:after {
    -moz-border-bottom-colors: #fff;
    -moz-border-left-colors: transparent;
    -moz-border-right-colors: transparent;
    -moz-border-top-colors: transparent;
    border-color: transparent transparent #fff;
    border-image: none;
    border-style: solid;
    border-width: 10px;
    bottom: 100%;
    content: "";
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute;
}

.news-category-dropdown li ul li {
    display: list-item;
    overflow: hidden;
    line-height: normal;
    border-bottom: 1px solid #f5f5f5;
}

.news-category-dropdown .fa-angle-down {
    float: left;
    line-height: 60px;
    height: 55px;
    font-size: 20px;
    padding-right: 15px;
}

header.header-fix .news-category-dropdown .fa-angle-down {
    font-size: 17px;
}

.news-category-dropdown li ul li a {
    color: #4e4e4e;
    padding: 12px 15px !important;
    line-height: 1.42857;
    font-size: 14px;
}

.news-category-dropdown li ul li:hover {
    background-color: #f2f2f2;
}

.news-category-dropdown li ul li a:hover {
    color: #000 !important;
}

.menu-category .news-category-dropdown li ul a:after {
    display: none;
}

.news-category-dropdown li ul li:last-child {
    border: none;
}

.news-category-dropdown li:hover ul {
    opacity: 1;
    visibility: visible;
}

.header-fix .news-category-dropdown li:hover ul {
    top: 55px;
}

.logo {
    padding: 0;
    text-align: center;
    line-height: 0;
    width: 190px;
    margin: auto;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.st0 {
    fill: #E5E5E5;
}

.footer-button .mdi-action-history .st0 {
    fill: #252525;
}

.footer-button .mdi-action-history:hover .st0 {
    fill: #E5E5E5;
}

.st1 {
    fill: #db2d29;
}

.logo>a {
    display: inline-block;
    line-height: 0;
}

.header-fix .logo svg {
    height: 70px;
}

.brand-logo {
    color: #fff;
    font-size: 26px;
    text-align: center;
    border-bottom: 1px solid #ff4181;
    font-style: italic;
    font-weight: 500;
}

.brand-logo>span {
    color: #ff4181;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    text-shadow: 2px 2px 2px #e02262;
}

.right {
    float: right;
}

.header-dropdown {
    float: left;
    margin-left: 30px;
}

.button-collapse .mdi-navigation-menu {
    color: #95a2e7;
    font-size: 30px;
    transition-duration: 0.3s;
}

.button-collapse .mdi-navigation-menu:hover {
    color: #fff;
    transition-duration: 0.3s;
}

.header-dropdown .dropdown-button.btn {
    background: transparent;
    box-shadow: none;
    border: medium none;
    display: initial;
    font-size: 18px;
    text-align: center;
    color: #95a2e7;
    margin: 0;
    text-transform: capitalize;
    transition-duration: 0.3s;
}

.header-dropdown .dropdown-button.btn:hover {
    color: #fff;
    transition-duration: 0.3s;
}

.header-dropdown .mdi-navigation-arrow-drop-down {
    top: 7px;
    position: relative;
    font-size: 29px;
}

.header-dropdown .dropdown-content li>a,
.dropdown-content li>span {
    font-size: 14px;
    color: #444;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f5f5;
}

.header-dropdown .dropdown-content.select-dropdown {
    margin: 0 0 0 25px;
    z-index: 99999;
    left: 20% !important;
}

.dropdown-content li {
    clear: both;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    line-height: 1.5rem;
    width: 100%;
    text-align: right;
    text-transform: none;
}

.header-dropdown .dropdown-content li>a,
.dropdown-content li>span {
    font-size: 14px;
    color: #444;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-content {
    background-color: #FFFFFF;
    margin: 0;
    display: none;
    min-width: 100px;
    max-height: 650px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
    will-change: width, height;
}

.header-dropdown .dropdown-content {
    top: 70px !important;
    z-index: 99999;
    width: 150px !important;
}

.searchbox .searchbox-input {
    position: absolute;
    top: 0;
    right: 0;
    left: 15px;
    outline: 0;
    width: 190px;
    margin: 0;
    border: none;
    padding-bottom: 0;
    height: 100%;
    padding: 0
}

.header-top .col.l4.col.m4.col.s12.pull-right {
    position: relative;
}

.searchbox input[type="text"]:focus {
    border: none !important;
    box-shadow: none !important;
}

.searchbox-open .searchbox-input::-moz-placeholder {
    color: #000 !important;
}

.searchbox-open .searchbox-input::-webkit-input-placeholder {}

.searchbox-open .searchbox-input:-ms-input-placeholder {}

.searchbox-input::-webkit-input-placeholder {
    color: transparent;
}

.searchbox-input::-moz-placeholder {
    color: transparent;
}

.searchbox-input:-ms-input-placeholder {
    color: transparent;
}

.searchbox-submit {
    color: transparent !important;
}

.searchbox-icon,
.searchbox-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    transition-duration: 0.3s;
}

header.header-fix .searchbox-icon {
    background: #252525;
}

.searchbox-icon svg {
    height: 15px;
    width: 15px;
}

.searchbox-icon .mdi-action-search {
    font-size: 26px;
    font-weight: bold;
    line-height: 41px;
}

.searchbox-open .searchbox-icon {
    background: #db2d29 !important;
    box-shadow: none !important;
}

.searchbox {
    width: 0%;
    overflow: hidden;
    position: absolute;
    left: 40px;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

header.header-fix .searchbox {
    top: 10px;
}

.searchbox.cart {
    right: 60px;
}

.searchbox-open {
    width: 250px;
    background: #fff;
}

.login {
    color: #95a2e7;
    font-size: 18px;
    margin-right: 100px;
    padding-top: 3px;
    transition-duration: 0.3s;
}

.login:hover {
    color: #fff;
    transition-duration: 0.3s;
}

.search.cart {
    right: 80px;
}

.button-collapse {
    background-color: transparent !important;
    font-size: 17px;
    height: 20px;
    width: auto;
    line-height: 28px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.button-collapse .bar {
    position: absolute;
    height: 3px;
    background-color: #fff;
    overflow: hidden;
    width: 25px;
    border-radius: 2px;
    transition: transform .35s ease-in-out;
}

.button-collapse .bar:nth-child(1) {
    top: 0;
}

.button-collapse .bar:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #A6ABAB;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.button-collapse .bar:nth-child(2) {
    top: 6px;
}

.button-collapse .bar:nth-child(2):after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.button-collapse .bar:nth-child(3) {
    top: 12px;
}

.button-collapse .bar:nth-child(3):after {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

nav ul a {
    color: #fff;
    display: block;
}

nav ul a {
    padding: 12px 15px;
    font-weight: bold;
}

.header_icon {
    width: .75rem;
    height: .75rem;
    fill: #fff;
}

.side-nav {
    z-index: 99999;
}

.logo-title {
    color: #db2d29;
}

.side-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.side-nav .dropdown-menu,
.side-nav .collapsible li {
    border: none;
}

.side-nav .collapsible-body {
    border-bottom: 1px solid #ddd;
}

.side-nav a {
    padding: 1rem;
    display: flex;
}

.side-nav a:hover,
.side-nav .active a {
    color: #db2d29;
}

.side-nav a:hover {
    background: #f8f8f8;
}

.side-nav .collapsible-body li.active {
    background: transparent;
}

.side-nav .collapsible-body li.active a,
.side-nav .collapsible-body li a:hover {
    color: #FF0000;
    font-weight: bold;
}

.side-nav .collapsible-header .fa-angle-right {
    font-size: 16px;
    float: right;
    transition-duration: 0.5s;
    padding: 0;
}

.side-nav .collapsible-header.active .fa-angle-right {
    transform: rotate(90deg);
    transition-duration: 0.6s;
}

.side-nav .collapsible-header {
    border-bottom: 1px solid #f0f0f0;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    margin: 0;

}

.side-nav .collapsible-header:hover {
    background: #f8f8f8;
}

.side-nav .collapsible-header.active,
.side-nav .collapsible-header:hover {
    font-weight: bold;
}

.side-nav .waves-effect {
    display: inherit;
}

.side-nav .collapsible-body li a {
    margin: 0;
    padding-left: 60px;
}

.side-nav .collapsible-header i {

    margin-right: 0;
}

.side-nav .fa {
    padding: 0 0 0 10px;
    color: #444;
}

.side-nav .collapsible-body .fa {
    padding: 0 5px 0 0;
}

.side-nav .collapsible-body li {
    border-bottom: 1px solid #f0f0f0;
}

.slide_icon svg {
    width: 9px;
    height: 9px;
}

.side-nav a:hover .slide_icon svg {
    fill: #db2d29;
}

.button-collapse {
    float: right;
}

.button-collapse.ln-button {
    display: flex;
    align-items: center;
}

.ln-button.aside-img {
    width: 35px;
    height: 35px;
}

.ln-button.aside-img img {
    width: 100%;
}

.button-collapse.ln-button svg {
    width: 30px;
    height: 30px;
}

.button-collapse.ln-button span {
    font-size: 20px;
    color: #fff;
    padding-right: 10px;
}

nav.nav-wrap {
    background-color: #db2d29;
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes slideDown {
    0% {
        -moz-transform: translateY(-100%)
    }

    100% {
        -moz-transform: translateY(0)
    }
}

@-o-keyframes slideDown {
    0% {
        -o-transform: translateY(-100%)
    }

    100% {
        -o-transform: translateY(0)
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.animated.slideDown {
    -webkit-animation-name: slideDown;
    -moz-animation-name: slideDown;
    -o-animation-name: slideDown;
    animation-name: slideDown
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-100%)
    }
}

@-moz-keyframes slideUp {
    0% {
        -moz-transform: translateY(0)
    }

    100% {
        -moz-transform: translateY(-100%)
    }
}

@-o-keyframes slideUp {
    0% {
        -o-transform: translateY(0)
    }

    100% {
        -o-transform: translateY(-100%)
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-100%)
    }
}

.animated.slideUp {
    -webkit-animation-name: slideUp;
    -moz-animation-name: slideUp;
    -o-animation-name: slideUp;
    animation-name: slideUp
}

nav .nav-wrapper {
    position: relative;
    height: 100%;
}

.side-nav {
    position: fixed;
    width: 22rem;
    right: -130%;
    top: 0;
    margin: 0;
    height: 100%;
    height: calc(100% + 60px);
    height: -moz-calc(100%);
    padding-bottom: 60px;
    font-size: 15px;
    z-index: 999;
    overflow-y: auto;
    will-change: inherit;
    transition: right .5s ease-in-out;
}

.side-nav.open {
    right: 0
}

.fa-angle-aside:before {
    content: "\f104";
}

small {
    color: #707070;
    display: block;
}

#sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
    will-change: opacity;
}

#sidenav-overlay.open {
    opacity: 1;
    visibility: visible
}

.z-depth-1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.news-blog {
    position: relative;
}

img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.news-single img {
    width: auto;
}

.news-single .content .description img {
    width: 100% !important;
    height: auto !important;
}

.news-blog .image .responsive-img {
    display: inherit;
}

.news-blog .news-description {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
    -webkit-background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
    -ms-background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
    -o-background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
}

.video-home-title {
    padding: 20px;
    position: absolute;
    bottom: 50px;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
    -webkit-background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
    -ms-background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
    -o-background: rgba(0, 0, 0, 0) linear-gradient(transparent, rgba(0, 0, 0, 0.85)) repeat scroll 0 0;
}

.news-blog .news-time {
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 5px 10px;
}

.news-time {
    display: block;
    font-size: 13px;
}

.news-title>a {
    display: block;
}

.news-blog .news-title>a {
    color: #fff;
    font-size: 20px;
}

p {
    margin: 0;
    color: #8b8b8b;
}

b,
strong {
    font-weight: bold;
}

.news-content p {
    color: #8b8b8b;
    font-size: 14px;
}

.news-blog .news-content p {
    color: #fff;
}

.news-description {
    padding: 1rem;
}

.news-image a {
    display: flex;
}

.banner-flex a {
    display: flex;
}

.banner-flex img {
    min-height: 15rem;
}

.left-aside .average+.sidbar-box .tab_container {
    overflow-y: auto;
}

.left-aside .sidbar-box {
    height: auto;
}

.sidbar-box .tab_container::-webkit-scrollbar {
    width: 5px;
    /*background-color: #F5F5F5;*/
}

.sidbar-box .tab_container::-webkit-scrollbar-thumb {

    background-color: #db2d29;
}

.sidebar-title {
    color: #fff;
    background-color: #db2d29;
    font-size: 17px;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.sidbar-box .sidebar-title {
    border: 0;
}

.aside_box .news-sidebar {
    padding: .75rem;
    display: flex;
    flex-direction: column;
}

.news-sidebar .news-box .box_content {
    display: flex;
}

.news-box .image {
    width: 30%;
    flex: 0 0 auto;
}

.news-box a {
    width: 100%;
    display: flex;
}

.news-box .news-category>a {
    font-size: 14px;
    color: #db2d29;
}

.news-sidebar .news-box:last-child {
    border: none;
}

.side-articles .news-box a {
    height: 100%;
}

.side-articles .news-box img {
    min-height: 5rem;
    object-fit: contain;
    object-position: top;
}

.icon-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-hover .icon-hov {
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.5);
    color: #db2d29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
}

.icon-hover:hover .fa {
    background: #db2d29;
    color: #fff;
}

.sidbar-box.play_icon {
    padding: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 99;
}

.play-back .news-sidebar {
    margin: 0 -15px;
}

.sidbar-box .play-back {
position: absolute;
    bottom: -3rem;
    left: -3.5rem;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    z-index: -1;
    opacity: 0.05;
    color: #000;
    width: 12rem;
    height: 12rem;
    text-align: center;
    border-radius: 50%;
    border: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidbar-box .play-back svg {
    width: 4rem;
    height: 8rem;
}

.title {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd
}

.title a {
    display: inline-flex;
}

.title .title-text {
    display: inline-flex;
    padding: 6px 15px 4px;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.english-block .row {
    direction: ltr;
    text-align: left;
}

footer.page-footer {
    margin: 0;
    background-color: #252525;
    padding-top: 0;
    margin-top: 100px;
    position: relative;
}

footer.page-footer .col-xs-12 {
    position: relative;
}

.footer-button {
    position: absolute;
    width: 100%;
}

.footer-button .mdi-action-history {
    color: #db2d29;
    background-color: #fff;
    border-radius: 1rem;
    bottom: 3rem;
    height: 6rem;
    width: 20rem;
    position: relative;
    text-align: center;
    cursor: default;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -pie-transition-duration: 0.3s;
    display: inline-block;
    line-height: normal;
    z-index: 99;
}

.page-footer .contact-menu ul {
    width: 100%
}

.footer-title {
    font-size: 16px;
}

ul li {
    list-style-type: none;
}

.center,
.center-align {
    text-align: center;
}

footer.page-footer .footer-copyright {
    padding: 2rem 0;
    background-color: #000;
}

.social-icon .fa {
    color: #fff;
    font-size: 18px;
    margin-left: 20px;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -pie-transition-duration: 0.3s;
}

.footer-menu>ul {
    margin: 0;
    width: 100%;
    text-align: right;
    padding: 0;
    border: none !important;
}

.footer-menu li {
    display: inline-block;
}

.footer-menu a {
    margin-left: 20px
}

.page-footer ul li a {
    color: #fff;
    display: inline-block;
    padding: 5px 0;
}

.middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-button .mdi-action-history svg {
    width: 80%;
}

footer.page-footer .container {
    position: relative;
}

.line-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.line-list .line-item {
    width: 12.5%;
    float: right;
    height: 100%;
}

.line-list .line-item:nth-child(1) {
    background-color: #fff;
}

.line-list .line-item:nth-child(2) {
    background-color: #fe361b;
}

.line-list .line-item:nth-child(3) {
    background-color: #9f1cba;
}

.line-list .line-item:nth-child(4) {
    background-color: #189b5a;
}

.line-list .line-item:nth-child(5) {
    background-color: #252525;
}

.line-list .line-item:nth-child(6) {
    background-color: #fe361b;
}

.line-list .line-item:nth-child(7) {
    background-color: #9f1cba;
}

.line-list .line-item:nth-child(8) {
    background-color: #189b5a;
}

footer.page-footer .dept {
    padding-top: 95px;
}

footer.page-footer .row {
    padding-bottom: 50px;
}

footer.page-footer .footer-copyright .row {
    padding-bottom: 0;
}

.subscribe .title h2 {
    color: #db2d29;
    margin: 0;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: normal;
}

.subscribe input[type="text"] {
    background-color: #fff;
    /*padding: 0 15px;*/
    margin: 0;
    width: 92%;
}

.offset-top-20 {
    margin-top: 20px;
}

.offset-bottom-20 {
    margin-bottom: 20px;
}

.offset-top-70 {
    margin-top: 70px;
}

/********** Social **********/
.social {
    position: absolute;
    top: 5px;
    left: 0;
    float: left;
    margin-left: 7px;
    overflow: hidden;
    height: 90%;
}

/*.social img {
    float: left;
    padding: 1px;
    float: left;
    height: 30px;
}*/
.social_icons li {
    background-image: url(../images/sprites.png);
    background-repeat: no-repeat;
}

.social_icons .fb {}

/*facebook*/
.social_icons .twitter {}

/*twitter **********/
.social_icons .yt {}

/*youtube*/
.social_icons .feeds {}

/*feeds **********/
.social_icons {
    height: 0;
    position: absolute;
    width: 100%;
    direction: ltr;
    z-index: 10000;
    left: 10px;
}

.social_icons ul {
    position: fixed;
    top: 230px;
    list-style: none;
}

.social_icons li {
    width: 35px;
    height: 38px;
    margin: 0 0 5px;
}

.social_icons .fb {
    background-position: 0 0;
}

.social_icons .twitter {
    background-position: 0 -39px;
}

.social_icons .gplus {
    background-position: -37px -39px;
}

.social_icons .yt {
    background-position: 0 -78px;
}

.social_icons .feeds {
    background-position: 0 -117px;
}

.social_icons .insta {
    background-position: -37px 0;
}

.news-blog .news-category {
    position: absolute;
    width: 100%;
    padding: 0 25px;
    top: 20px;
    z-index: 99;
}

.news-blog .news-category span {
    color: #fff;

    padding: 0 15px 5px;
    border-radius: 2px;
    background-color: #db2d29;
}

.child_item .col-xs-12:nth-child(2) {
    margin-top: 20px;
}

.header-fix .st0,
.header-fix .st1 {
    fill: #fff
}


.inside-wrapper .title,
.inside-wrapper .title a {
    color: #db2d29;
}

.inside-wrapper .title a:hover {
    color: #252525;
}

.pages {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: .75rem;
    background-color: #fff;
}

.pagination li {
    display: flex;
}

.pagination>li>a,
.pagination>li>span {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    background-color: #fff;
    color: #26211d;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    background-color: #fff;
    color: #0b66a3;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    margin-left: 0;
}

.pagination li span.current {
    color: #db2d29;
}

/* news page */
.news-single {
    overflow: hidden;
}

.news-single .btn-floating {
    background: none repeat scroll 0 0 #252525;
    float: right;
    height: 70px;
    line-height: 80px;
    margin-top: -40px;
    position: absolute;
    right: 7%;
    width: 70px;
}

.news-single .btn-floating:hover {
    background: #db2d29;
}

.news-single .btn-floating .fa {
    color: #e6e7e9;
    font-size: 25px;
}

.news-single p {
    margin-top: .5rem;
}

.news-single {
    margin-bottom: 20px;
}

.news-single .content {
    padding: 30px 30px 0 30px;
}

.content .description a {
    color: #db2d29;
}

.content .description a:hover {
    color: #000000;
}

.news-single .news-category {
    color: #f63e7c;
    font-weight: 500;
    margin: 5px 0 0 0;
    font-size: 18px;
}

.news-single .description p {
    font-weight: 300;
    margin: 0;
    color: #444;
    font-size: 18px;
    text-align: justify;
}

.description * {
    font-size: 17px !important;
    line-height: 26px !important;
    text-align: justify !important;
    font-family: 'halvatica', sans-serif !important;
}

.news-single .news-detail {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.news-single .news-detail a {
    font-size: 14px;
    font-weight: 400;

    display: inline-block;
}

.news-single .news-detail span {
    margin-left: 30px;
}

.news-single .news-detail .fa,
.news-single .news-detail .mdi-communication-messenger {
    padding-right: 5px;
}

.news-single img {
    margin: 0 auto
}

/* News Tags */
.tag-cloud .show-more-link {
    margin: 10px 0 0 0;
}

.tag-cloud.tag-title {
    position: relative;
    padding: 10px 23px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tag-1 {
    font-size: 13px;
    line-height: 18px;
    border: 1px solid #e4e4e4;
    display: inline-block;
    margin: 0 4px 3px 0;
}

.tag-1.active {
    background: #db2d29;
    border: 1px solid #db2d29 !important;
    color: #FFFFFF !important;
}

.tag-1.active:hover span {
    background: #db2d29;
    color: #252525 !important;
}

.tag-1 span {
    padding: 3px 10px 10px;
    float: right;
    font-size: 15px !important;
}

.latest-news-sidebar-title {
    font-size: 18px;
    padding: .75rem 1rem;
    color: #db2d29;
    font-weight: bold;
    border-bottom: 1px solid #eaeaea;
}

.latest-news-sidbar-box ul li a {
    display: inline-block;
    padding: 1rem;
}

.latest-news-sidbar-box ul li:not(:last-child) a {
    border-bottom: 1px solid #f0f0f0;
}

.latest-news-sidbar-box a:hover {
    color: #db2d29;
}

/* News Comment */
.comment {
    background-color: #fff;
    overflow: hidden;
    margin-top: 30px;
}

.comment ul {
    margin: 35px 0 0 0;
}

.comment-box {
    border-top: 2px solid #f63e7c;
    padding: 25px 0;
    overflow: hidden;
}

.comment-box.child {
    margin-left: 40px;
    padding-left: 40px;
}

.blue {
    background-color: blue;
}

.green {
    background-color: green;
}

.news-blog.solid {
    background-color: #db2d29;
}

.vote-block {
    position: fixed;
    left: 15px;
    bottom: 30px;
    width: 260px;
    background-color: #db2d29;
    text-align: center;
    z-index: 99;
    padding: 20px;
    cursor: pointer;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.8s cubic-bezier(.5, 0, 0, 1);
}

.vote-icon svg {
    height: 25px;
    width: 25px;
}

.vote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-icon span {
    color: #fff;
    margin-right: 10px;
}

.vote-icon svg path {
    fill: #fff;
}

.vote-btn {
    display: inline-block;
    background-color: #252525;
    padding: 7px 25px;
    color: #fff;
    margin-top: 20px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.poll_question p {
    font-size: 17px;

}

.poll_answers {
    padding-bottom: 20px;
    color: #db2d29;
    font-family: Arial;

    font-weight: bold;
    text-align: right;
}

.poll_answers input {
    margin: 5px;
}

#poll_form input[type="submit"] {
    float: right;
}

.poll_answers label {
    font-family: Tahoma;
    font-weight: normal;
    color: #000000;
    font-size: 12px;
}

#poll_form .boxlook {
    padding: 5px 15px;
    margin: 0 auto;
    padding: 10px 30px;
    background-color: #252525;
    border: none;
    color: #fff;
    font-family: 'halvatica', Helvetica, sans-serif;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.percentage_poll {
    height: 5px;
    background-color: #db2d29;
    border-radius: 3px
}

.show_poll_block {
    display: block;
    padding: 15px 0 25px 0;
}

.hide_poll_block {
    display: none;
    border-bottom: solid 1px #db2d29;
}

.widget-text {
    width: 400px;
    position: fixed;
    bottom: 175px;
    left: 15px;
    background-color: #fff;
    z-index: 99999;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.widget-text {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
}

.widget-text.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

.title-default {
    padding: 15px 20px;
    text-align: center;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #db2d29;
}

.widget-text .title-default {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close_icon {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.title-default a {
    color: #fff;
}

.widget-text .content {
    padding: 10px 30px 30px;
    display: inline-block;
    width: 100%;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    line-height: 20px;
    display: flex;
    color: #666;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #db2d29;
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.counter {
    display: inline-block;
    margin-top: 15px;
}

.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.tabs li {
    float: right;
    /*width: 50%;*/
    width: 100%;
    border-bottom: none;
    background: #252525;
}

.tabs li a .sidebar-title {
    color: #fff;
    padding: 0;
    border: 0;
}

.tabs li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;

    text-align: center;
    text-decoration: none;
}

.tabs li a:hover {
    background: #db2d29;
}

.tabs li a.active,
.tabs li a.active:hover {
    background: #db2d29;
}

.tabs li a.active .sidebar-title {
    color: #fff;
    text-align: center;
}

.description .videodetector iframe {
    width: 100%;
    height: 400px;
}

/* blockquote */

.blockquote {
    background: url("../images/breakingnews-bg.png");
    color: #fff;
    font-size: 18px;
    padding: 25px 40px;
}

.blockquote>span {
    font-weight: 500;
    text-transform: uppercase;
}


.blockquote h3 {
    margin: 0px;
    padding: 0px;
}

.blockquote h4 {
    margin: 20px;
}

.blockquote a h4 {
    color: #ffffff;
}

.blockquote a h4:hover {
    color: #252525;
}

blockquote {
    margin: 20px 0;
    padding-left: 1.5rem;
    border-left: 5px solid #EF9A9A;
}

.blink_me {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/************ Follow Us ************/

.follow-us__title {
    color: #404040;
}

.follow-us__list {
    margin-top: 12px;
}

.follow-us__list-item {
    float: right;
    padding-bottom: 8px;
    width: 50%;
}

.follow-us__list-item_news_page {
    float: right;
    padding-bottom: 8px;
    width: auto;
    margin: 0 20px;
}

.follow-us__list-item-icon {
    margin-left: 8px;
}

.follow-us__list-item-label {
    vertical-align: text-bottom;
}

.follow-us__list-item--block {
    width: 100%;
}

.follow-us__list-item--block .follow-us__list-item-link {
    border-style: none;
    margin-left: 0;
    text-align: right;
}

.follow-us__list-item-link {
    border-width: 0px;
    border-bottom-width: 3px;
    border-style: solid;
    display: block;
    padding: 6px;
    text-align: center
}

.follow-us__list-item-link.follow-us__list-item-link--facebook,
.follow-us__list-item-link.follow-us__list-item-link--elt_facebook {
    border-bottom-color: #3c5a98
}

.follow-us__list-item-link.follow-us__list-item-link--google_plus {
    border-bottom-color: #dc4b38
}

.follow-us__list-item-link.follow-us__list-item-link--instagram {
    border-bottom-color: #406e95
}

.follow-us__list-item-link.follow-us__list-item-link--telegram {
    border-bottom-color: #3b9adc
}

.follow-us__list-item-link.follow-us__list-item-link--twitter,
.follow-us__list-item-link.follow-us__list-item-link--twitter_ua,
.follow-us__list-item-link.follow-us__list-item-link--twitter_ru {
    border-bottom-color: #47c7fa
}

.follow-us__list-item-link.follow-us__list-item-link--whatsapp {
    border-bottom-color: #1a870f
}

.follow-us__list-item-link.follow-us__list-item-link--youtube {
    border-bottom-color: #b31217
}

.follow-us__list-item-link:hover,
.follow-us__list-item-link:focus {
    color: #1167a8
}

.follow-us__list-item-link:hover svg,
.follow-us__list-item-link:focus svg {
    fill: #1167a8
}

.follow-us__list-item--social:nth-child(even) .follow-us__list-item-link {
    margin-left: 0
}

.follow-us img {
    width: 80px;
    height: 80px;
}

.hr-thick,
.spacer,
.hr {
    clear: both;
    height: 1px;
    width: 100%;
    background: #dcdcdc;
    display: inline-flex;
}


.sidbar-box-height {
    height: 100%;
}

.footer-copyright .title {
    float: right;
    display: block;
    margin-left: 50px;
}

.subscribe {
    padding: 10px 10px 25px;

}

.center {
    text-align: center;
}

.files-title {
    font-size: 14px;
    padding: 5px 12px 10px;
    background: #db2d2914;
}

.watch-more {
    margin-bottom: 20px;
    text-align: center;
}

.watch-more a {
    padding: 5px 20px 10px;
    background: #db2d29;
    color: #fff;
}

.side-articles .news-box {
    display: flex;
    gap: .75rem
}

.push-bottom {
    margin-bottom: 50px;
}

.home-news-4-boxes .sidebar-title {
    margin-bottom: 10px;
    background-color: #fff;
}

.home-news-4-boxes .news-box {
    margin-bottom: 15px;
}

.home-news-4-boxes .news-box .image {
    margin-top: 5px;
}

.slick-slide {
    float: right;
}

.slick-list {
    height: 100%;
}

.slick-track {
    height: 100%;
}

.slick-arrow {
    position: absolute;
    top: 17px;
    border-radius: 2px;
    background-color: #db2d29;
    border: none;
    width: 32px;
    height: 32px;
    z-index: 9;
    padding: 0;
}

.slick-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.slick-arrow:hover {
    outline: none;
    background-color: #252525;
}

.slick-arrow-btn svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.dept_slider {
    width: 100%;
    overflow: hidden;
}

.dept_slider .slick-list {
    margin-left: -10px;
}

.dept_slider .slick-slide {
    margin-left: 10px;
}

.slick-slide {
    position: relative;
}

.dept_slider .slick-arrow {
    top: 49%;
    background: rgba(0, 0, 0, 0.4);
}

.dept_slider .slick-next.slick-arrow {
    left: 3px;
}

.dept_slider .slick-prev.slick-arrow {
    right: 3px;
}

.color-white {
    color: #fff;
}

.color-red {
    color: #db2d29;
}

.color-black {
    color: #000;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-200 {
    background-color: #f8fafd;
}

.bg-black {
    background-color: #000;
}

.bg-black-1 {
    background-color: #252525;
}

.bg-light-gray {
    background-color: #f1f1f1;
}

.bg-red {
    background-color: #db2d29;
}

.border-gray-200 {
    border: 1px solid #ddd;
}
.transition {
    transition: all 0.3s ease-in;
}

.hover-red:hover {
    color: #fff;
    background-color: #db2d29;
}

.swiper-button {
    width: 1.85rem;
    height: 1.85rem;
}

.swiper-button svg {
    width: .75rem;
    height: .75rem;
}

.tl-buttons {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.nav-in .tl-buttons {
    top: 1rem;
    left: 1rem;
}

.nav-out .tl-buttons {
    top: 0;
    left: 0;
}

.tl-buttons .swiper-button {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto !important;
    right: auto !important;
    margin: 0;
}

.h-col .news-image {
    width: 35%;
}

.h-content {
    padding: 1rem 0;
}

.line {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
}

.line-1 {
    stroke-dasharray: 4.1;
    stroke-dashoffset: 4.1;
    animation-name: drawLine1;
}

.line-2 {
    stroke-dasharray: 8.1;
    stroke-dashoffset: 8.1;
    animation-name: drawLine2;
    animation-delay: 0.6s;
}

/* تم ضغط النقاط الزمنية لتبدأ الدورة الجديدة فور انتهاء القديمة */
@keyframes drawLine1 {
    0% {
        stroke-dashoffset: 4.1;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    40%,
    60% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    /* وقت عرض الخطوط */
    100% {
        stroke-dashoffset: 4.1;
        opacity: 0;
    }

    /* ينتهي تماماً عند 100% لتبدأ الدورة التالية فوراً */
}

@keyframes drawLine2 {
    0% {
        stroke-dashoffset: 8.1;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    40%,
    60% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 8.1;
        opacity: 0;
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.pickmeup {
    background: #f8fafd;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    display: none;
    width: 100%;
    padding-bottom: 15px;
    border-radius: .75rem
}

.pickmeup * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.pickmeup .pmu-instance {
    display: inline-block;
    padding: 1rem;
    text-align: left;
}

.pickmeup .pmu-instance .pmu-button {
    color: #252525;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.pickmeup .pmu-instance .pmu-today,
.pickmeup .pmu-instance .pmu-today:hover {
    background: #db2d29;
    color: #fff !important;
}

.pickmeup .pmu-instance .pmu-button:hover {
    color: #db2d29;
}

.pickmeup .pmu-instance .pmu-not-in-month {
    color: #8d9aa5;
}

.pickmeup .pmu-instance .pmu-disabled,
.pickmeup .pmu-instance .pmu-disabled:hover {
    color: #333333;
    cursor: default;
}

.pickmeup .pmu-instance .pmu-selected {
    background: #db2d29;
    color: #fff;
}

.pickmeup .pmu-instance .pmu-selected:hover {
    color: #fff;
}

.pickmeup .pmu-instance .pmu-not-in-month.pmu-selected {
    background: #db2d29;
}

.pickmeup .pmu-instance nav {
    color: #db2d29;
    display: flex;
    align-items: center;
    padding-bottom: .5rem;
    justify-content: space-between;
}

.pickmeup .pmu-instance nav *:first-child :hover {
    color: #88c5eb;
    text-align: center;
}

.pickmeup .pmu-instance nav .pmu-prev,
.pickmeup .pmu-instance nav .pmu-next {
    display: none;
    width: 1em;
}

.pickmeup .pmu-instance .pmu-years *,
.pickmeup .pmu-instance .pmu-months * {
    display: inline-block;
    width: 3.5em;
}

.pickmeup .pmu-instance .pmu-day-of-week {
    color: #252525;
    text-transform: uppercase;
    cursor: default;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding: 5px 0;
    display: flex;
    flex-direction: row-reverse;
    gap: .5rem;
}

.pickmeup .pmu-instance .pmu-day-of-week *,
.pickmeup .pmu-instance .pmu-days * {
    display: inline-block;
    line-height: 30px;
    width: 40px;
    height: 32px;
    text-align: center;
    border-radius: .5rem;
}

.pickmeup .pmu-instance .pmu-day-of-week * {
    /*line-height: 1.8em;
	font-weight: 600;*/
    font-weight: 600;
    font-size: 14px;
}

.pickmeup .pmu-instance:first-child .pmu-prev,
.pickmeup .pmu-instance:last-child .pmu-next {
    display: inline-flex;
    color: #db2d29;
}

.pickmeup .pmu-instance:first-child .pmu-prev {
    transform: rotate(-180deg);
}

.pickmeup .pmu-instance:first-child .pmu-next {
    transform: rotate(-180deg);
}

.pickmeup .pmu-instance:first-child .pmu-month,
.pickmeup .pmu-instance:last-child .pmu-month {
    width: 13em;
    color: #db2d29;
}

.pickmeup .pmu-instance:first-child:last-child .pmu-month {
    width: 12em;
    font-weight: bold;
    text-transform: uppercase;
    display: table-cell;
}

.pickmeup:not(.pmu-view-days) .pmu-days,
.pickmeup:not(.pmu-view-days) .pmu-day-of-week,
.pickmeup:not(.pmu-view-months) .pmu-months,
.pickmeup:not(.pmu-view-years) .pmu-years {
    display: none;
}

.pickmeup .pmu-instance .pmu-button a:hover {
    color: #FFFFFF;
}

.pickmeup .pmu-instance .pmu-selected a {
    color: #fff;
}

@media only screen and (min-width: 992px) {

    .hide-on-med-and-up,
    .nav-logo,
    .back-icon,
    nav.nav-wrap .social-icon {
        display: none !important;
    }

    .top-header {
        padding: 15px 0;
        background-color: #db2d29;
    }

    .show-on-large {
        display: initial !important;
    }

    .nav-wrapper.menu-category a:after {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 0;
        height: 4px;
        background-color: #252525;
        content: "";
        transition: width 0.5s;
        -webkit-transition: width 0.5s;
        -ms-transition: width 0.5s;
        -pie-transition: width 0.5s;
        z-index: 9999;
    }

    .nav-wrapper.menu-category a:hover:after,
    .nav-wrapper.menu-category .active a:after {
        width: 100%;
    }

    header.header-fix .nav-wrapper.menu-category a {
        color: #444;
    }

    header.header-fix .nav-wrapper.menu-category ul li ul li ul li a {
        color: #fff;
    }

    header.header-fix .news-category-dropdown li ul {
        background-color: #db2d29;
    }

    header.header-fix .news-category-dropdown li ul:after {
        border-color: transparent transparent #db2d29;
    }

    .hidden-md {
        display: none !important;
    }
}

@media only screen and (min-width: 1200px) {
    .offset-top-lg {
        margin-top: 0
    }
}

@media only screen and (min-width: 1440px) {
    nav ul a {
        padding: 12px 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media only screen and (max-width: 1200px) {
    .title {
        font-size: 22px;
    }

    .social-icon .fa {
        margin-top: 30px;
    }

    .footer-menu a {
        margin-top: 20px;
    }

    .header-top small {
        font-size: 13px;
    }
}

@media only screen and (max-width: 991px) {
    .header-grid {
        display: flex;
    }

    nav .nav-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        overflow: hidden;
        margin: 0 auto;
        padding: 1rem 0;
    }

    .nav-menu {
        position: relative;
        overflow-y: auto;
    }

    .button-collapse.mn-button {
        width: 86px;
        display: flex;
        align-items: center;
    }

    .top-header {
        padding: 15px;
        background-color: #db2d29;
    }

    .menu-text {
        color: #fff;

        float: right;
        padding-right: 35px;
        top: -4px;
        position: relative;
    }

    nav.nav-wrap {
        position: fixed;
        overflow-y: auto;
        overflow-x: hidden;
        top: 0;
        left: -100%;
        transition: all 0.7s cubic-bezier(.5, 0, 0, 1);
        width: 100%;
        height: 100dvh;
        background: #000;
        z-index: 11;
    }

    nav.nav-wrap.open {
        left: 0
    }

    nav.nav-wrap ul li {
        display: block;
        min-width: 300px;
        position: relative;
    }

    nav.nav-wrap .news-category-dropdown li ul li {
        min-width: auto
    }

    header.header-fix .button-collapse.mn-button {
        margin-top: 20px;
    }

    header.header-fix .button-collapse.mn-button .bar {
        background-color: #db2d29
    }

    header.header-fix .menu-text {
        color: #db2d29;
    }

    .back-icon {
        position: absolute;
        top: 20px;
        right: 18px;
        width: 15px;
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 25px;
        z-index: 99;
        cursor: pointer;
    }

    .line.vertical {
        position: relative;
    }

    .line.vertical.left {
        display: table-cell;
        width: 1px;
        padding-left: 0;
        height: 100%;
        transform: translateX(-22px);
    }

    .line.vertical .in {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        right: 0;
    }

    .line.vertical .in .color {
        position: absolute;
        height: 0;
        left: 0;
        width: 1px;
        background: #d2d2d2;
        animation: effectLinevertical 2s cubic-bezier(.5, 0, 0, 1) forwards;
        animation-delay: 2s;
    }

    .line.vertical .in .color {
        animation: none;
        transition: all 1.5s cubic-bezier(.5, 0, 0, 1);
    }

    .line.vertical.fromBottom .in .color {
        bottom: 0;
    }

    nav.nav-wrap.open .line.vertical .in .color {
        height: 100%;
        animation: none;
    }

    .line.vertical.left .in .color {
        background: #3c3c3b;
        transform: translateX(4px);
    }

    .line.vertical.right {
        display: table-cell;
        width: 1px;
        padding-left: 0;
        height: 100vh;
        float: none;
        transform: translateX(0px);
    }

    .line.vertical.right .in .color {
        background: #3c3c3b;
        transform: translateX(4px);
    }

    .table-list {
        flex-direction: column;
        gap: 1rem;
    }

    nav.nav-wrap a {
        padding: 0;
    }

    nav.nav-wrap .nav-wrapper ul li .line.horizontal {
        position: absolute;
        left: 50%;
        margin-left: -50vw;
        width: 100vw;
        height: 1px;
    }

    nav.nav-wrap .nav-wrapper ul li .line.horizontal.top {
        top: 0;
    }

    .line.horizontal .in {
        position: absolute;
        width: 100vw;
        height: 1px;
        left: 50%;
        margin-left: -50vw;
        z-index: 0;
    }

    .line.horizontal .in .color {
        position: absolute;
        width: 0;
        height: 1px;
        background: #d2d2d2;
        top: 0;
        animation: effectLinehorizontal 2.s cubic-bezier(.5, 0, 0, 1) forwards;
        animation-delay: 2s;
    }

    nav.nav-wrap .line.horizontal .in .color {
        animation: none;
        transition: all 1.5s cubic-bezier(.5, 0, 0, 1);
    }

    nav.nav-wrap .nav-wrapper ul li .line.horizontal .in .color {
        background: #3c3c3b;
        transform: translateX(4px);
    }

    nav.nav-wrap.open .line.horizontal .in .color {
        width: 100%;
        animation: none;
    }

    nav.nav-wrap .nav-wrapper ul li .line.horizontal.bottom {
        bottom: 8px;
    }

    .line.horizontal.fromRight .in .color {
        right: 0;
    }

    nav.nav-wrap .nav-logo {
        max-width: 156px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    nav.nav-wrap .nav-logo a {
        padding: 0;
    }

    nav.nav-wrap .social-icon {
        position: absolute;
        top: 35%;
        right: 0;
        width: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #db2d29;
        z-index: 99;
        padding: 20px 0;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
    }

    nav.nav-wrap .social-icon a {
        padding: 0;
        display: flex;
    }

    nav.nav-wrap .social-icon a .social_item {
        display: flex;
    }

    nav.nav-wrap .social-icon a svg {
        width: 15px;
        height: 15px;
        fill: #fff;
    }

    nav.nav-wrap .social-icon .fa {
        margin-left: 0;
        margin-top: 0;
    }

    nav.nav-wrap .social-icon a+a {
        margin-top: 20px
    }

    /* nav.nav-wrap ul li.main-item:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: -100%;
        width: 100%;
        height: 8px;
        transition: right .5s ease-in-out;
        background-color: #db2d29;
    }

    nav.nav-wrap ul li.main-item:hover:after {
        right: 0
    } */

    nav.nav-wrap ul.table-list li.main-item a.table-link {
        color: #d2d2d2;
        opacity: 0;
        visibility: hidden;
        text-align: center;
        transition: opacity 0.5s ease-in-out;
        transition-delay: 0.5s;
    }

    nav.nav-wrap.open ul.table-list li.main-item a.table-link {
        opacity: 1;
        visibility: visible;
    }

    nav.nav-wrap ul li.main-item:hover a.table-link {
        color: #fff;
    }

    .subscribe {
        margin-bottom: 30px;
    }

    .subscribe .title {
        padding-top: 0;
    }

    .main_slider img {
        min-height: 20rem;
    }
}

@media (min-width:320px) and (max-width: 640px) {
    .blockquote {
        padding: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .hidden-xs {
        display: none !important;
    }

    .offset-top-sm-20 {
        margin-top: 20
    }

    .page-footer ul .footer-title:first-child {
        display: block;
        width: 100%;
    }

    .footer-title {
        margin: 0
    }

    .follow-us__list-item_news_page {
        margin: 0 10px;
    }

    .content .description .follow-us__list-item_news_page a {
        font-size: 15px !important;
    }

    .logo svg {
        width: 150px;
    }

    .title {
        font-size: 20px;
    }

    nav.nav-wrap .nav-logo {
        max-width: 140px;
    }

    .footer-button .mdi-action-history {
        width: 18rem;
    }
}

@media only screen and (max-width: 600px) {

    .hide-on-small-only,
    .hide-on-small-and-down {
        display: none !important;
    }

    header.header-fix .logo {
        width: 120px;
    }

    .news-blog .news-title>a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 425px) {

    .searchbox-icon,
    .searchbox-submit {
        width: 45px;
        height: 45px;
    }

    .searchbox-icon svg {
        height: 15px;
        width: 15px;
    }

    header.header-fix .searchbox {
        top: 12px;
    }

    .side-nav {
        width: 85%
    }

    .news-sidebar .news-box .box_content {
        margin: 0
    }

    .news-sidebar .news-box .box_content .image {
        float: none;
    }

    .news-sidebar .news-box .box_content .news-detail {
        padding: 0;
    }

    .sidbar-box.play-back:before {
        display: none
    }

    .follow-us__list-item_news_page {
        margin: 0 5px;
    }

    .share-block h2 {
        font-size: 18px;
    }

    .banner-flex img {
        min-height: 20rem;
    }
}