@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2&family=Tajawal&display=swap");
* {
  font-family: "Baloo Da 2", "Tajawal";
  outline: none !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

body {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 15;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

nav .top-nav {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px 10px 8%;
  border-bottom: #D5D5D5 1px solid;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

nav .top-nav .links-parent a {
  background: #eee;
  color: #2D2D2D;
  border-radius: 50px;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 13px;
}

nav .top-nav .info-parent a {
  margin-left: 15px;
}

nav .top-nav .info-parent a p {
  color: #0eafed;
  display: inline-block;
  vertical-align: middle;
  margin: 0px;
}

nav .top-nav .info-parent a img {
  display: inline-block;
  vertical-align: middle;
}

nav .bottom-nav {
  padding: 10px 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .bottom-nav .logo {
  width: 300px;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

nav .bottom-nav ul {
  padding: 0;
  padding-right: 25px;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

nav .bottom-nav ul li a {
  padding: 4px 18px;
  display: block;
  color: #222;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

nav .bottom-nav ul li a:hover {
  background: #eee;
  color: #222;
}

nav .bottom-nav ul li.n-lang a {
  padding: 0;
}

nav .bottom-nav ul li.n-lang img {
  width: 30px;
  vertical-align: middle;
}

nav .bottom-nav ul li.n-hid {
  display: none;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}

nav .bottom-nav ul li.n-active {
  border-bottom: #0eafed 2px solid;
}

nav.scrolled {
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 0 8px;
          box-shadow: rgba(0, 0, 0, 0.16) 0 0 8px;
}

nav.scrolled .top-nav {
  margin-top: -50px;
}

nav.scrolled .bottom-nav .logo {
  width: 235px;
}

nav.scrolled .bottom-nav ul {
  border-radius: 0;
  background: none;
}

nav.scrolled .bottom-nav ul li a {
  border-radius: 5px;
  margin: 0 3px;
}

nav.scrolled .bottom-nav ul li.n-hid {
  display: block;
}

footer {
  background: #FBFBFB;
  border-top: #0eafed 2px solid;
}

footer .row {
  padding: 20px 8%;
  margin: 0;
}

footer .logo {
  margin-top: 50px;
  width: 90%;
}

footer h2 {
  margin: 0;
  line-height: 1;
  font-size: 20px;
  color: #0eafed;
  margin-bottom: 10px;
}

footer ul {
  padding: 0;
  padding-left: 10px;
  margin: 0;
  list-style: none;
  border-left: 2px #0eafed solid;
}

footer ul li span {
  font-size: 17px;
  color: #001a4b;
}

footer ul li img {
  width: 22px;
  margin-right: 6px;
  vertical-align: middle;
}

footer .copy {
  text-align: center;
  background: #001a4b;
  font-size: 13px;
  padding: 2px 5px;
  color: #fff;
}

.error-msg,
.succ-msg {
  width: 100%;
  text-align: center;
  background: #04bb66;
  border-radius: 6px;
  padding: 6px;
  color: #fff;
  margin-bottom: 24px;
}

.error-msg {
  background: #e63030;
}

.s-menu .n-active {
  background: #0eafed;
  color: #fff;
}

.loading-parent {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  position: fixed;
  z-index: 5000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.loading-parent .logo {
  height: 80px;
}

.loading-parent .loading {
  margin-top: 25px;
  width: 40px;
  height: 40px;
}

.btn1,
button {
  background: #0eafed;
  color: #fff;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 5px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn1:hover,
button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 3px 15px;
          box-shadow: rgba(0, 0, 0, 0.25) 0 3px 15px;
}

.btn1:active,
button:active {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.16) 0 3px 8px;
}

.input1 {
  background: #fff;
  border-radius: 5px;
  border: #ddd 1px solid;
  font-size: 15px;
  padding: 10px 15px;
  width: 100%;
  resize: vertical;
}

.nav-toggle {
  background: none;
  display: none;
  position: absolute;
  left: 5px;
}

.nav-toggle img {
  width: 30px;
  vertical-align: middle;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.nav-toggle:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.is-loading {
  overflow: hidden;
}
#header_image
{
  background-image: url('/img/slider1_rtl.jpg');
  background-size: cover;
}
.page-title {
  width: 100%;
  margin: 0;
  font-size: 50px;
  font-family: "Tajawal";
  text-align: center;
  color: #0eafed;
  line-height: 1;
}

.page-title p {
  text-align: center;
  font-size: 30px;
  font-family: "Tajawal";
  color: #001a4b;
  margin: 0;
  margin-top: 15px;
  font-weight: normal;
}
.video-bo iframe
{
 border-radius: 5px;
}
#Video-Center
{
  justify-content: center;
}
@media (max-width: 768px) {
  .video-bo iframe
{
  width: 90%;
}
}

.banner-title {
  background-size: cover;
  width: 100%;
  margin-top: 83px;
  padding: 10px 7%;
}

.banner-title h1 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}

.services-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 8% 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: 20px;
}

.services-parent .service-box {
  width: 360px;
  border: #ddd 1px solid;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  display: block;
  border-bottom: #cacaca 2px solid;
}

.services-parent .service-box h1 {
  margin: 0;
  line-height: 1;
  color: #0eafed;
}

.services-parent .service-box h2 {
  color: #001a4b;
  margin: 0;
  font-weight: normal;
}

.services-parent .service-box p {
  margin: 0;
}

.services-parent .service-box img {
  position: absolute;
  top: 0;
  right: -26%;
  width: 76%;
  opacity: 0.5;
}

.services-parent .service-box2 {
  width: 360px;
  border: #ddd 1px solid;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  display: block;
  border-bottom: #cacaca 2px solid;
  margin-bottom: 25px;
}

.services-parent .service-box2 .sb-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.services-parent .service-box2 .sb-header img {
  width: 50px;
  position: relative;
  top: 0;
  right: 0;
}

.services-parent .service-box2 .sb-header div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.services-parent .service-box2 h1 {
  margin: 0;
  font-size: 25px;
  font-size: 22px;
  line-height: 26px;
  color: #001a4b;
  margin-left: 15px;
  font-weight: normal;
}

.services-parent .service-box2 p {
  text-align: center;
  margin: 0;
}

.services-parent .service-box2 img {
  position: absolute;
  top: 0;
  right: -26%;
  width: 76%;
}

.editMod {
  display: none;

}
/*scroll to top button*/
#scroll_top
{
  position: fixed;
    width: 50px;
    display: flex;
    height: 50px;
    border-radius: 50%;
    right: -60px;
    bottom: 10px;
    z-index: 2;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: 0.6s;
    transform: rotate(90deg);
}
@media (max-width : 900px)
{
  #scroll_top
  {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/*end of scroll to top button*/

/*# sourceMappingURL=global.css.map */
.card {
    position: relative;
}

.cardimg {
    width: 23rem;
    height: 25rem;
    border-radius: 1.25rem;
    border: 0.5rem solid #666;
    overflow: hidden;
    position: relative;
}

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

.tag {
    width: 20.5rem;
    height: 11.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-top: 0.5rem solid #666;
    border-left: 0.5rem solid #666;
    border-radius: 1rem 0 0 0;
    padding: 0.3rem;
}

.tag::after {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
    background-color: transparent;
    top: -1.125rem;
    right: 0;
    border-bottom-right-radius: 0.8rem;
    box-shadow: 0.375rem 0.375rem #fff;
}

.tag::before {
    width: 1.125rem;
    height: 1.25rem;
    content: "";
    position: absolute;
    background-color: transparent;
    right: 0.5rem;
    top: -1.75rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0.375rem 0.375rem #666;
}

.curve_one,
.curve_two {
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    position: absolute;
}

.curve_one {
    background-color: transparent;
    left: 6%;
    bottom: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0.375rem 0.375rem #666;
}

.curve_two {
    background-color: transparent;
    left: 8%;
    bottom: 0;
    border-bottom-right-radius: 0.8rem;
    box-shadow: 0.375rem 0.375rem #fff;
}

.tag>p {
    background-color: #0eafed;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.3rem 0.625rem;
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 0.3125rem;
}

.tag>p>span, .title>p>span {
    font-weight: 600;
    font-size: 1rem;
}


.title {
    width: 19.5rem;
    height: 3.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 0.5rem solid #666;
    border-right: 0.5rem solid #666;
    border-radius: 0 0 1rem 0;
    padding: 0.3rem;
}

.title::after {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    right: -1.125rem;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.375rem -0.375rem #fff;
}

.title::before {
    width: 1.125rem;
    height: 1.25rem;
    content: "";
    position: absolute;
    background-color: transparent;
    right: -1.625rem;
    top: 0.5rem;
    border-top-left-radius: 0.5rem;
    box-shadow: -0.375rem -0.375rem #666;
}

.curve_three,
.curve_four {
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    position: absolute;
}

.curve_three {
    background-color: transparent;
    top: 15%;
    left: 0.5rem;
    border-top-left-radius: 0.5rem;
    box-shadow: -0.375rem -0.375rem #666;
}

.curve_four {
    background-color: transparent;
    top: 13%;
    left: 0;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.375rem -0.375rem #fff;
}

.title>p {
    background-color: #0eafed;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.3rem 0.625rem;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 0.3125rem;
}

