/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  		This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  		calculation of the height of the owl-item that breaks page layouts
  	 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif !important;
}

header nav {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  margin-inline-end: 1vw;
}
header nav ul li a {
  font-size: 15px;
  color: #000;
}

.lng {
  display: flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 25px;
  background-image: linear-gradient(to left, #6a21a8, #5f38b5, #5249bf, #4458c8, #3565cf);
}
.lng span {
  color: #fff;
  margin-inline-end: 5px;
}

.crd-lidr {
  position: relative;
}
.crd-lidr img {
  border-radius: 10px 10px 0 0;
  height: 500px;
}

.crd-lidr-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
  flex-direction: column;
  justify-content: end;
  padding: 0 5%;
  background: linear-gradient(0, rgba(0, 0, 0, 0.7215686275), transparent);
}
.crd-lidr-cont h5 {
  color: #fff;
  margin-bottom: 15px;
}
.crd-lidr-cont h2 {
  color: #fff;
}

.to-hip {
  position: relative;
  margin-top: -30px;
  z-index: 5;
}
.to-hip img {
  width: 100%;
}

.how-to {
  padding-top: 50px;
}
.how-to p {
  margin: 20px 0;
  text-align: center;
}

.title-t {
  display: flex;
}
.title-t.center {
  justify-content: center;
}
.title-t h2 {
  position: relative;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: bold;
}
.title-t h2::after {
  content: " ";
  display: block;
  width: 100%;
  height: 20px;
  background: url(../../img/tit.svg) no-repeat top center;
  position: absolute;
  right: 0;
  bottom: -30px;
}

.item-b {
  text-align: center;
  margin-bottom: 20px;
}
.item-b img {
  width: 100px;
  margin-bottom: 15px;
}
.item-b h6 {
  font-size: 14px;
}

.about-us {
  min-height: 500px;
  background: url(../../../img/bc-bout.svg) no-repeat top center;
  background-size: 100%;
  padding-top: 100px;
}

.about-us-item {
  padding: 40px;
  background-color: #fff;
  position: relative;
  text-align: start;
}
.about-us-item h3 {
  margin-bottom: 20px;
  font-weight: 500;
  padding: 5px 10px;
  border-inline-start: 10px solid #3565CF;
}
.about-us-item p {
  margin-bottom: 10px;
  font-size: 15px;
}
.about-us-item img {
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translatey(-50%);
  width: 300px;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
}
.about-us-item::after {
  content: " ";
  width: 100%;
  height: 20px;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: url(../../../img/bv.svg) no-repeat top center;
}

.rr-link {
  margin: 20px 0;
}
.rr-link a {
  display: flex;
  align-items: center;
}
.rr-link a h4 {
  color: #000;
  margin-inline-end: 10px;
  font-size: 20px;
}
.rr-link a img {
  width: 30px;
}

.dowlod {
  padding: 10px 0;
}

.dowlod-info p {
  margin-bottom: 20px;
}
.dowlod-info ul {
  display: flex;
  justify-content: center;
}
.dowlod-info ul li {
  margin-inline-end: 15px;
}
.dowlod-info ul li img {
  width: 150px;
  margin-bottom: 15px;
}

.servers {
  padding-bottom: 80px;
  min-height: 500px;
  background: url(../../../img/bc-bout.svg) no-repeat top center;
  background-size: 100%;
  padding-top: 100px;
}

.pr {
  text-align: center;
}
.pr p {
  font-size: 14px;
}

.it-crd {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}
.it-crd img {
  margin: auto;
  width: 50px !important;
  margin-bottom: 15px;
}
.it-crd h5 {
  text-align: center;
  font-size: 17px;
  position: relative;
}
.it-crd span {
  display: block;
  width: 40px;
  height: 2px;
  background: #224751;
  margin: 10px auto;
}
.it-crd p {
  color: #686868;
  font-size: 13px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.review {
  padding: 60px 0;
}

.item {
  padding: 0 10px;
}

.item-review {
  box-shadow: rgba(0, 0, 0, 0.0509803922) 0px 4px 12px;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  margin: 20px 0;
}
.item-review > img {
  margin-top: -30px;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-review p {
  color: #686868;
  font-size: 13px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.item-review h4 {
  font-weight: bold;
  font-size: 15px;
}
.item-review ul {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.item-review ul li {
  margin-inline-end: 3px;
}
.item-review ul li img {
  width: 15px !important;
}

.cont-u {
  padding: 40px 0;
  background: #F8F8F8;
}

.form-g {
  margin-bottom: 20px;
}
.form-g input {
  font-size: 14px;
  padding: 0 10px;
  border: 0;
  width: 100%;
  display: block;
  height: 40px;
  border-radius: 8px;
}
.form-g textarea {
  font-size: 14px;
  padding: 10px;
  border: 0;
  width: 100%;
  display: block;
  height: 100px;
  resize: none;
  border-radius: 8px;
}

.form-bt button {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 8px 12px;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  border-radius: 25px;
  background-image: linear-gradient(to left, #6a21a8, #5f38b5, #5249bf, #4458c8, #3565cf);
}

footer {
  background-color: #fff;
  padding: 40px 0 0 0;
  background: url(../../../img/bcc.svg) no-repeat top center;
  background-size: 100%;
}

.footlogo img {
  margin-bottom: 20px;
}
.footlogo p {
  margin-bottom: 15px;
}
.footlogo ul {
  display: flex;
}
.footlogo ul li {
  margin-inline-end: 10px;
}

.ftr h6 {
  font-weight: bold;
  margin-bottom: 20px;
}
.ftr ul li {
  margin-bottom: 10px;
}
.ftr ul li a {
  color: #000;
}

.foot-t {
  border-top: 1px solid #707070;
  padding: 10px;
}

.foot-tt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot-tt p {
  font-size: 13px;
}

.inner {
  position: relative;
}
.inner img {
  border-radius: 20px 20px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 50vh;
  width: 100%;
}
.inner .titt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10vw;
}
.inner h2 {
  text-align: left;
  color: #fff;
  font-weight: bold;
}

.innp-bout p {
  margin-bottom: 20px;
  font-size: 13px;
}

.nave-responsive {
  display: none;
}

.owl-slider .owl-nav {
  position: absolute;
  left: 0;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.owl-slider .owl-nav button img {
  width: 20px !important;
}

.owl-nav button:focus {
  outline: none;
}
.owl-nav button:hover {
  background-color: transparent !important;
}

.owl-elected .owl-nav,
.owl-elected2 .owl-nav {
  position: absolute;
  left: 0;
  bottom: -45px;
  z-index: 6;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
}
.owl-elected .owl-nav button img,
.owl-elected2 .owl-nav button img {
  width: 35px !important;
}

.bill-item {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.vais-bill {
  text-align: center;
}

.vais-bill img {
  max-width: 400px;
  margin-bottom: 20px;
  width: 100%;
}

.vais-bill h4 {
  color: #3C3960;
  font-weight: 600;
}

.vais-bill span {
  display: block;
  margin-bottom: 20px;
}

.vais-bill a {
  display: block;
  background-color: #A36936;
  color: #fff;
  padding: 12px;
  margin: auto;
  max-width: 300px;
  margin-top: 20px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 40px;
}

.bill-body {
  margin: 20px 0;
  background-color: #fff;
  padding: 20px;
}

.bill-body .table thead th {
  color: #AAAAAA;
  font-weight: 400;
  border: 0;
}

.bill-footer {
  background-color: #fff;
  padding: 20px;
}

.qrcodes img {
  margin-bottom: 10px;
}

.qrcodes p {
  font-size: 12px;
  color: #00263E;
}

.bill-item {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.bill-head {
  background-color: #fff;
  padding: 20px;
}

.bill-head > span {
  display: block;
  text-align: center;
}

.bill-head h6 {
  font-weight: 600;
  text-align: center;
}

.bh {
  text-align: center;
}

.bh span {
  font-size: 14px;
}

.bill-head {
  background-color: #fff;
  padding: 20px;
}

.bill-head > span {
  display: block;
  text-align: center;
}

.bill-head h6 {
  font-weight: 600;
  text-align: center;
}

.bh {
  text-align: center;
}

.bh span {
  font-size: 14px;
}

html[dir=ltr] body {
  direction: ltr;
}
html[dir=ltr] body .dowlod-info {
  text-align: start;
}
html[dir=ltr] body .dowlod-info ul {
  flex-direction: column;
}
html[dir=ltr] body .rr-link a img {
  transform: rotate(180deg);
}

/*end genral*/
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}
@media (max-width: 1200px) {
  .gw-tab-container {
    flex-direction: column;
  }
  .gtc__img {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .about-us-item img {
    display: none;
  }
  .to-hip {
    margin-top: -16px;
  }
  .about-us {
    min-height: 0;
    padding: 40px 0;
    background-size: cover;
  }
  .about-us-item {
    padding: 15px;
  }
  .dog {
    overflow: hidden;
  }
  .img-kid {
    display: none;
  }
  .owl-slider .owl-dots {
    right: 10px;
    bottom: 30%;
  }
  nav {
    position: fixed;
    width: 100%;
    padding-top: 20px;
    z-index: 44;
    /* width: inherit; */
    height: 100%;
    background-color: #fff;
    left: -100%;
    top: 30px;
    transition: left 0.5s;
    flex-direction: column;
    justify-content: flex-start !important;
  }
  nav .logo {
    display: none;
  }
  nav ul {
    flex-direction: column;
    margin-bottom: 20px;
  }
  nav.open {
    left: 0;
  }
  nav .bottom-links ul {
    flex-direction: column;
  }
  nav .bottom-links ul {
    width: 100%;
  }
  nav .bottom-links ul li a {
    font-size: 15px;
  }
  nav .top-links {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
  }
  nav .top-links ul {
    margin-bottom: 20px;
  }
  .fl-ro {
    flex-direction: column-reverse;
  }
  .half-back::after {
    width: 100%;
    height: 250px;
  }
  .o1 {
    order: 1;
  }
  .o2 {
    order: 2;
  }
  .o3 {
    order: 3;
  }
  .ov-items {
    flex-wrap: wrap;
  }
  .ov-items .ovi-50 {
    width: 100%;
  }
  .ov-items .ovi-25 {
    width: 50%;
  }
  .elected-img {
    margin-top: 20px;
  }
  .elected-img img {
    width: 100%;
  }
  .border-r,
  .border-l {
    border: 0;
  }
  .nave-responsive {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
  }
  .nave-responsive a img {
    width: 120px;
  }
  .in-title h2 {
    margin-bottom: 20px;
  }
  .legislation .ovi-30 {
    width: 100%;
  }
  .legislation {
    background-size: cover;
  }
  .overview {
    top: -200px;
  }
  .overview::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: -30vw;
    background-color: #112334;
    height: 100%;
    width: 30vw;
  }
}
@media (max-width: 768px) {
  .over-top {
    padding: 0;
  }
  .header-top {
    flex-direction: column;
  }
  .ht__info {
    margin-bottom: 50px;
  }
  .list-contact {
    display: none;
  }
  .item-foot {
    justify-content: center;
  }
  .ov-items .ovi-50 {
    width: 100%;
  }
  .ov-items .ovi-25 {
    width: 100%;
  }
  .national-info p,
  .iup-info p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
  .main-card {
    margin-top: 20px;
  }
  .main-card a {
    justify-content: flex-end;
  }
  .inner img {
    height: 30vh;
  }
  .inner .titt {
    direction: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .crd-lidr img {
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .gw-tab-container .gtc-tab .nav-item {
    min-width: 100%;
  }
  .footlogo ul li img {
    width: 35px;
    height: 35px;
  }
  .dowlod-info ul li img {
    width: 120px;
  }
}/*# sourceMappingURL=style.css.map */