@font-face {
    font-family: myFirstFont;
    src: url("../fonts/Alexandria-VariableFont_wght.ttf");
  }
  @font-face {
    font-family: fbold;
     src: url("../fonts/Alexandria-Bold.ttf");

  }

  * {
    font-family: myFirstFont;
  }







  .fBold {
    font-family: fbold;
  }
  body {
    direction: rtl;
    background-color: #fbfbfb;
    position: relative;
  }

  body a {
    text-decoration: none !important;
  }

  @media (min-width: 1700px) {
    .container,
    .container-md,
    .container-sm {
      max-width: 85% !important ;
    }
  }
  @media (max-width: 1400px) {
    .container,
    .container-md,
    .container-sm {
      max-width: 95% !important ;
    }
  }

  @media (max-width: 770px) {
    .container,
    .container-md,
    .container-sm {
      max-width: 98% !important ;
    }
  }

  /* ////////////////////////////Navbar///////////////////////////////////// */

  .navbar {
    box-shadow: rgba(100, 100, 111, 0.096) 0px 7px 50px 0px;
    /* position: sticky;
      top: 0;
      z-index: 99; */
    background-color: #fff;
  }
  .navbar .search {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .navbar .searchBtn {
    background-color: #f3ca34;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: #f3ca3463 0px 4px 16px;
  }

  .navbar .navbar-nav {
    align-items: center;
   }

  .navbar .nav-item .nav-link:hover {
    color: #e71212;
    border-bottom: 2px solid #e71212;
  }
  .navbar .nav-item .nav-link {
    color: #3e3e3e;
    padding: 12px;
    transform: all 0.3s ease;
  }
  .navbar .nav-item .nav-link.active {
    background-color: #e71212;
    color: #fff;
    border-radius: 15px;
    box-shadow: #e7121260 0px 4px 16px;
    border: none !important;
  }

  .logo{
    object-fit: contain;

  }

  @media (max-width: 1700px) {
    .logo {
      width: 250px;
    }
  }
  @media (max-width: 1750px) {
    .navbar .navbar-nav {
      gap: 5px;
    }
    .navbar .navbar-nav li a {
      font-size: 15px;
    }
  }
  @media (max-width: 1700px) {
    .navbar .navbar-nav {
      gap: 2px !important;
    }
    .navbar .nav-item .nav-link{
      padding: 9px !important;
    }
  }
  @media (max-width: 1300px) {
    .logo {
      width: 210px;
    }
  }
  @media (max-width: 1300px) {
    .logo{
      width: 210px;
    }
    .navbar .navbar-nav {
      gap: 3px;
    }
    .navbar .navbar-nav li a {
      font-size: 14px;
    }
    .searchBtn {
      width: 30px !important;
      height: 30px !important;
    }
    .search {
      font-size: 14px;
    }
    .searchBtn img {
      width: 20px;
    }
  }

  @media (max-width: 1140px) {
    .navbar .nav-item .nav-link {
      padding: 6px;
    }
  }


  .btnnav{
      display: none;
  }

  @media (max-width: 991px) {
      .btnnav{
          display: flex;
          gap: 5px;
      }
      .logo{
        width: 190px;
        height: 65px !important;
      }
  }

  .btnMenu{
      background-color: #f3ca34;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }
  .btnMenu img{
      width: 25px;
  }

  /* //////////////// */


  .itemDropmenu{
    position: relative;
  }
  .itemDropmenu:hover .dropmenu
  {
      background-color: #fff;
      display: block;
  }
  .itemDropmenu i{
      transition: all .5s ease;
      font-size: 18px;
      transform: translateY(3px) ;
  }
  .itemDropmenu:hover i{
      transform: rotate(180deg) ;
  }

  .dropmenu{
    padding: 20px;
    position: absolute;
    top: 40px;
    right: 0;
    width: 180px;
    border-radius: 0 0 10px 10px;
    display: none;
    list-style: none;
    overflow: hidden;
    justify-content: space-between;
    z-index: 99;
    padding-bottom: 10px;
  }

  .dropmenu li a{
    display: flex;
    justify-content: space-between;

    padding: 10px;
    color: #3E3E3E;
  }
  .dropmenu li a img{
    transition: all .5s ease;
  }
  .dropmenu li a:hover img{
    transform: translateX(-8px);
  }
  .dropmenu li {
    border-bottom: 1px solid #70707038 ;
  }
  .dropmenu li:last-child {
    border-bottom: none ;
  }

  /* ///////////////////////////////////////////////////////////// */

  .header {
    margin-top: 40px;
  }

  .imgHeader {
    width: 100%;
  }

  .imgHeader img {
    width: 100%;
    height: 600px;
    border-radius: 50px;
    object-fit: cover;
    object-position: center center;
  }

  .slideHaeder {
    position: relative;
    border-radius: 50px;
    height: 600px;
    color: #fff;
    overflow: hidden;
  }


  .shadowImgHaedar {
    background-color: rgba(0, 0, 0, 0.322);
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .contantHeader {
    position: absolute;
    bottom: 33%;
    right: 70px;
    cursor: pointer;
  }

  .allHeader .swiper-pagination {
    bottom: 25% !important;
    left: unset;
    width: max-content !important;
    right: 80px;
  }

  .allHeader .swiper-pagination-bullet {
    background-color: #fff;
    width: 20px;
    height: 8px;
    border-radius: 5px;
    transition: all 0.4s ease;
  }

  .allHeader .swiper-pagination-bullet-active {
    width: 30px;
    transition: all 0.4s ease;
  }
  .allHeader .swiper-button-next:after,
  .allHeader .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
  }
  .allHeader .swiper-button-next,
  .allHeader .swiper-button-prev {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid #fff;
  }
  .allHeader .swiper-button-prev,
  .allHeader .swiper-rtl .swiper-button-next {
    right: 120px;
  }
  .allHeader .swiper-button-next,
  .allHeader .swiper-rtl .swiper-button-prev {
    top: unset;
    bottom: 17%;
    right: 80px;
    font-size: 20px;
  }

  .allHeader .swiper-button-next.swiper-button-disabled,
  .allHeader .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
  }


  @media (max-width:1800px) {
    .slideHaeder {
      height: 65vh;
    }
    .imgHeader img {
      height: 65vh;
    }
  }


  @media (max-width: 991px) {
    .slideHaeder {
      height: 380px;
      border-radius: 30px;
    }

    .slideHaeder {
      border-radius: 30px !important;
    }
    .imgHeader img {
      height: 380px;
      border-radius: 10px;
    }
    .contantHeader h1 {
      font-size: 22px;
    }
    .contantHeader h3 {
      font-size: 16px;
    }
    .contantHeader {
      bottom: 25%;
      right: 30px;
    }
    .allHeader .swiper-pagination {
      bottom: 20% !important;
      right: 30px;
    }
    .allHeader .swiper-button-next,
    .allHeader .swiper-rtl .swiper-button-prev {
      bottom: 10%;
      right: 30px;
    }
    .allHeader .swiper-button-prev,
    .allHeader .swiper-rtl .swiper-button-next {
      right: 75px;
    }
  }
  @media (max-width: 500px) {
    .contantHeader h1 {
      font-size: 21px;
    }
    .contantHeader h3 {
      font-size: 16px;
    }
  }
  /* //////////////////////////////aboutUsSection//////////////////////////////////// */

  .aboutUsSection {
    margin-top: 70px;
  }
  .allAboutUsSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 60px;
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;
  }

  .rightAboutUsSec {
    width: 30%;
  }
  .rightAboutUsSec img {
    width: 100%;
    max-width: 400px;
    transition: all 0.5s ease;
  }
  .allAboutUsSection:hover .rightAboutUsSec img {
    transform: scale(1.1);
  }
  .leftAboutUsSec {
    width: 65%;
    display: flex;
    flex-direction: column;
  }
  .leftAboutUsSec h4 {
    font-family: fbold;
    line-height: 140%;
  }
  .leftAboutUsSec h4 span {
    font-family: fbold;
    color: #e71212;
  }

  .titleSection {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3E3E3E;
  }
  .titleSection h2 {
    font-family: fbold;
    width: max-content;
    position: relative;
  }
  .titleSection h2::after {
    content: "";
    width: 30px;
    height: 3px;
    position: absolute;
    background-color: #3E3E3E;
    bottom: 10px;
    margin-right: 10px;
  }

  .slideHaeder .titleSection h2::after {
    background-color: #fff;
  }

  @media (max-width: 500px) {
    .titleBtnSection {
      flex-direction: column;
    }
    .btnMore {
      margin-right: auto;
    }
    .titleSection {
      margin-left: auto;
    }
  }

  /* .lineTitleS {
    width: 35px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;

  } */
  .lineTitleSW {
      background-color: #fff;
  }

  .aboutUsSection .titleSection h2 {
    color: #528cb2;
  }
  .aboutUsSection .titleSection h2::after {
    background-color: #528cb2;
  }

  /* .aboutUsSection .lineTitleS {
    background-color: #528cb2;
  } */

  .btnMore {
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 12px;
    background-color: #e71212;
    color: #fff !important;
    gap: 10px;
    cursor: pointer;
    box-shadow: #e7121254 0px 4px 16px;
  }

  @media (max-width: 500px) {
    .btnMore {
      padding: 6px;
    }
    .btnMore span {
      font-size: 13px !important;
    }
  }

  .leftAboutUsSec .btnMore {
    margin-top: auto;
  }
  .leftAboutUsSec p {
    color: #7e7e7e;
    font-family: fbold;
  }

  .btnMore img {
    transition: all 0.6s ease;
  }
  .btnMore:hover img {
    transform: translateX(-5px);
  }

  @media (max-width: 991px) {
    .allAboutUsSection {
      flex-direction: column;
      align-items: center;
      padding: 30px 40px;
    }
    .rightAboutUsSec {
      width: 100%;
      display: flex;
    }
    .rightAboutUsSec img {
      margin: 0 auto;
    }
    .leftAboutUsSec {
      width: 100%;
    }
  }

  @media (max-width: 500px) {
    .allAboutUsSection {
      padding: 30px 20px;
    }
  }

  /* ////////////////////////////////latestNews/////////////////////////////// */

  .latestNews {
    margin-top: 80px;
  }

  .titleBtnSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cardNews {
    background-color: #fff;
    border-radius: 25px;
    color: #7e7e7e;
    position: relative;
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;
    height: 430px;
    margin-bottom: 40px;
  }

  @media (max-width: 991px) {
    section .swiper-pagination {
      right: 0 !important;
    }
  }

  @media (max-width: 767px) {
    .cardNews {
      max-width: 500px;
      margin: 0 auto;
      margin-bottom: 45px;
    }
  }

  .imgCardNews {
    width: 100%;
    height: 250px;
    border-radius: 20px;
  }
  .imgCardNews img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
  }


  .bodyCard {
    padding: 20px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bodyCard a {
    color: #7e7e7e;
  }

  .bodyCard p:nth-child(1) {
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .bodyCard p:nth-child(2) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .calendarCard {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
  }
  .calendarCard img {
    width: 25px;
  }
  .cardNews .btnMore {
    position: absolute;
    background-color: #0050a4;
    left: 20px;
    bottom: -20px;
    gap: 4px;
    padding: 6px 8px;
    box-shadow: #004fa434 0px 4px 16px;
  }
  .btnMore span {
    font-size: 15px;
    font-family: fbold;
  }

  section .swiper {
    margin-top: 40px;
    padding: 15px;
    padding-bottom: 35px;
  }

  .swiper-pagination-bullet {
    background-color: #e71212;
    width: 25px;
    border-radius: 10px;
    transition: all 0.4s ease;
    bottom: 0 !important;
  }

  .swiper-pagination {
    bottom: 0 !important;
    width: max-content !important;
    right: 47%;
  }

  .swiper-pagination-bullet-active {
    width: 40px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: unset;
    bottom: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid #e71212;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 600;
    color: #e71212;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    left: 50px;
    right: unset;
  }

  .cardNewsMembers {
    height: 360px;
  }
  .cardNewsMembers .imgCardNews {
    height: 250px;
  }

  .bodyCard a p:nth-child(2) {
    font-size: 13px;
  }

  .cardVideo {
    height: 380px;
    cursor: pointer;
  }


  @media (max-width: 1500px) {
    .imgCardNews {
      height: 200px;
    }
  .cardNews {
    height: 370px;
  }
  .cardVideo {
    height: 320px;
  }
  }

  .closeBtnVideo{
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #E71212;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 1;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
  }

  .modal.videoHeder {
    --bs-modal-width: 80% ;

  }
  .modal.videoHeder .modal-content{
    border-radius: 10px;
    background-color: transparent;
  }

  .back-video{
    height: 80vh;
    border-radius: 10px;
  }


  @media (max-width: 1000px){
    iframe {
        height: 300px !important;
    }
  }
  @media (max-width: 600px){
    .closeBtnVideo {
        top: -20px;
        right: 0px;
        width: 35px;
        height: 35px;
        font-size: 25px;
    }
  }


  /* ////////////////////////cardTenders/////////////////////////// */

  .cardTenders {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;
    margin-bottom: 20px;
  }

  .dataCard {
    display: flex;
    flex-direction: column;
    padding-top:12px;
    align-items: center;
    background-color: #f3ca34;
    color: #fff;
    border-radius: 30px;
    width: 100px;
    height: 100px;
    justify-content: center;
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;
  }
  .textCardTenders{
      width: 90%;
  }
  .dataCard h1 {
    font-family: fbold;
    margin-bottom: 0;
    font-size: 30px;
  }
  .dataCard p{
    margin-bottom:0px;
  }

  .textCardTenders p {
    font-family: fbold;
    color: #3e3e3e;
    margin-bottom:6px;
  }
  .textCardTenders p:nth-child(2) {
    color: #7e7e7e;
  }
  @media (max-width: 1000px) {
    .dataCard h1 {
        font-size: 27px;
      }
  }
  @media (max-width: 800px) {
    .dataCard {
      /* width: 80px; */
      height: 80px;
      border-radius: 25px;
    }
  }

  @media (max-width:500px) {
      .cardTenders{
          flex-direction: column;
          gap: 10px;
      }
      .textCardTenders{
          width: 100%;
      }
  }

  /* //////////////////////////////Footer//////////////////////////////// */

  footer {
    background-color: #fff;
    margin-top: 100px;
  }

  .allFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .menuFooter {
    display: flex;
    gap: 20px;
    padding: 0 !important;
    list-style: none;
    margin-right: -100px;
  }

  .menuFooter li a {
    color: #bfbfbf;
    font-family: fbold;
  }

  .social {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .socialIcon {
    color: #bfbfbf !important;
    width: 35px;
    height: 35px;
    border: 1px solid #bfbfbf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
  }

  .footerBottom {
    background-color: #0050a4;
  }

  .allFooterBottom {
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding: 10px;
    font-size: 13px;
  }
  .allFooterBottom a {
    color: #fff;
  }

  .bgimg {
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .bgimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 991px) {
    .allFooter li a {
      font-size: 13px;
    }
    .allFooter img {
      width: 220px;
    }
    .menuFooter {
      margin-right: -50px;
    }
    .allFooterBottom {
      font-size: 12px;
    }
  }
  @media (max-width: 800px) {
    .allFooterBottom {
      flex-direction: column-reverse;
      align-items: center;
      gap: 5px;
      text-align: center;
    }
  }
  @media (max-width: 600px) {
    .allFooter {
      flex-direction: column;
      gap: 5px;
    }
    .menuFooter {
      margin-right: 0px;
    }
  }



  .menuM{
      margin-top: 30px;
      padding: 0;
      list-style: none;
      color: #3E3E3E ;
  }

  .menuM li{
      margin-bottom: 20px;
  }
  .menuM li i{
      color: #e71212;
      font-weight: 600;
  }

  .menuM li a{
      color: #3E3E3E ;
      margin-right: 10px;
  }
  .menuM li a:hover{
      color: #FDCD13;
  }
  .menuM li a.active{
      color: #fff;
      background-color: #e71212;
      padding: 12px ;
      border-radius: 15px;
      margin-right: 0px;
  }

  .navMenuO .btnMenu img{
      transform: rotate(45deg);
  }

  /* //////////////////////////////// */
  .dropMenuM{
      padding-right: 15px;
      margin-top: 15px;
      list-style: none;
      /* border-bottom: 1px solid #000; */
      display: none;
  }

  .arrowmenu{
      transition: all .5s ease;
  }

  .arrowmenu.active{
      transform: rotate(180deg);

  }

  .drobMenu .active i{
    color: #fff;
  }

  /* .navMenuO{
      background-color: rgba(255, 255, 255, 0.918);
      backdrop-filter: blur(10px);
  } */


  .offcanvas.offcanvas-start{
      border: none;
  }

  .searchModal .modal-content{
      background-color: transparent !important;
      border: none;
  }

  .searchForm{
      display: flex;
      align-items: center;
      background-color: #fff;
      border: 1px solid #fff;
      border-radius: 30px;
      overflow: hidden;
      padding: 0 10px;
      transition: all .2s ease;
  }

  .searchForm input{
      background-color: transparent;
      border: none;
      padding: 20px;
      outline: none;
      color: #000;
      width: 100%;
  }
  .searchForm input::placeholder{
      color: #000;
  }
  .searchForm i{
      font-size: 20px;
      color: #fff;
      transition: all .2s ease;

      border-radius: 50%;
  }

  .iconSearch{
      width: 50px;
      height: 50px;
      background-color: #f3ca34;
      border-radius: 50%;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: -5px;
      cursor: pointer;
  }

  @media (max-width:500px) {
      .searchForm input{
          padding: 15px;
      }
      .iconSearch{
          width: 40px;
          height: 40px;
      }
  }


  /* ////////////////////////////// */


  .modal-backdrop{
      transition: all .4s ease !important;
  }
  .modal-backdrop.show{
      background-color: rgba(0, 0, 0, 0.685);
      opacity: 1;
      backdrop-filter: blur(20px) ;
      -webkit-backdrop-filter: blur(20px);
  }

  .searchModal{
      --bs-modal-bg:transparent;
      --bs-modal-header-border-width:none;
      --bs-modal-border-color:none;
      --bs-modal-width:650px;
      color: #fff;
  }


  /* //////////////////////////Page//////////////////////////////// */

  .headerPage .slideHaeder{
      border-radius: 30px !important;
  }
  .headerPage .imgHeader img{
      border-radius: 10px !important;
  }
  .headerPage .contantHeader{
      bottom: 20%;
  }

  .headerNews .contantHeader{
    bottom: 31%;
  }
  .headerNews .swiper-button-next,.headerNews .swiper-rtl .swiper-button-prev{
    bottom: 15% !important;
  }

  .sectionPage{
      margin-top: 50px;
      /* min-height: 1000px; */
  }

  .imgCardNews{
      position: relative;
  }

  .videoCircle{
      position: absolute;
      bottom: 5px;
      left: 5px;
      width: 30px;
      height: 30px;
      width: 50px !important;
      height: 50px !important;
  }

  .contantHeader h2 span{
      font-size: 50px;
  }

  .cardsMembers{
      max-width: 1200px;
  }

  .cardsMembers .cardNews{
      max-width: 270px;
  }

  .titleSearch{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .titleSearch .searchForm {
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;

  }
  .titleSearch .searchForm input{
      padding: 10px;
  }
  .titleSearch .searchForm .iconSearch{
        width: 35px;
        height: 35px;
  }

  .titeNewsSlider h2{
    font-size: 25px;
    color: #fff;
  }


  @media (max-width:700px) {
    .titleSearch{
      flex-direction: column;
      justify-content: start;
      align-items: flex-start;
    }
    .titleSearch .searchForm{
      margin-right: auto;
      /* margin-left: auto; */
    }
    .contantHeader h2 span{
      font-size: 30px;
    }
  }

  /* ////////////////////////////About Page ///////////////////////////////// */

  .headerAbout .allHeader{
    background-color: #fff;
    padding: 30px 100px;
    border-radius: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(85, 85, 85, 0.062) 0px 5px 17px 0px;
  }


  .titelabout{
    color: #0050A4;
    font-family: fbold;
    line-height: 140%;
  }

  .titelabout span{
    color: #E71212;
    font-family: fbold;
  }

  .lineAbout{
    margin-top: 20px;
    width: 240px;
    height: 3px;
    background-color: #0050A4;
  }

  .imgAboutHeader img{
    width: 100%;
    max-width: 550px;
  }


  .textAboutPage p{
    font-family: fbold;
    color: #7E7E7E;
    line-height: 200%;
  }

  .popY{
    width: 17px;
    height: 17px;
    background-color: #f3ca34;
    border-radius: 50%;
    padding: 9px;
  }

  @media (max-width:991px) {
    .headerAbout .allHeader{
      padding: 30px 40px;
    }
    .imgAboutHeader{
      width: 40%;
    }
    .imgAboutHeader img{
      width: 100%;
    }
  }
  @media (max-width:760px) {
    .headerAbout .allHeader{
      padding: 50px 20px;
      min-height: auto;

    }
    .titelabout{
      font-size: 30px;
    }
    .imgAboutHeader{
      display: none;
    }
  }


  /* /////////////////////////////ContactUs//////////////////////////////// */

  .headerPage .slideHaeder{
    height: 400px;
  }
  .headerPage .slideHaeder img{
    height: 400px;
  }

  .bodycontactUs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }

  .rightContactUs{
    width: 50%;
  }

  .inputContact {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  .inputContact input{
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;
  }
  .inputContact textarea{
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;
  }

  .btnMorecontact{
    padding: 10px 30px;
    background-color: #0050a4;
    box-shadow: #004fa42d 0px 4px 16px;
    margin-right: auto;
    margin-top: 20px;
  }


  .titleContactUs h2{
    font-family: fbold;
    color: #0050A4;
  }

  .lineContact{
    width: 130px;
    height: 3px;
    background-color: #0050A4;
    margin-top: 16px;
  }

  .leftContactUs{
    width: 40%;
  }

  .iconNumContant{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #7E7E7E;
  }

  .contactLeft{
    display: flex;
    gap: 30px;
    margin-top: 30px;
  }


  .popiconC{
    width: 40px;
    height: 40px;
    background-color: #f3ca34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: #f3ca343f 0px 4px 16px;
  }

  @media (max-width:1300px) {
    .bodycontactUs{
      gap: 30px;
    }
    .leftContactUs{
      width: 50%;
    }
  }
  @media (max-width:991px) {
    .headerPage .slideHaeder{
      height: 300px;
    }
    .headerPage .slideHaeder img{
      height: 300px;
    }
    .headerPage .contantHeader{
      bottom: 27%;
  }
    .headerNews .swiper-button-next,.headerNews .swiper-rtl .swiper-button-prev{
      bottom: 7% !important;
    }

    .bodycontactUs{
      flex-direction: column-reverse;
      gap: 30px;
    }
    .leftContactUs{
      width: 100%;
    }
    .rightContactUs{
      width: 100%;
      max-width: 700px;
    }
  }

  @media (max-width:500px) {
    .contactLeft{
      flex-direction: column;
    }
    .iconNumContant{
      font-size: 16px;
    }
    .inputContact{
      flex-direction: column;
    }
    .popiconC{
      width: 30px;
      height: 30px;
    }
    .popiconC img{
      width: 18px;
    }
  }

  /* ///////////////////////////////Contractors Corner////////////////////////////////// */



  th{
    text-align: start;
    padding: 11px !important;
  }
  tr{
    /* border-color: transparent; */
  }


  .table{
    border-radius: 30px !important;
  }
  .titleHeader th{
    padding: 14px;
  }
  .titleHeader{
    background-color: #528CB2;
    color: #fff;
    border-collapse: collapse;
    border-radius: 20px !important;
    overflow: hidden;
    padding: 10px ;
  }

  .tableTitel {
    margin-bottom: 0;
    border-color: transparent;
  }

  .tableTitel.active th{
    color: #528CB2 !important;
  }

  table  th:first-child{
    border-radius: 0px 10px 10px 0px;

    }
    table th:last-child{
      border-radius: 10px 0 0 10px ;
  }

  .accordion-button::after{
    content: none;
  }
  .id1{
    width: 120px;
  }
  /* .id2{
    width: 330px;
  } */
  .titletable .id2{
    width: max-content;
  }

  .titletable p  {
    display: flex;
    gap: 10px;
    width: 100% !important;
  }
  .titletable p:first-child  {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .titletable p span {
    color: #E71212;
    display: flex;
    gap: 8px;
  }


  .accordion-button:focus{
    border-color: transparent;
    box-shadow: none;
  }

  .titletable{
    display: flex;
    flex-direction: column;
    margin-right: 0px;
    gap: 10px;
    padding: 20px;
  }


  .accordion-button{
    padding: 10px !important;
  }
  .accordion-body{
    padding: 0;
  }

  .accordion-collapse{
    background-color: #b3cbff1c;
  }

  .accordion-button:not(.collapsed){
    background-color: transparent;
  }

  .companyRatings{
    background-color: #004fa411;
    padding: 15px;
    text-align: center;
    color: #0050A4;
  }

  tbody tr td{
    padding: 15px !important;

  }
  tbody tr th{
    align-items: center;
    vertical-align: middle;
  }
  tbody tr:last-child{
    border-bottom: transparent;
  }


  .nameCommissioner{
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .avatar{
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }
  .avatar img{
    width: 100%;
  }

  .circleUp{
    transition: all .5s ease;
    transform: rotate(0deg);
  }
  .circleUp.active{
    transform: rotate(180deg);
  }

  .tableTitelMob{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: right;
    color: #3E3E3E;
  }
  .tableTitelMob .id3{
    margin-right: 90px;
    /* transform: translateY(-20px); */
  }

  .idMob{
    width: 100px;
  }
  .nametitleTable{
    width: 100%;
  }
  .tableTitelMob {
    display: none;
  }

  @media (max-width: 991px) {
    .table{
      font-size: 14px;
    }
    .id1{
      width: 40px;
    }
    .idMob{
      width: 30px;
      transform: translateY(-5px);
    }
    .tableTitel{
      display: none;
    }
    .tableTitelMob {
      display: flex;
      align-items: baseline;
    }


    .nameCommissioner{
      display: flex;
      align-items: center;
      gap: 10px;
    }

  }

  @media (max-width: 500px) {
    .table{
      font-size: 12px;
    }
    .avatar {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }
  .tableTitelMob .id3{
    margin-right: 80px;

  }

  }


  /* /////////////////////////////////newsDetails/////////////////////////////////////// */


  .swiperNewsDetails{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .rightNewsDetails{
    width: 50%;
    margin-top: -100px;
  }
  .leftNewsDetails{
    width: 50%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;

  }
  .memberDetails{
    padding: 60px;
  }
  .mySwiper2{
    height: 480px;
    border-radius: 30px;
    margin-bottom: 30px;

  }
  .mySwiper2 .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

  }




  .swiperDetails{
    height: 120px;
    transform: translateY(-100px) ;
  }
  .swiperDetails .swiper-slide {
    position: relative;
    border-radius: 20px;
  }
  .swiperDetails .swiper-slide img{
    position: absolute;
    top: 0;
  }

  .swiperDetails .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }

  .swiper-slide-thumb-active{
    border: 5px solid rgba(255, 255, 255, 0.733);
    border-radius: 20px;
  }
  .swiperDetails .swiper-slide .shadowimgS{
    display: none;
  }
  .swiper-slide-thumb-active .shadowimgS{
    display: block !important;
  }

  .shadowimgS{
    position: absolute;
    top: 0;
    background-image: linear-gradient(rgba(255, 0, 0, 0.199), rgba(255, 255, 0, 0.11));
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 6;
  }

  section .allNewsDetails .swiper{
    padding: 0;
  }

  .textNewsDetails {
    margin-top: 30px;
  }
  .textNewsDetails h2{
    font-family: fbold;
    color: #0050A4;
  }

  .detailsPage{
    background-color: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: rgba(85, 85, 85, 0.15) 0px 5px 15px 0px;

  }
  .detailsPage p{
    font-family: fbold;
    color: #7E7E7E;
  }

  @media (max-width: 1700px) {
    .leftNewsDetails{
      width: 50%;
      max-width: 450px;
    }
    .mySwiper2{
      height: 300px !important;
    }
    .swiperDetails{
      height: 90px;
      transform: translateY(-100px) ;
    }
  }
  @media (max-width: 991px) {
    .mySwiper2{
      height: 300px !important;
    }
    .swiperDetails{
      height: 100px;
      transform: translateY(-100px) ;
    }
  }
  @media (max-width: 800px) {
    .allNewsDetails{
      margin-top: 60px;
    }
    .swiperNewsDetails{
      flex-direction: column;
    }
    .rightNewsDetails{
      width: 100%;
      margin: 0;
    }
    .leftNewsDetails{
      width: 100%;
    }
    .detailsPage{
      padding: 30px;
      margin-top: -10px;
    }

  }


  /* ///////////////////////////////////////////// */

  .navPagination{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-left: auto;
    width: 100%;
    margin-right: auto;

  }
  .pagination{
    justify-content: center;
  }
  .navPagination ul{
    gap: 8px;
    margin: 0 auto;
    transform: translateX(20px);
  }
  .page-link{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: none;
    background-color: #F3F3F3;
    color: #323232 !important;
    box-shadow: 0 0 0 !important;
    outline: none;
  }

  .page-item:first-child .page-link{
    border-radius: 30px;
  }
  .page-item:not(:first-child) .page-link{
    border-radius: 30px;
  }
  .active>.page-link, .page-link.active{
    background-color: #0050A4;
    color: #fff !important;
  }


  /* ///////////////////////////////////// */


  /*=============== SCROLL UP ===============*/

  .scrollup{
    position: fixed;
    right: 2rem;
    bottom: -20%;
    color: #fff;
    font-size: 50px;
    z-index: 99;
    transition: .3s;
    background-color: #E71212;
    box-shadow: #e712123f 0px 4px 16px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .scrollup img{
    margin-right: 2px;
    width: 20px;
  }

  .scrollup:hover{
    transform: translateY(-.25rem);
    color: #fff;
  }

  /* Show Scroll Up*/
  .show-scroll{
    bottom: 3.5rem;
  }

  /* //////////////////////////Error page//////////////////////////// */

  .errorPage{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 132px;
    text-align: center;
    min-height: 485px;
  }
  .errorPage img{
    width: 100%;
    max-width: 600px;
  }
  .error2 img{
    width: 100%;
    max-width: 300px;
  }

  .errorPage h2{
    color: #0050A4;
    font-weight: 600;
  }
  .errorPage p{
    color: #528CB2;
  }
  @media (max-width:900px) {
    .error2 img{
      width: 100%;
      max-width: 200px;
    }
  }

  .memberDetails .leftNewsDetails {
    width: 50% !important;
    max-width: 400px;
    height: 450px;
    margin-right: auto;
    margin-left: unset;

  }
  .memberDetails .detailsPage{
    margin-top: 40px;
  }
  .imgMember img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    object-position: top;
  }

  @media (max-width:800px) {
    .memberDetails{
      padding: 20px;
    }
    .memberDetails .leftNewsDetails{
      margin: 0 auto;
      height: 300px ;
      width: 100% !important;
      max-width: 300px;
    }
  }


  .allAchievementsSecCard{
    margin-top: 40px;
  }

  .cardAchievementsSec{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 100%;
    max-width: 360px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(88, 88, 88, 0.062) 0px 3px 8px;
    margin: auto;
    margin-bottom: 30px;
  }
  .cardAchievementsSec img{
    width: 110px;
    height: 100px;
  }

  .cardPartnars{
    background-color: #fff;
    width: 100%;
    height: 150px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(88, 88, 88, 0.062) 0px 3px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cardPartnars img{
    width: 100%;
    height: 110px;
    object-fit: contain;
  }

  @media (max-width: 1400px) {
    .cardAchievementsSec h4{
      font-size: 20px;
    }
  }
  @media (max-width: 1100px) {
    .cardAchievementsSec h4{
      font-size: 17px;
    }
    .cardAchievementsSec img{
      width: 90px;
      height: 80px;
    }
  }
/* ////////////////////////// */
.textAboutPage ul{
    line-height: 32px !important;
    padding: 0;
}

.textAboutPage ul li{
    font-family:"myFirstFont" !important;
    color: #7e7e7e;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    list-style: none;
    padding-right: 23px;
}

.textAboutPage ul li::before{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color:#F3CA34;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ////////////////////////// */








.imgTenders{
    width: 110px;
    height: 100px;
    object-fit: cover;
  }
  .imgTenders img{
    width:100% ;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }







  .textCardTenders span {
    margin-bottom: 7px;
    display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      color: #3e3e3e;
      font-weight: 700;
  }






  .textCardTenders span:nth-child(2){
    color: #7e7e7e !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .textCardTenders p {

    color: #7e7e7e !important;
  }

  /* .cardTenders{
    align-items: center;
  } */


  .memberDetails .imgSocialStudies{
    max-width: 520px;
    height: 400px;
  }

  @media (max-width: 991px) {
    .memberDetails .imgSocialStudies{
      height: 270px;
    }
  }
