* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    direction: rtl;
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* @media (min-width: 768px) {
  .container {
    width: 750px;
  }
} */

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1300px) {
    .container {
        width: 1220px;
    }
}

/* Start Component  */
.over-lay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
    background-color: #0000008e;
}

/* //////////////////////////////// */
/* ////////////Slider////////////// */
/* //////////////////////////////// */
.slider-wrap {
    position: relative;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #ddd;
}

.slider-wrap .right-1,
.slider-wrap .left-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #960000;
    font-size: 20px;
    padding: 30px 5px;
    height: 100%;
    border-radius: 2px;
    background-color: #ccc;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
}

.slider-wrap .right-1:hover,
.slider-wrap .left-1:hover {
    background-color: #960000;
    color: #fff;
}

.product-slide .crates {
    padding: 10px;
    display: flex;
    overflow-x: scroll;
}

.product-slide .crates::-webkit-scrollbar {
    display: none;
}

.product-slide .crates .crate {
    /* width: 1115px; */
    display: flex;
    gap: 20px;
    padding: 15px 6px;
    flex: none;
}

.product-slide .box {
    max-width: 300px;
    display: flex;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.product-slide .image {}

.product-slide .title p {
    font-size: 14px;
}

.product-slide .title span {
    font-size: 12px;
    color: #acacac;
}

/* /////////////////////////////////////// */
/* /////////////Main Section///////////// */
/* ///////////////////////////////////// */
.main-section {
    display: grid;
    grid-template-areas: "content content content content content content content content side side side side ";
    gap: 40px;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .main-section {
        grid-template-areas: "content content content content" "side side side side";
    }
}

.main-section {
    padding-top: 40px;
}

.main-section .content {
    grid-area: content;
}

.main-section .side {
    grid-area: side;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-section .side .box-image {
    display: flex;
    justify-content: center;
}

.main-section .side .box-image .main-image {
    width: 370px;
    max-width: 100%;
}

.side-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-box .side-title {
    position: relative;
}

.side-box .side-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    z-index: -1;
}

.side-box .side-title h2 {
    background-color: #fff;
    padding: 5px 0 5px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    width: fit-content;
}

.side-box .content-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-box .content-box .image-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 3px solid #ccc;
    padding-bottom: 20px;
}

.side-box .content-box .image-title .image {
    display: flex;
    justify-content: center;
}

.side-box .content-box .image-title .image img {
    width: 370px;
    max-width: 100%;
}

.side-box .content-box .image-title .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-box .content-box .image-title .title .head {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.side-box .content-box .image-title .title .head h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.side-box .content-box .image-title .title .head span {
    font-size: 35px;
    font-style: italic;
    padding: 10px;
    color: #ccc;
    font-weight: 700;
    border-right: 1px solid #ccc;
}

.side-box .content-box .image-title .title .share {
    display: flex;
    flex-direction: column;
}

.side-box .content-box .image-title .title .share {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-box .content-box .image-title .title p {
    font-size: 14px;
    font-weight: 700;
    color: #acacac;
}

.side-box .content-box .image-title .title p i {
    margin-left: 7px;
}

.side-box .content-box .image-title .title .social {
    display: flex;
    gap: 20px;
}

.side-box .content-box .image-title .title .social li a {
    color: #777777;
    font-size: 18px;
    transition: 0.3s;
    display: block;
}

.side-box .content-box .image-title .title .social li a:hover {
    color: #960000;
    transform: scale(1.2);
}

.side-box .content-box .other-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-box .content-box .other-news .trick {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.side-box .content-box .other-news .trick .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-style: italic;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #111;
    background-color: #f5f5f5;
    transition: 0.3s;
}

.side-box .content-box .other-news .trick:hover .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-style: italic;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: #960000;
    transition: 0.3s;
}

.side-box .content-box .other-news .trick .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-box .content-box .other-news .trick .title .descr {
    font-size: 14px;
    font-weight: 600;
}

.side-box .content-box .other-news .trick .title .share {
    display: flex;
    flex-direction: column;
}

.side-box .content-box .other-news .trick .title .share {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-box .content-box .other-news .trick .title .share p {
    font-size: 14px;
    font-weight: 700;
    color: #acacac;
}

.side-box .content-box .other-news .trick .title .share p i {
    margin-left: 7px;
}

.side-box .content-box .other-news .trick .title .share .social {
    display: flex;
    gap: 20px;
}

.side-box .content-box .other-news .trick .title .share .social li a {
    color: #777777;
    font-size: 18px;
    transition: 0.3s;
    display: block;
}

.side-box .content-box .other-news .trick .title .share .social li a:hover {
    color: #960000;
    transform: scale(1.2);
}

.side-box .content-box .box {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.side-box .content-box .box img {
    width: 150px;
    max-width: 100%;
}

.side-box .content-box .box .title p {
    font-size: 14px;
    line-height: 1.4;
}

.side-box .content-box .box .title .time {
    font-size: 12px;
    color: #777777;
}

/* /////////////////////////////////////// */
/* ///////////////Main Box/////////////// */
/* ///////////////////////////////////// */
.main-box {
    position: relative;
    padding: 20px 20px 60px;
    box-shadow: 0px 2px 4px 0px #00000033;
    margin-bottom: 40px;
}

.main-box .main-button {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 5px 40px;
    border: 1px solid #acacac;

    font-size: 12px;
    font-weight: 700;
    color: #111;
    transition: 0.2s;
}

.main-box .main-button:hover {
    background-color: #960000;
    color: #fff;
}

.main-box .main-title {
    margin: 15px 0;
    border-bottom: 2px solid #acacac;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-box .main-title h1 {
    margin: 0;
    background-color: #960000;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    width: fit-content;
}

.main-box .main-title .main-links {
    display: flex;
    gap: 10px;
}

.main-box .main-title .main-links a {
    font-size: 14px;
    color: #777777;
    transition: 0.2s;
    font-weight: 600;
}

.main-box .main-title .main-links a:hover {
    color: #960000;
    font-weight: 700;
}

/* End Component  */
/* Start Header  */
.header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .side-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header .center-section img {
    width: 200px;
}

.header .side-section p {
    font-weight: 600;
    font-size: 22px;
}

/* End Header  */
/* Start Nav  */

ul.nav {
    position: sticky;
    top: 0;
    z-index: 10000;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid #000;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
    /* margin-inline: 100px; */
}

ul.nav li {
    position: relative;
}

ul.nav>li>a {
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #000;
    transition: 0.3s;
    padding: 15px;
}

ul.nav>li:last-of-type {
    margin-left: 15px;
}

ul.nav>li>a:hover,
ul.nav>li>a.active {
    color: #fff;
    background-color: #960000;
}

@media (max-width: 920px) {
    ul.nav {}
}

@media (max-width: 1000px) {

    .center-section,
    ul.nav {
        display: none;
    }
}

ul.nav>li .mega-menu {
    position: absolute;
    background-color: #fff;
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    transform: scale(0);
    padding: 10px;
    box-shadow: 0px 2px 4px 0px #00000033;
    transition: 0.2s;
    z-index: 1000;
}

ul.nav>li .mega-menu li a {
    display: block;
    transition: 0.2s;
}

ul.nav>li .mega-menu li a:hover {
    transform: translateX(-5px);
    color: #960000;
}

ul.nav>li:not(:last-of-type) .mega-menu {
    right: 0;
}

ul.nav>li:last-of-type .mega-menu {
    left: 0;

    /* display: none; */
}

ul.nav>li:hover .mega-menu {
    transform-origin: right top;
    transform: scale(1);
}

ul.nav span {
    position: relative;
    cursor: pointer;
}

ul.nav span form {
    position: absolute;
    padding: 10px 0;
    box-shadow: 0px 2px 4px 0px #00000033;
    top: 100%;
    transform: scale(0);
    width: 300px;
    left: 0;
    background-color: #fff;
    transition: 0.3s;
    z-index: 1000;
}

ul.nav span form.active {
    transform: scale(1);
}

ul.nav span form .input-search {
    padding-inline: 15px;
    position: relative;
    width: 100%;
}

ul.nav span form .input-search i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

ul.nav span form .input-search input {
    border: 1px solid #acacac;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    padding-left: 30px;
    outline: none;
}

/* End Nav  */
/* Start Small Header  */
.header-small {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    box-shadow: 0px 2px 4px 0px #00000033;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
}

.header-small form {
    position: absolute;
    padding: 10px 0;
    box-shadow: 0px 2px 4px 0px #00000033;
    top: 100%;
    transform: translateX(-50%) scale(0);
    width: 80%;
    left: 50%;
    background-color: #fff;
    transition: 0.3s;
}

.header-small form.active {
    transform: translateX(-50%) scale(1);
}

.header-small form .input-search {
    padding-inline: 15px;
    position: relative;
    width: 100%;
}

.header-small form .input-search i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.header-small form .input-search input {
    border: 1px solid #acacac;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    padding-left: 30px;
    outline: none;
}

.header-small .bars i {
    font-size: 24px;
}

.header-small .logo img {
    width: 120px;
}

.header-small .search i {
    font-size: 24px;
}

@media (min-width: 1000px) {
    .header-small {
        display: none;
    }
}

.popup-nav {
    padding: 30px 0;
    position: fixed;
    background-color: #fff;
    top: 0;
    width: 400px;
    max-width: 70%;
    height: 100%;
    right: 0;
    z-index: 1005;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: 0.3s;
    transform: scale(0);
}

.popup-nav.active {
    transform: scale(1);
}

.close {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 20px;
}

.popup-nav form {
    padding: 10px 0;
    border-bottom: 1px solid #acacac;
}

.popup-nav form .input-search {
    padding-inline: 15px;
    position: relative;
    width: 100%;
}

.popup-nav form .input-search i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.popup-nav form .input-search input {
    border: 1px solid #acacac;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.popup-nav .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 15px;
}

.popup-nav .links a {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    transition: 0.3s;
}

.popup-nav .links a:hover {
    color: #960000;
}

.popup-nav .social-media {
    padding-inline: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.popup-nav .social-media a {
    color: #777777;
    font-size: 20px;
    transition: 0.3s;
}

.popup-nav .social-media a:hover {
    color: #960000;
    transform: scale(1.2);
}

/* End Small Header  */
/* Start Egypt News */
.egypt-news .image-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.egypt-news .image-title .image img {
    width: 100%;
}

.egypt-news .image-title .title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.egypt-news .image-title .title h2 {
    font-size: 30px;
    font-weight: 700;
}

.egypt-news .image-title .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #777777;
}

.egypt-news .description {
    padding: 25px 0;
}

.egypt-news .description p {
    font-size: 16px;
    line-height: 1.6;
    color: #0e0e0e;
}

.egypt-news .description .more {
    display: block;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #111;
    transition: 0.3s;
    width: fit-content;
    color: #fff;
}

.egypt-news .description .more:hover {
    background-color: #960000;
}

.egypt-news .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.egypt-news .links .part-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 520px) {
    .egypt-news .links {
        grid-template-columns: 1fr;
    }

    .egypt-news .links .part-links {
        gap: 20px;
    }
}

.egypt-news .links .part-links a {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s;
}

.egypt-news .links .part-links a i {
    color: #960000;
}

.egypt-news .links .part-links a:hover {
    color: #960000;
}

/* End Egypt News */
/* Start Sports  */
.sports {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 650px) {
    .sports {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .sports {
        grid-template-columns: 1fr;
    }
}

.sports .spor {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sports .spor .image {
    position: relative;
}

.sports .spor .image img {
    width: 100%;
}

.sports .spor .image .tick {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background-color: #111;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
}

.sports .spor h3 {
    font-size: 16px;
    line-height: 1.5;
}

.sports .spor .time {
    font-size: 12px;
    color: #777777;
}

/* End Sports  */
/* Start School And University  */
.school-univ .first-box {
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 650px) {
    .school-univ .first-box {
        grid-template-columns: 1fr;
    }
}

.school-univ .first-box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.school-univ .first-box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #777777;
}

.school-univ .first-box .title-descrip p {
    font-size: 16px;
    line-height: 1.6;
    color: #111;
}

.school-univ .first-box .title-descrip .more {
    display: block;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #111;
    transition: 0.3s;
    width: fit-content;
    color: #fff;
}

.school-univ .first-box .title-descrip .more:hover {
    background-color: #960000;
}

.school-univ .first-box img {
    width: 100%;
}

@media (max-width: 650px) {
    .school-univ .first-box img {
        order: -1;
    }
}

.school-univ .boxs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 650px) {
    .school-univ .boxs {
        grid-template-columns: 1fr;
    }
}

.school-univ .boxs .box {
    display: flex;
    gap: 15px;
}

.school-univ .boxs .box .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.school-univ .boxs .box .title p {
    font-size: 14px;
    color: #111;
}

.school-univ .boxs .box .title span {
    font-size: 14px;
    color: #777777;
}

.school-univ .boxs .box .image {
    width: 180px;
}

.school-univ .boxs .box .image img {
    width: 100%;
}

/* End School And University  */
/* Start Economy  */
.economy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.economy .box {
    display: flex;
    gap: 20px;
}

@media (max-width: 650px) {
    .economy .box {
        flex-direction: column;
    }
}

.economy .box .title {
    flex: 70%;
}

.economy .box .title {
    flex: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.economy .box .title h2 {
    font-size: 20px;
    line-height: 1.6;
}

.economy .box .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #777777;
}

.economy .box .title p {
    line-height: 1.6;
    color: #111;
}

.economy .box .image {
    flex: 30%;
}

@media (max-width: 650px) {
    .economy .box .image {
        order: -1;
    }
}

.economy .box .image img {
    width: 100%;
}

/* End Economy  */
/* Start Arab And World  */
.arab-world {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.arab-world .image {
    position: relative;
}

.arab-world .image img {
    width: 100%;
}

.arab-world .image .trick {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background-color: #111;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
}

.arab-world .title h3 {
    font-size: 16px;
    line-height: 1.5;
}

.arab-world .title .time {
    font-size: 12px;
    color: #777777;
}

/* End Arab And World  */
/* Start Collection  */
.collection {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 20px;
}

.collection .big-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.collection .big-box .box {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.collection .big-box .box img {
    width: 150px;
}

.collection .box .title p {
    font-size: 14px;
    line-height: 1.4;
}

.collection .box .title .time {
    font-size: 12px;
    color: #777777;
}

/* End Collection  */

/* Start News Page  */

.categ {
    display: flex;
    gap: 10px;
}

.categ a {
    color: #111;
    font-size: 14px;
    transition: 0.3s;
}

.categ a:hover {
    color: #960000;
}

.news .content-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news .content-news .big-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news .content-news .big-box .box {
    padding: 10px 0 30px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
}

@media (max-width: 560px) {
    .news .content-news .big-box .box {
        flex-direction: column;
    }
}

.news .content-news .big-box .box .image {
    flex: 40%;
}

.news .content-news .big-box .box .image img {
    width: 100%;
}

.news .content-news .big-box .box .title-descrip {
    flex: 60%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news .content-news .big-box .box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #777777;
}

.news .content-news .big-box .box .title-descrip p {
    font-size: 16px;
    line-height: 1.6;
    color: #111;
}

.news .content-news .big-box .box .title-descrip .more {
    display: block;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #111;
    transition: 0.3s;
    width: fit-content;
    color: #fff;
}

.news .content-news .big-box .box .title-descrip .more:hover {
    background-color: #960000;
}

/* End News Page  */
/* Start News Details Page  */
.news-details {}

.news-details .title-image-social {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-details .title-image-social .title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-details .title-image-social .title h2 {
    font-size: 30px;
    font-weight: 700;
}

.news-details .title-image-social .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #777777;
}

.news-details .title-image-social .image img {
    width: 100%;
}

.news-details .title-image-social .social-views,
.news-details .title-image-social .social-views .social,
.news-details .title-image-social .social-views .views {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-details .title-image-social .social-views .views {
    padding-right: 15px;
}

.news-details .title-image-social .social-views .social .media {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.news-details .title-image-social .social-views .social .media:hover {
    opacity: 0.7;
}

@media (max-width: 500px) {
    .news-details .title-image-social .social-views .social .media {
        padding: 7px 10px;
    }
}

.news-details .title-image-social .social-views .social a .whatsapp {
    background-color: #25d366;
}

.news-details .title-image-social .social-views .social a .facebook {
    background-color: #4267b2;
}

.news-details .title-image-social .social-views .social>.twitter {
    background-color: #1da1f2;
}

.news-details .title-image-social .social-views .social>.telegram {
    background-color: #0088cc;
}

.news-details .title-image-social .social-views .social .media i {
    font-size: 20px;
}

.news-details .title-image-social .social-views .social .media span {
    font-size: 12px;
}

@media (max-width: 700px) {
    .news-details .title-image-social .social-views .social .media span {
        display: none;
    }
}

.news-details .title-image-social .social-views .views .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.news-details .title-image-social .social-views .views::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #acacac;
    transform: rotate(20deg);
}

.news-details .title-image-social .social-views .views .box span:first-child {
    font-weight: 700;
    font-size: 25px;
    color: #111;
}

.news-details .title-image-social .social-views .views .box span:last-child {
    color: #acacac;
    font-size: 12px;
    font-weight: 600;
}

.news-details .discription {
    padding: 20px 0;
}

.news-details .discription p {
    line-height: 1.7;
    font-weight: 700;
    font-size: 16px;
    text-align: justify;
}

.about-details .description p {
    padding: 20px;
    line-height: 1.7;
    font-weight: 500;
    font-size: 20px;
}

.about-details .description .image {
    text-align: center;
    max-width: 100%;
    width: fit-content;
    margin-bottom: 50px;
}

/* End News Details Page  */
/* Start Footer  */
.footer {
    background-color: #3a3a3a;
    padding-top: 40px;
}

.footer .content-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer .content-footer .logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .content-footer .logo img {
    width: 200px;
}

.footer .content-footer .logo p {
    line-height: 1.6;
    color: #777777;
}

.footer .content-footer .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #ffffff;
}

.footer .content-footer .links .content-links {
    display: flex;
    gap: 15px;
}

@media (max-width: 1030px) {
    .footer .content-footer {
        grid-template-columns: 1fr;
    }

    .footer .content-footer .logo {
        align-items: center;
        text-align: center;
    }

    .footer .content-footer .links {
        text-align: center;
    }

    .footer .content-footer .links .content-links {
        justify-content: space-around;
    }
}

.footer .content-footer .links .content-links .link {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .content-footer .links .content-links .link a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    transition: 0.3s;
}

.footer .content-footer .links .content-links .link a:hover {
    color: #960000;
    scale: 1.1;
}

.footer .content-footer .big-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .content-footer .big-box .box {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.footer .content-footer .big-box .box img {
    width: 150px;
    max-width: 100%;
}

.footer .content-footer .box .title p {
    font-size: 14px;
    line-height: 1.4;
}

.footer .content-footer .box .title .time {
    font-size: 12px;
    color: #777777;
}

.footer .copy-right {
    margin-top: 30px;
    border-top: 1px solid #acacac;
    padding: 40px 30px;
    text-align: center;
    color: #acacac;
    font-size: 16px;
}

/* End Footer  */

.slider-container {
    position: relative;
    margin-bottom: 100px;
}

.slider-container .slider {
    width: 100%;
    height: 40vw;
    overflow: hidden;
    position: relative;
}

@media (max-width: 750px) {
    .slider-container .slider {
        height: 50vw;
    }
}

.slider-container .slider .image::after {
    content: "";
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
    height: 0;
    box-shadow: 0px 2px 34px 208px #00000059;
    z-index: 1;
}

@media (max-width: 600px) {
    .slider-container .slider .image::after {
        box-shadow: 0px 2px 34px 90px #00000059;
    }
}

.slider-container .slider .image {
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slider-container .slider .image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slider-container .slider .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    opacity: 1;
    object-fit: cover;
}

.slider-container .slider .image .title {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    right: 15px;
    width: 90%;
    padding-left: 20px;
    pointer-events: none;
}

.slider-container .slider .image .title * {
    pointer-events: auto;
}

.slider-container .slider .image .title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

@media (max-width: 680px) {
    .slider-container .slider .image .title h2 {
        font-size: 15px;
        font-weight: 700;
    }

    .slider-container .slider .image .title {
        bottom: 15px;
        right: 25px;
        gap: 5px;
    }
}

.slider-container .slider .image .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #fff;
}

.slider-container .thumbnails {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 5px;
    position: absolute;
    top: 100%;
    width: 100%;
    right: 0;
    overflow-x: auto;
}

.slider-container .thumbnails::-webkit-scrollbar {
    width: 0;
}

.slider-container .thumbnails img {
    width: 100px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ccc;
}

.slider-container .thumbnails img.active {
    border-color: #000;
}

.slider-container .navigation {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

.slider-container button {
    padding: 60px 5px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    color: #111;
}

@media (max-width: 650px) {
    .slider-container button {
        padding: 30px 5px;
    }
}

.slider-container button:hover {
    background-color: #960000;
    color: #fff;
}

/* top header */
.topbar {
    font-size: 12px;
    color: #757575;
    position: relative;
    z-index: 11;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

.container,
.container_full {
    width: auto;
    margin: 0 auto;
    padding: 0;
}

.header .container {
    height: 100%;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    .container {
        width: 98%;
        width: calc(100% - 10px);
    }
}

/* Navigation Row */
.topbar .nav_row,
.topbar .nav_icon {
    height: 32px;
}

.topbar .nav_row,
.topbar .search_no_expand .search_input {
    line-height: 32px;
}

.topbar .nav_row {
    height: 34px;
    line-height: 34px;
}

.nav_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Alignment Classes */
.nav_left {
    margin-right: auto;
}

.nav_center {
    margin: 0 auto;
}

.nav_right {
    margin-left: auto;
}

.nav_grow {
    flex: 1;
}

.nav_alignleft {
    justify-content: flex-start;
}

.nav_aligncenter {
    justify-content: center;
}

.nav_alignright {
    justify-content: flex-end;
}

/* Item Wrap */
.item_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Nav Items */
.topbar .nav_item {
    padding: 0 12px;
    border-right: 1px solid #e0e0e0;
}

.nav_item:last-child {
    padding-right: 0;
    border-right: none;
}

.nav_item:first-child {
    padding-left: 0;
}

/* Main Menu */
.main_menu>li,
.menu>li {
    float: right;
    text-align: right;
    position: relative;
    padding-right: 1.2em;
}

.menu>li {
    text-align: left;
}

.menu>li:first-child {
    padding-right: 0;
}

.menu>li:last-child {
    border-right-width: 0;
}

.menu a {
    display: block;
    position: relative;
    color: #000000;
    transition: 0.2s ease;
}

/* top header */

/*marquee*/
.ticker-header {
    padding: 10px;
}

.ticker-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    padding: 0;
}

.news-label {
    background-color: rgb(204, 9, 9);
    color: #fff;
    padding: 4px 10px;
    font-size: 15px;
    font-style: italic;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    background: #fff;
    display: flex;
}

.ticker-move {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker 85s linear infinite;
}

.ticker-item {
    padding: 0 50px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-item .dot {
    height: 8px;
    width: 8px;
    background: red;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

/* Animation */
@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Hover effect */
.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

.ticker-toggle {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
    color: #333;
    flex-shrink: 0;
}

.ticker-toggle:hover {
    color: red;
}

/* marquee */

/* contact page */
.about-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.map {
    flex: 2;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info span {
    font-weight: bold;
    color: #333;
}

.social-media {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-media span {
    font-weight: bold;
    margin-right: 10px;
}

.social-link {
    font-size: 1.5rem;
    color: #555;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff;
}

/* contact page */