/****#0407f7***/
[v-cloak] {
  display: none;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tajawal', sans-serif;
}
nav{
  z-index: 999999;
  width: 100%;  
  background: #0407f7;
}
nav .wrapper{
  position: relative;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
    padding-right: 0;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}

.nav-links li:hover{
    background-color: #356190;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  z-index: 999999;
  position: absolute;
  background: #323335;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
/*

/*
.mega-box {
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 70px;
    opacity: 1;
    visibility: visible;
    width: 100%;
  
}

/*
.mega-box .content{
  background: #356190;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}*/
/* .mega-box .content .row{
 width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}*/

.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}
nav ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
.goright{
    float: left;
}
.h6-size{
  font-size: 10px;
}

.social-media span a{
  border: 1px solid #0407f7;
    padding: 8px;
    border-radius: 90%;
    color: #4382c2;
    background-color: #ffffff29;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3S all ease-in;
}
.facebook:hover{
  background-color:#4267B2;
  transition: .3S all ease-out;
  color: #fff;
  border:1px solid #4267B2;
}
.instagram:hover{
  background-color:#E1306C;
  transition: .3S all ease-out;
  color: #fff;
  border:1px solid #E1306C;
}
.twitter:hover{
  background-color:#1DA1F2;
  transition: .3S all ease-out;
  color: #fff;
  border:1px solid #1DA1F2;
}

.header_down ul{
  margin: 0px 0px 0px 0px !important;
    display: flex;
    height: auto;
    vertical-align: middle;
}
.header_down ul li{display: inline;padding: 0px !important;margin: 0px !important}
.header_down ul li a{padding: 5px 9px;margin: 0px !important;}
a{
  text-decoration: none;
}

.icon a{
  color: #3c3c3b;
  
}
.pointer{
  cursor: pointer;
}
.mega-content {
    background: #323335;
    color: #fff;
}
.mx-2 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}
a.tab {
    color: #b5b2b2 !important;
    border: 1px solid #b5b2b2 !important;
    padding: 0px 10px !important;
    font-size: 15px !important;
    border-radius: 13px !important;
    margin: 0px 5px;
    line-height: 24px;
    display: inline-block;
}
a.activeTab {
    background-color: #0407f7 !important;
    border-color: #0407f7 !important;
    color: #fff !important;
}
a.tab:hover {
  color: #fff !important;
  border-color: #fff !important;
  transition: all .5s;
}

.mega-card {
    width: 100%;
    overflow: hidden;
}
.header-mega-card .img img {
    width: 100%;
    transition: all .5s;
}
.header-mega-card .img{
  overflow: hidden;
}
h3.title-mega-card {
    font-size: 17px;
    padding: 6px 0px !important;
    margin: 0px !important;
    transition: all .5s;
}
span.date-mega-card {
    margin: 0px !important;
    padding: 0px !important;
    font-size: 13px;
    color: #d0d0d0;
    line-height: 40px;
}
a.mega-card-link {
    padding: 0px !important;
    margin: 0px !important;
}
a.mega-card-link:hover h3.title-mega-card{
  color:#76b8ff;
  transition: .6s;
}a.mega-card-link:hover .header-mega-card .img img{
  transform: scale(1.2);
  transition: all .5s;
  opacity: 0.7;
}
.date-mega-card span {
    margin: 0px 5px;
}
.drop-menu-item{
  padding: 0px 15px;
}
.custom-form-control {
    line-height: 45px;
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin: 10px 0px;
    border: 1px solid #fff;
    border-radius: 0px;
    padding: 0px 15px;
}
button.btn_search {
    width: 100%;
    text-align: center;
    line-height: 45px;
    border: 1px solid #0407f7;
    background-color: #0407f7;
    color: #fff;
    margin: 0px !important;
    padding-top: 2px;
    transition: .5s;
}
.btn_search:hover{
    border: 1px solid #2879d0;
    background-color: #2879d0;
    transition: all .5s;
}

.custom-slider {
    width: 100%;
    background-color: #eee;
    height: calc(100vh - 145.33px);
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.swiper-slide .subtitle {
    font-size: 16px;
    color: #e2e2e2;
}
.swiper-slide-box {
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.swiper-slide-box .text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: start;
}
.swiper-button-next, .swiper-button-prev {
    color: #ffffffd1 !important;
    background-color: #1f131385;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 19px !important;
  }

.bg-over {
    width: 100%;
    height: 100%;
    background-color: #0009;
}
.p-left{
    padding-left: 20%;
}
.swiper-slide .text h2 a{
    font-size: 45px;
    line-height: 1.3;
    color: #fff;
}
.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
}
section.news {
    padding: 50px 0px;
}
.custom-title {
    color: #254567;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.header-primary-news{
    min-height: 470px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: rgba(0,0,0,.2);
}
.bg-overflow{
  position: relative;
}
.content {
    position: absolute;
    bottom: 0;
    padding: 10px;
    color: #fff;
}
.content span.catgory {
    font-size: 14px;
    background-color: #0407f7;
    padding: 5px;
    border-radius: 4px;
}
.content h3 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
    margin: 20px 0px;
}
.img-post {
    margin: 5px;
    overflow: hidden;
}
.list-news ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.deteil_post {
    padding: 5px 5px 0px 0px;
}
.deteil_post h5 {
    color: #444;
    font-size: 14px;
    font-weight: 600;
     transition:all .5s;
}
.deteil_post span {
    color: #767676;
    font-size: 12px;
     transition:all .5s;
}
.list-news a:hover h5{
  color: #0407f7;
  transition:all .5s;
}
.list-news ul .img-post {
  background-color: black;
  transition:all .5s;
}
.list-news a:hover span{
  color: #444;
  transition:all .5s;
}
.list-news a:hover img{
  opacity: 0.5;
  transition:all .5s;
}

h3.custom-title-2 {
    background-color: #828282;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid;
    padding: 15px;
    margin: 0px;
    color: #fff;
}

.timeline-news ul{
  padding: 0px;
  margin: 0px;
  list-style: none;
}.timeline-news ul li{
  padding: 15px 5px;
  border-bottom: 2px solid #eee;
  transition:all .5s;
  background-color: #f9f9f96e;
}
.timeline-news h5 {
    color: #2d2d2d;
    font-size: 14px;
    font-weight: 600;
    transition: all .5s;
    margin-right: 0px;
}
.timeline-news span {
    color: #767676;
    font-size: 12px;
    transition: all .5s;
}
.timeline-news a:hover h5{
  color: #0407f7;
  transition:all .5s;
}

.timeline-news a:hover span{
  color: #444;
  transition:all .5s;
}
.timeline-news a:hover li{
  transition:.1s;
  border-right: 2px solid #0407f7;
  background-color: #7595b714;
}
.org_members {
    background: #fcfcfc;
}
.org_members ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.org_members li{
    padding: 5px 5px 5px 10px;
}.org_members li:nth-child(even) {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}.org_members li:nth-last-child(1){
  border-bottom:0 !important;
}

.org_members li a{
    color: #1f1f1f;
}.org_members li a:hover{
    color: #0407f7;
}
.card-new {
    overflow: hidden;
    margin-bottom: 20px;
}
.card-new-header{
  position: relative;
}.card-new-header img {
  filter: brightness(75%);
  width: 100%;
  height: 225px;
}
.card-new-header span{
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
  background-color:#23466b;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 13px;
}
.card-new-body{
  padding: 10px;
}
.card-new-body span{
  font-size: 13px;
  color: #666;
}.card-new-body h3{
  color: #333;
  font-weight: 600;
  font-size: 17px;
}
.card-new a:hover .card-new-body h3{
  color: #0407f7;
  transition:.5s;
}
.card-new a:hover .card-new-header img{
  filter: brightness(60%);
  transition:.5s;
}

.form-contact {
    padding: 15px;
    background-color: #f5f5f591;
}
.form-contact label.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}button.btn-p{
    border: none;
    padding: 10px 30px;
    width: 100%;
    background-color: #0407f7;
    color: #fff;
    border-radius: 4px;
    transition:.5s;
}
button.btn-p:hover{
  background-color: #366496;
  transition:.5s;
}
.item-of-members {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    padding: 10px;
}
.item-of-members h3 {
    font-size: 17px;
    font-weight: 600;
    color: #3e3e3e;
}
.item-of-members span {
    color: #2a4d71;
    font-size: 14px;
}

.form-contact h3 {
    font-size: 19px;
    color: #2a4d71;
}/*footer {
    padding: 50px 0px;
    background-color: #f7fafc;
}
.content-footer {
    margin: 10px 0px;
}*/

#button-addon1 {
  color: #ffc371;
}

i {
  color: #ffc371;
}

.form-control::placeholder {
  font-size: 0.95rem;
  color: #aaa;
  font-style: italic;
}

.form-control.shadow-0:focus {
  box-shadow: none;
}
footer {
    background-color: #211c1c;
}
footer h6 {
    color: #fff;
}
.social-media {
    float: left;
}
footer .social-media a{
  color: #fff !important;
  border: #fff;
}
footer li a:hover{
  color:#d6d6d6 !important;
}
.overflow_hidden{
  overflow: hidden;
}
.overflow_hidden::-webkit-scrollbar {
  display: none;
}

a.menu {
  color: #000;
}
#dropdown .header_up{
    display: none;
  }
.header-mobile {
    background: #323335;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 999;
    overflow-x: auto;
    transition: all .5s;
}
.header-mobile-active{
  transition: all .6s;
  right: 0%;
}

.header-mobile ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.header-mobile li {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-mobile li a{
    color: #ffffff;
}
.header-mobile input[type="text"] {
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    width: 70%;
    margin: 0px;
}
.header-mobile button {
    border: none;
    padding: 5px;
    width: 28%;
    margin: 0px;
    color: #fff;
    background: #4482c2;
    border-radius: 4px;
}

/*************************** page 2 *****************************/
.post-centent, .aside-page {
    padding: 10px;
    margin: 25px 0px;
    border: 1px solid #eee;
}
.post-centent .breadcrumb-post{
    margin: 0px;
}
li.breadcrumb-item {
    font-size: 14px;
}
li.breadcrumb-item a {
    color: #555;
}.breadcrumb-item.active {
    color: #6c757d !important;
}
.catgory_page {
    padding: 0px;
    margin: 0px;
}
.catgory_page ul {
    margin: 0px;
    padding: 0PX;
    list-style: none;
    display: flex;
}
.catgory_page li {
    background: #211c1c;
    margin: 0px 5px;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 4px;
}.catgory_page li a{ color: #fff;}

.post-centent h1{
    font-size: 41px;
    font-weight: 700;
    color: #0407f7;
    line-height: 1.1;
    margin: 20px 0px;
}
span.time {
    font-size: 14px;
    color: #737373;
}
.image-page{
    margin: 10px 0px;
}
.sher-page {
    padding: 10px 0px;
}
.sher-page ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.sher-page li {
    display: inline-block;
    margin-left: 10px;
    width: 34PX;
    height: 34px;
    text-align: center;
    position: relative;
}
.sher-page a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
}
.list-pages ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.list-pages li {
    padding: 5px 0px;
}
.list-pages a {
    color: #292929;
}.list-pages a:hover{
    color: #0407f7;
}









/****************************responsive****************************/

@media only screen and (max-width: 600px) {
  .swiper-wrapper h2 a{
    font-size: 26px !important;
  }
  .post-centent h1{
    font-size: 26px !important;
}
  .swiper-slide-box .text {
    margin: 0px 30px;
  }
  .swiper-button-next, .swiper-button-prev {
    color: #ffffffd1 !important;
    background-color: #1f131385;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 19px !important;
  }
}
@media only screen and (max-width: 1197px) {
    .header-desktop{
      display: none;
    }
    #dropdown .header_up{
      display: block;
    }
  }



