﻿ 
.mcd-menu li {
  font-family: cairo;
}
.mcd-menu li p {

  margin: 0px;
}

body {
  background: #fff;
  overflow-x: hidden;
  direction: rtl; /* Added property for right-to-left direction */
  margin: 0px!important;
 
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}

.container {
  position: relative;
  margin: 0px auto;
  padding: 0px;
  clear: both;
  padding: 0px!important;
  max-width: 100%;
}
 
 
.mcd-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  height: 100px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.mcd-menu li {
  float: left;
  position: relative;
}
.mcd-menu li a {
  display: block;
  text-decoration: none;
  padding: 12px 20px;
  text-align: center;
  color: #c0930b;
  border-right: 1px solid #e7e7e7;
}
.mcd-menu li a i {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}
.mcd-menu li a strong {
  display: block;
  text-transform: uppercase;
}
.mcd-menu li a small {
  display: block;
  font-size: 10px;
}

.mcd-menu li a i,
.mcd-menu li a strong,
.mcd-menu li a small {
  position: relative;

  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
}
.mcd-menu li:hover > a i {
  opacity: 1;
  -webkit-animation: moveFromTop 300ms ease-in-out;
  -moz-animation: moveFromTop 300ms ease-in-out;
  -ms-animation: moveFromTop 300ms ease-in-out;
  -o-animation: moveFromTop 300ms ease-in-out;
  animation: moveFromTop 300ms ease-in-out;
}
.mcd-menu li:hover a strong {
  opacity: 1;
  -webkit-animation: moveFromLeft 300ms ease-in-out;
  -moz-animation: moveFromLeft 300ms ease-in-out;
  -ms-animation: moveFromLeft 300ms ease-in-out;
  -o-animation: moveFromLeft 300ms ease-in-out;
  animation: moveFromLeft 300ms ease-in-out;
}
.mcd-menu li:hover a small {
  opacity: 1;
  -webkit-animation: moveFromRight 300ms ease-in-out;
  -moz-animation: moveFromRight 300ms ease-in-out;
  -ms-animation: moveFromRight 300ms ease-in-out;
  -o-animation: moveFromRight 300ms ease-in-out;
  animation: moveFromRight 300ms ease-in-out;
}

.mcd-menu li:hover > a {
  color: #765d0d;
}
.mcd-menu li a.active {
  position: relative;
  color: #c0930b;
  border: 0;
  border-top: 4px solid #c0930b;
  border-bottom: 4px solid #c0930b;
  margin-top: -4px;
  box-shadow: 0 0 5px #ddd;
  -moz-box-shadow: 0 0 5px #ddd;
  -webkit-box-shadow: 0 0 5px #ddd;
}
.mcd-menu li a.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 45%;
  border-top: 5px solid #c0930b;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

@-webkit-keyframes moveFromTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes moveFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes moveFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.mcd-menu li ul,
.mcd-menu li ul li ul {
  position: absolute;
  height: auto;
  min-width: 133px;
  padding: 0;
  margin: 0;
  background: #fff;
  border-top: 4px solid #c0930b;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  top: 130px;
  z-index: 1000;
  direction: rtl;
}
.mcd-menu li ul:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 23%;
  border-bottom: 5px solid #c0930b;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.mcd-menu li:hover > ul,
.mcd-menu li ul li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  top: 64px;
}
.mcd-menu li ul li {
  float: none;
}
.mcd-menu li ul li a {
  padding: 10px;
  text-align: center;
  border: 0;
  border-bottom: 1px solid #eee;
  direction: rtl;
}
.mcd-menu li ul li a i {
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
}
.mcd-menu li ul li ul {
  left: 230px;
  top: 0;
  border: 0;
  border-left: 4px solid #c0930b;
}
.mcd-menu li ul li ul:before {
  content: "";
  position: absolute;
  top: 15px;
  left: -14px;
  border-right: 5px solid #c0930b;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
}
.mcd-menu li ul li:hover > ul {
  top: 0px;
  left: 200px;
}

.mcd-menu li.float {
  float: right;
}
.mcd-menu li a.search {
  padding: 29px 20px 30px 10px;
}
.mcd-menu li a.search i {
  margin: 0;
  display: inline-block;
  font-size: 18px;
}
.mcd-menu li a.search input {
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
  outline: none;
  color: #c0930b;
}
.mcd-menu li a.search button {
  border: 1px solid #c0930b;
  padding: 10px;
  background: #c0930b;
  outline: none;
  color: #fff;
  margin-left: -4px;
}
.mcd-menu li a.search input:focus {
  border: 1px solid #c0930b;
}

.search-mobile {
  display: none !important;
  background: #c0930b;
  border-left: 1px solid #c0930b;
  border-radius: 0 3px 3px 0;
}
.search-mobile i {
  color: #fff;
  margin: 0 !important;
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .mcd-menu li a.search input {
    width: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .mcd-menu {
    height: 85px;
  }
  .mcd-menu li a {
    padding: 12px;
  }
  .mcd-menu li a i {
    font-size: 22px;
  }
  .mcd-menu li a strong {
    font-size: 12px;
  }
  .mcd-menu li a small {
    font-size: 10px;
  }
  .mcd-menu li a.search {
    display: none;
  }
  .search-mobile {
    display: block !important;
    margin: 20px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
  }
  .mcd-menu li:hover > ul {
    top: 85px;
    min-width: 180px;
  }
  .mcd-menu li ul li > ul {
    min-width: 150px;
    left: 200px;
    top: 0;
  }
  .mcd-menu li ul li:hover > ul {
    min-width: 150px;
    left: 180px;
    top: 0;
  }
  .mcd-menu li ul li ul li ul {
    min-width: 150px;
    left: 25px !important;
    top: 54px;
    border: 0;
    border-top: 3px solid #c0930b;
  }
  .mcd-menu li ul li ul li:hover ul {
    top: 35px;
  }
  .mcd-menu li ul li ul li ul:before {
    border: 0;
    border-bottom: 5px solid #c0930b;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    left: 10%;
    top: -8px;
  }
  .mcd-menu li:hover ul a {
    font-size: 12px;
  }
  .mcd-menu li:hover ul a i {
    font-size: 14px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .mcd-menu {
    height: 42px;
    position: relative;
  }
  .mcd-menu li a {
    padding: 12px 17.7px;
  }
  .mcd-menu li a strong,
  .mcd-menu li a small,
  .mcd-menu li a.search {
    display: none;
  }
  .mcd-menu li a i {
    margin: 0;
    font-size: 18px;
  }
  .mcd-menu li {
    position: static;
  }
  .mcd-menu li ul {
    min-width: 100%;
    left: 0;
    top: 50px;
  }
  .mcd-menu li:hover > ul {
    top: 42px;
  }
  .mcd-menu li > ul:before {
    border: 0;
  }
  .mcd-menu li ul > li {
    position: relative;
  }
  .mcd-menu li ul li:hover > ul {
    left: 34px;
  }
  .mcd-menu li a {
    position: relative;
    font-size: 12px;
  }
  .mcd-menu li a:hover strong,
  .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    top: -20px;
    left: 0;
    background: #c0930b;
    color: #fff;
    min-width: 100%;
    text-transform: lowercase;
    font-weight: normal;
  }
  .mcd-menu li a.active:before {
    left: 40%;
  }
  .search-mobile {
    display: block !important;
  }

  .mcd-menu li ul li > ul {
    min-width: 200px;
    left: 200px;
  }
  .mcd-menu li ul li:hover ul {
    left: 180px;
  }
  .mcd-menu li ul li ul:before {
    left: -9px;
  }
  .mcd-menu li ul li ul li ul {
    min-width: 200px;
    border: 0;
    border-top: 3px solid #c0930b;
    left: 25px !important;
    top: 45px;
  }
  .mcd-menu li ul li ul li:hover ul {
    top: 40px;
  }
  .mcd-menu li ul li ul li ul:before {
    border: 0;
    border-bottom: 5px solid #c0930b;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    left: 10%;
    top: -8px;
  }
}

@media only screen and (max-width: 479px) {
  .mcd-menu {
    height: 42px;
    position: relative;
  }
  .mcd-menu li a strong,
  .mcd-menu li a small,
  .mcd-menu li a.search {
    display: none;
  }
  .mcd-menu li a {
    padding: 12px 13.8px;
    font-size: 12px;
  }
  .mcd-menu li a i {
    margin: 0;
    font-size: 18px;
  }
  .mcd-menu li {
    position: static;
  }
  .mcd-menu li ul {
    min-width: 100%;
    left: 0;
    top: 50px;
  }
  .mcd-menu li:hover > ul {
    top: 42px;
  }
  .mcd-menu li > ul:before {
    border: 0;
  }
  .mcd-menu li ul > li {
    position: relative;
  }
  .mcd-menu li ul li:hover > ul {
    left: 34px;
  }
  .mcd-menu li a {
    position: relative;
  }
  .mcd-menu li a:hover strong,
  .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    top: -20px;
    left: 0;
    background: #c0930b;
    color: #fff;
    min-width: 100%;
    text-transform: lowercase;
    font-weight: normal;
  }
  .mcd-menu li a.active:before {
    left: 40%;
  }

  .mcd-menu li ul li > ul {
    min-width: 150px;
    left: 160px;
  }
  .mcd-menu li ul li:hover ul {
    left: 120px;
  }
  .mcd-menu li ul li ul:before {
    left: -9px;
  }
  .mcd-menu li ul li ul li ul {
    min-width: 160px;
    left: 25px !important;
    top: 39px;
    border: 0;
    border-top: 3px solid #c0930b;
  }
  .mcd-menu li ul li ul li:hover ul {
    top: 39px;
  }
  .mcd-menu li ul li ul li ul:before {
    border: 0;
    border-bottom: 5px solid #c0930b;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    left: 10%;
    top: -8px;
  }
}
.mcd-menu li.float {
  display: none; /* This will hide the search bar and menu floated to the right */
}

.mcd-menu li a.search {
  display: none; /* This will hide the search bar */
}

.mcd-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #0e47a1;
  height: 65px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  direction: rtl; /* Added property for right-to-left direction */
  margin-right: 20px;
}

.mcd-menu li {
  float: right; /* Change float from left to right */
  position: relative;
  direction: ltr;
  text-align: right;
  display: inline;
}

.mcd-menu li a {
  display: block;
  text-decoration: none;
  padding: 0px 30px;
  text-align: center;
  color: #dcb54c;
  /* border-left: 1px solid #e7e7e7; */ /* Change border from right to left */
  border-right: none; /* Remove right border */
  direction: ltr;
}


.headerDiv {
  background-image: url(../imges/Topheader.png);
  height: 250px;
  background-size: cover;
  background-repeat: round;
  position: relative;
}
.searchInput:focus {
  border: none; /* Remove the border when input is focused */
}
#navb{
  position: relative;
  top: 185px;
}
.TopButtonsOptions {
  float: right;
  text-align: justify;
  margin-right: 16px;
}

.row.headerrow {
    display: flex!important;
}
.mcd-menu p {
color: #dcb54c;
font-size: 12px;
}



     /* Clear the float to prevent layout issues */
        .clear {
            clear: both;
        }

.searhdiv {background-image: url(../imges/searchbakground.png);height: 800px;background-size: cover;background-repeat: no-repeat;width: 100%;position: unset;}
 
        .hintsearch {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;

        }
        .hintsearch img {
            
                width: 30%; /* Set the width to 30% of its container */
                height: auto; /* Maintain the aspect ratio */
                display: block;
                margin: 0 auto; /* Center the image horizontally */
        }
        .parentDiv {
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .customDiv {
            width: 50%;
            padding: 5px;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }


        .searchInput {
            flex: 1;
            margin: 10px;
            /* padding: 8px; */
            border: 1px solid #f0f0f0;
            /* border-radius: 5px; */
            background: #f0f0f0;
            font-family: cairo;

            ::placeholder {
                color: #dcb54c;
                /* Set your desired placeholder color */
            }
        }


        .searchButton {
            padding: 8px 16px;
            background-color: #4CAF50;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .searchImage {
            cursor: pointer;
            max-width: 20%;
            height: auto;
            border-radius: 5px;
        }

        .image-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            display: block;
        }

        .content {
            padding: 20px;
            box-sizing: border-box;
            background-color: #f5f5f5;
            height: 350px;
            overflow: overlay;
        }



        .styled-box {
            width: 300px;
            /* Set your desired width */
            padding: 14px;
            border-radius: 51px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            /* Set your desired shadow properties */
            background-color: #ffffff;
            /* Set your desired background color */
            height: 210px;
            width: 210px;
           
            /* Replace 'your-image-url.jpg' with the actual URL of your image */
            
            /* Add any other styles you want for your div */
            background-size: cover;
        }

        .title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        hr {
            border: 1px solid #ccc;
            /* Set your desired HR color */
            margin-bottom: 20px;
        }

.infodiv img {
    
        position: relative;
        width: 100%;
        margin: 0 auto;
    
}

.customDivNews {

   width: 98%;
            padding: 0px;
            background-color: #ffffff;
            border: 1px solid #000;
            /* box-shadow: 0 2px 4px rgba(1, 1, 1, 0.1); */
            border-radius: 5px;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 6px 6px rgb(0 0 0 / 10%); /* Add box shadow */
       
}

.NewsHint img {
    width: 30%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.staticsRow {
    /* height: 300px; */
    /* margin: 50px; */
    display: flex!important;
    margin-bottom: 30px;
}
.staticscol {
    height: 100%;
     border-radius: 10px;
     border: 0px solid rgb(255 86 48);
     /* box-shadow: 6px 6px; */
     width: 100%;
     height: 100%;
     background-size: cover;
     background-repeat: no-repeat;
     width: 100%;
     margin-right: 10px;
}

.newsp {
margin-right: 20px;
    font-family: cairo;
    font-weight: bold;
    font-size: 20px;
}
.finalstatics {
    background-image: url(../imges//ststics.png);
    height: 10%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
        position: absolute;

 }

#divSt {
     /* position: relative; */
     top: 224px;
}

.image-row {
            display: flex;
            justify-content: space-between;
            margin: 10px; /* Adjust the margin as needed */
            width: 50%;
        }

        .image {
            width: 30%; /* Adjust the width of each image as needed */
            margin: 0; /* Remove default margin */
        }

        li.top-navbar {
    margin-left: 15px;
}

        /*.footer{
            
        background: #707070;
        margin-top:300px

        }*/

.btn-send {
        background: #0e47a1;
}

 