/*Start Search*/
.searchh {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.995);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 0;
  padding: 40px 20px;
}

/* active state */
.searchh.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 99999;
}

/* container */
.searchh .search-cont {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* form */
#searchform {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* input */
#search-input {
  flex: 1;
  padding: 18px 56px 18px 22px; /* leave space for icon */
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 18px;
  background: #fff;
  color: #000;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* placeholder */
#search-input::placeholder {
  color: #666;
  text-transform: none;
}

/* submit button (icon inside input area on the right) */
#search-submit {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
  color: var(--sec);
}

/* close button */
.searchh .search-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: var(--main);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* End Search*/
/*start nav*/
@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    z-index: 2;
    position: relative;
    padding: 5px 0 10px;
  }
  .nav-list {
    display: flex;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    justify-content: space-evenly;
  }
  .nav-list > .link {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 5px;
    background-color: transparent;
  }
  .has_sub_menu {
    margin: 0 !important;
  }
  .has_sub_menu ~ i {
    width: 15px;
    display: inline-block;
    text-align: center;
    color: #000;
    transition:all linear 0.3s;
  }
  .sub-list i {
    color: #000;
    transition: all linear 0.3s;
  }
  .sub-list i:hover {
    color: var(--main);
    transition: all linear 0.3s;
  }
  .nav-list > .link > a {
    display: block;
    color: #000;
    position: relative;
    background: transparent;
    padding: 15px 3px;
    font-size: 16px;
    margin: 0 5px;
    font-family: bahij-regular;
    z-index: 1;
    transition:all linear 0.3s;
    /*  &:before {
        content: '';
        position: absolute;
        right: auto;
        bottom: 0px;
        width: 0%;
        height: 3px;
        background-color: var(--main);
        left: 0;
        z-index: -1;
        transition: .8s;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
      }

      &:after {
        content: '';
        position: absolute;
        right: auto;
        top: 1px;
        width: 0%;
        height: 3px;
        background-color: var(--main);
        left: 0;
        z-index: -1;
        transition: .8s;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
      }*/
  }
  .nav-list > .link:hover a,
  .nav-list > .link:hover i,
  .nav-list > .link.active a,
  .nav-list > .link.active i{
    color: var(--sec) ;
    transition:all linear 0.3s;
    background: transparent;
    /* &:before {
       right: 0;
       left: auto;
       width: 100%;
       transition: .8s;
       transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
     }

     &:after {
       right: 0;
       left: auto;
       width: 100%;
       transition: .8s;
       transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
     }*/
  }
  .sub-list {
    background-color: #FFF;
    padding: 5px 15px;
    padding-inline-end: 22px;
    list-style: none;
    overflow-x: hidden;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 100%;
    min-width: max-content;
    opacity: 0;
    z-index: 4;
    visibility: hidden;
    display: block !important;
    transition: all linear 0.3s;
    transform-origin: top;
    transform: scaleY(0);
  }
  .sub-list li {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
  }
  .sub-list li a {
    display: flex;
    width: 100%;
    position: relative;
    color: #000 !important;
    transition: all linear 0.3s;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
  }
  .sub-list li a:hover{
    color: var(--sec) !important;
  }
  .sub-list li a:before {
    content: ".";
    color: #000;
    transition: all linear 0.3s;
    font-size: 22px;
    font-weight: bold;
    margin-inline-end: 5px;
    position: relative;
    transform: translateY(-4px);
  }
  .sub-list li a:hover:before {
    transition: all linear 0.3s;
    color: var(--sec);
  }
  .sub-list li a.has_sub_menu {
    display: inline-block;
  }
  .sub-list li:last-child > a {
    margin-bottom: 0;
  }
  .sub-list .sub-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s linear;
  }
  .sub-list .sub-link:hover {
    background-color: var(--sec);
  }
  .sub-list .sub-link:last-child {
    border-bottom: 0;
  }
  .nav-list .link:hover > .sub-list {
    transition: all linear 0.3s;
    top: 100%;
    visibility: visible;
    overflow: unset;
    opacity: 1;
    transform: scaleY(1);
  }
  .sub-list .sub-list {
    top: 0;
    right: 100%;
    transform: rotateX(180deg);
    transition: all linear 0.3s;
  }
  .nav-list .link .sub-list .sub-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-list .link .sub-list .sub-link:hover > .sub-list {
    display: block;
  }
  .nav-list .link .sub-list .link:hover > .sub-list {
    transition: all linear 0.3s;
    right: 105%;
    visibility: visible;
    transform: rotateX(0deg);
    top: 0 !important;
    display: block;
  }
  .nav-btn,
  .mobile-nav-list {
    display: none;
  }
  /**/
  .nav-list > .link {
    text-transform: capitalize;
  }
  .has_sub_menu {
    margin-right: 5px;
  }
  .sub-list {
    right: 0;
  }
  .sub-list li a.has_sub_menu {
    margin-left: 5px;
  }
  .sub-list .sub-list {
    left: 100%;
  }
}
@media (max-width: 992px) {
  .nav-list {
    display: none;
  }
  .main-nav {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
  }
  .nav-btn {
    width: 40px;
    height: 40px;
    background-color: var(--sec);
    border-radius: 50%;
    margin: 0px;
    margin-inline-end: 5px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: linear 0.4s;
  }
  .nav-btn:hover {
    transition: linear 0.4s;
    background-color: var(--main);
    color: #FFF;
  }
  .mobile-nav-list .logo {
    padding: 0 30px;
  }
  .mobile-nav-list .date {
    display: flex;
    margin-top: 15px;
    padding: 0 30px;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
  }
  .mobile-nav-list .date .lang, .mobile-nav-list .date #hijrii {
    margin: 10px 0;
  }
  .mobile-nav-list .l-head {
    justify-content: center;
  }
  .mobile-nav-list {
    display: block;
    position: fixed;
    top: 0;
    overflow: scroll;
    z-index: 5;
    text-align: center;
    height: 100%;
    width: 300px;
    padding: 60px 0;
    background-color: #FFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: all 0.5s linear;
  }
  .mobile-nav-list::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .mobile-nav-list::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 50px;
  }
  .mobile-nav-list::-webkit-scrollbar {
    width: 0.5em;
  }
  .mobile-nav-list .request {
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFF;
    background-color: var(--main);
    font-size: 16px;
  }
  .mobile-nav-list .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .mobile-nav-list .phone .img-phone {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--main);
    border-radius: 50%;
  }
  .mobile-nav-list .phone .img-phone img {
    max-width: 20px;
    max-height: 20px;
  }
  .mobile-nav-list .phone p {
    font-size: 20px;
    font-family: din-bold;
    color: #000;
  }
  .mobile-nav-list .phone a {
    font-size: 20px;
    font-family: din-bold;
    color: #000;
  }
  .mobile-nav-list .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /*.fa-tiktok{
      color: #111111;
      filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

    }
    .fa-linkedin-in{
      color: #0e76a8;
    }
    .fa-snapchat{
      background-color: #FFFC00;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-facebook, .fa-facebook-square {
      color: #3b5998
    }
    .fa-twitter, .fa-twitter-square {
      color: #00aced
    }
    .fa-google-plus, .fa-google-plus-square {
      color: #dd4b39
    }
    .fa-youtube, .fa-youtube-play, .fa-youtube-square {
      color: #bb0000
    }
    .fa-tumblr, .fa-tumblr-square {
      color: #32506d
    }
    .fa-vine {
      color: #00bf8f
    }
    .fa-flickr {
      color: #ff0084
    }
    .fa-vimeo-square {
      color: #aad450
    }
    .fa-pinterest, .fa-pinterest-square {
      color: #cb2027
    }
    .fa-linkedin, .fa-linkedin-in-square {
      color: #007bb6
    }
    .fa-instagram {
      background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-spotify {
      color: #1ED760;
    }*/
  }
  .mobile-nav-list .social a {
    background-color: transparent;
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main);
    transition: all linear 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .mobile-nav-list .social a:hover {
    border: 1px solid var(--sec);
    background-color: var(--sec);
    color: #FFF;
    transition: all linear 0.3s;
  }
  .mobile-nav-list .social i {
    font-size: 16px;
  }
  .mobile-nav-list .main-phone {
    display: flex;
    gap: 10px;
    margin-inline-end: 20px;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav-list .main-phone span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main);
    border-radius: 50%;
  }
  .mobile-nav-list .main-phone span img {
    width: 16px;
    height: 22px;
  }
  .mobile-nav-list .main-phone a {
    font-size: 18px;
    color: #000;
  }
  .mobile-nav-list .link {
    font-size: 16px;
    padding: 10px 30px;
    position: relative;
  }
  .mobile-nav-list .link a {
    color: #000;
    display: block;
    text-align: center;
    font-weight: bold;
    width: 100%;
  }
  footer .sec-foot {
    margin-top: 0;
  }
  .mobile-nav-list .link a.has_sub_menu {
    display: inline-block;
    width: calc(100% - 40px);
  }
  .mobile-nav-list .link a:hover,
  .mobile-nav-list .link.active a {
    color: var(--main);
    transition: all linear 0.3s;
  }
  .mobile-nav-list .link i {
    color: #fff;
    background-color: var(--main);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform-origin: center;
    transition: all 0.3s linear;
  }
  .mobile-nav-list .link i.open {
    transform: rotate(180deg);
  }
  .sub-list {
    box-shadow: none;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
  }
  .sub-list a {
    display: block;
    position: relative;
  }
  .sub-list .sub-link {
    border: 0;
    padding: 5px 20px;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    white-space: nowrap;
  }
  .sub-list .sub-list a {
    display: block;
    position: relative;
  }
  .trans-none {
    transform: none !important;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease-in-out;
  }
  /**/
  .mobile-nav-list {
    right: 0;
  }
  .mobile-nav-list .link a.has_sub_menu {
    margin-left: 5px;
  }
  .sub-list .sub-list a {
    padding-right: 15px;
  }
  .nav-overlay {
    left: 0;
    transform: translateX(-100%);
  }
}
/*end nav*/
@font-face {
  font-family: bahij-bold;
  font-display: swap;
  src: url(../fonts/Bahij-Bold.ttf);
}
@font-face {
  font-family: bahij-regular;
  font-display: swap;
  src: url(../fonts/Bahij-Plain.ttf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  border: none;
}

img, iframe {
  max-width: 100%;
}

.wrap {
  overflow: hidden;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}

.loading img {
  max-width: 100%;
  padding: 20px;
}

:root {
  --main: #1666A7;
  --sec: #0BAFD1;
}

body {
  font-family: bahij-regular;
  overflow-x: hidden;
}

html[dir=rtl] body {
  text-align: right;
}

/* Start Scroll */
body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 50px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

/* End Scroll */
.e-row {
  padding: 0;
  margin: 0;
}

.main-hover {
  padding: 3px 20px;
  width: 180px;
  height: 50px;
  color: var(--main);
  z-index: 2;
  background-color: #ABDAEC;
  border: 0px solid var(--main);
  position: relative;
  text-transform: capitalize;
  border-radius: 25px;
  display: inline-flex;
  font-family: bahij-bold;
  align-items: center;
  font-size: 14px;
  overflow: hidden;
  justify-content: space-between;
  transition: all linear 0.3s;
}
.main-hover:before {
  content: "\f177";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #FFF;
  z-index: -1;
  top: 0px;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background-color: var(--main);
  transition: all linear 0.3s;
}
.main-hover:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border: 20px solid transparent;
  z-index: -1;
  top: 0;
  right: 0;
  border-radius: 25px;
  transition: all linear 0.3s;
}

.main-hover:hover {
  color: #FFF;
  background-color: var(--main);
  border: 0px solid transparent;
}
.main-hover:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}

.main-header {
  color: var(--main);
  text-align: center;
  font-size: 36px;
  font-style: normal;
  line-height: 50px; /* 138.889% */
  margin-bottom: 30px;
}
.main-header:before {
  content: attr(cont);
  position: absolute;
  z-index: -1;
  font-size: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  pointer-events: none;
  color: var(--main);
}

h1, h2, h3, h4, h5 {
  font-family: bahij-bold;
}

/*header*/
header {
  position: relative;
  width: 100%;
  z-index: 2;
}
header .top-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  position: relative;
}
header .top-head .main-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  gap: 15px;
}
header .logo img {
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 120px;
}
header .menu-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .menu-icons .btn-group .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: max-content;
  height: 50px;
  background-color: transparent;
  border: 0;
  gap: 8px;
  color: var(--main);
  font-size: 22px;
}
header .menu-icons .btn-group .dropdown-toggle i {
  color: var(--sec);
}
header .menu-icons .btn-group .dropdown-menu {
  width: max-content;
  min-width: auto;
  background-color: var(--main);
}
header .menu-icons .btn-group .dropdown-menu a {
  color: #FFF;
  background-color: transparent;
}
header .menu-icons .btn-group .dropdown-menu a:hover {
  background-color: transparent;
}
header .menu-icons .request {
  height: 40px;
  display: flex;
  width: 130px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  border-radius: 0px;
  background-color: var(--main);
  font-size: 16px;
}
header .menu-icons .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: linear 0.2s;
  font-size: 20px;
  gap: 10px;
  position: relative;
  color: #000;
  /*&:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border-radius: 50%;
    background: var(--main);
    opacity: 0;
    z-index: -2;
    top: 0;
    right: 0;
    transition: all linear .3s;
  }

  &:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border: 20px solid transparent;
    z-index: -1;
    top: 0;
    right: 0;
    border-radius: 50%;
    transition: all linear .3s;
  }*/
}
header .menu-icons .lang img {
  width: 40px;
  height: 40px;
  border-radius: 0%;
}
header .menu-icons .lang:hover {
  color: var(--sec);
  transition: linear 0.2s;
}
header .menu-icons .lang:hover:before {
  opacity: 1;
}
header .menu-icons .lang:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
header .menu-icons .search-btn {
  background: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #FFF;
  transition: linear 0.2s;
  text-align: center;
  position: relative;
}
header .menu-icons .search-btn:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: 50%;
  background: var(--main);
  opacity: 0;
  z-index: 1;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: all linear 0.3s;
}
header .menu-icons .search-btn:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border: 20px solid transparent;
  z-index: 2;
  top: 0;
  pointer-events: none;
  right: 0;
  border-radius: 50%;
  transition: all linear 0.3s;
}
header .menu-icons .search-btn img {
  z-index: 3;
}
header .menu-icons .search-btn:hover {
  color: #FFF;
  border: 1px solid transparent;
  transition: linear 0.2s;
}
header .menu-icons .search-btn:hover:before {
  opacity: 1;
}
header .menu-icons .search-btn:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
header .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /*.fa-tiktok{
    color: #111111;
    filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

  }
  .fa-linkedin-in{
    color: #0e76a8;
  }
  .fa-snapchat{
    background-color: #FFFC00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-facebook, .fa-facebook-square {
    color: #3b5998
  }
  .fa-twitter, .fa-twitter-square {
    color: #00aced
  }
  .fa-google-plus, .fa-google-plus-square {
    color: #dd4b39
  }
  .fa-youtube, .fa-youtube-play, .fa-youtube-square {
    color: #bb0000
  }
  .fa-tumblr, .fa-tumblr-square {
    color: #32506d
  }
  .fa-vine {
    color: #00bf8f
  }
  .fa-flickr {
    color: #ff0084
  }
  .fa-vimeo-square {
    color: #aad450
  }
  .fa-pinterest, .fa-pinterest-square {
    color: #cb2027
  }
  .fa-linkedin, .fa-linkedin-in-square {
    color: #007bb6
  }
  .fa-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-spotify {
    color: #1ED760;
  }*/
}
header .social a {
  background-color: transparent;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main);
  transition: all linear 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
header .social a:hover {
  border: 1px solid var(--sec);
  background-color: var(--sec);
  color: #FFF;
  transition: all linear 0.3s;
}
header .social i {
  font-size: 16px;
}

.fixed-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.fixed-social i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 20px;
  transition: all linear 0.3s;
  background-color: var(--sec);
}
.fixed-social i:hover {
  background-color: var(--main);
}

/*header*/
/*slider*/
.hero{
  height: 100vh;
  position: relative;
}
.hero video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .main-slider{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-slider .item  {
  width: 100%;
  height: 100vh;
}
.main-slider .item .in-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
  height: 100%;
}
.main-slider .item .in-item h2 {
  color: #FFF;
  text-align: center;
  font-size: 68px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  width: 57%;
}
.main-slider .item .in-item div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.main-slider .owl-dots .owl-dot span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  width: 16px;
  height: 16px;
  transition: all linear 0.3s;
  display: block;
}
.main-slider .owl-dots .owl-dot.active span {
  background: var(--main);
}

/*slider*/
/*ceo*/
.ceo {
  padding: 40px 0;
}
.ceo p {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 37px; /* 205.556% */
}
.ceo img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  margin: 20px 0;
}
.ceo h4 {
  color: var(--main);
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 114.286% */
}

/*ceo*/
/*team*/
.team {
  padding: 40px 0;
}
.team .team-member {
  border-radius: 20px;
  background: #EBFAFF;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.team .team-member .top-team {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.team .team-member .top-team .team-img {
  width: 60px;
  height: 60px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .top-team .team-img img {
  max-width: 60px;
  max-height: 60px;
}
.team .team-member .top-team h5 {
  color: var(--main);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 114.286% */
}
.team .team-member .top-team p {
  color: #000;
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 200% */
}
.team .team-member a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 32px; /* 177.778% */
}
.team .team-member a i {
  font-size: 18px;
  color: var(--main);
}

/*team*/
/*service*/
.service-card {
  height: 350px;
  width: 100%;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all linear 0.3s;
}
.service-card:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, #000 6.1%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  right: 0;
  z-index: 1;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card .in-item {
  position: absolute;
  z-index: 2;
  width: 100%;
  right: 0;
  bottom: -47%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  transition: all linear 0.3s;
}
.service-card .in-item h5 {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 44.8px */
  letter-spacing: -0.56px;
  margin-bottom: 15px;
  transition: all linear 0.3s;
}
.service-card .in-item p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.32px;
  margin-bottom: 0px;
}
.service-card:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.service-card:hover .in-item {
  bottom: 0;
}
.service-card:hover .in-item h5 {
  margin-bottom: 0;
}

/*service*/
/*online_service*/
.online-card {
  height: 165px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all linear 0.3s;
}
.online-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.online-card .in-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #E4F7F9;
  padding: 20px 15px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  transition: all linear 0.3s;
}
.online-card .in-item h5 {
  transition: all linear 0.3s;
  color: var(--main);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.online-card .in-item p {
  margin-bottom: 0;
  transition: all linear 0.3s;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.online-card .in-item a {
  margin-inline-start: auto;
  transition: all linear 0.3s;
  display: flex;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.online-card:hover .in-item {
  background-color: transparent;
}
.online-card:hover .in-item p, .online-card:hover .in-item a {
  color: #FFF;
}

/*online_service*/
/*branche*/
.branche {
  padding: 30px 20px;
  background-image: url("../img/bran.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  background-color: #DEF6FF;
}
.branche .nav-tabs {
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.branche .nav-tabs a {
  width: max-content;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #527893;
  border: 0;
  background-color: transparent;
  font-family: Bahij-Bold;
  transition: all linear 0.3s;
  position: relative;
  padding: 0;
}
.branche .nav-tabs a:after {
  content: "";
  position: absolute;
  height: 5px;
  border-radius: 25px;
  background-color: var(--main);
  bottom: 0;
  width: 0;
  transition: all linear 0.3s;
}
.branche .nav-tabs a:hover, .branche .nav-tabs a.active {
  color: var(--main);
  background-color: transparent;
}
.branche .nav-tabs a:hover:after, .branche .nav-tabs a.active:after {
  width: 70px;
}
.branche .main-branche {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.branche .main-branche p, .branche .main-branche a {
  color: #000;
  margin-bottom: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 300% */
}
.branche .main-branche p i, .branche .main-branche a i {
  color: var(--main);
}

/*branche*/
/*footer*/
footer {
  padding: 70px 0px 0px;
  position: relative;
  background-image: url("../img/footer-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 32, 58, 0.9);
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .footer-logo {
  margin-bottom: 10px;
  text-align: center;
}
footer .footer-logo img {
  max-height: 110px;
  max-width: 320px;
}
footer .who-footer p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #FFF;
  text-align: center;
}
footer .who-footer p p {
  margin-bottom: 0;
}
footer .who-footer .in-who-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .who-footer .in-who-foot img {
  max-width: 65px;
  max-height: 65px;
}
footer .in-new-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
footer .social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFF;
  border-radius: 10px;
  transition: all linear 0.3s;
}
footer .social a:hover {
  color: var(--main);
}
footer .new-cont {
  margin-bottom: 30px;
  text-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .new-cont i {
  font-size: 22px;
  color: var(--sec);
}
footer .new-cont h5 {
  font-size: 16px;
  color: var(--sec);
  text-align: start;
  margin-bottom: 10px;
}
footer .new-cont a, footer .new-cont p {
  font-size: 16px;
  color: #FFF;
  text-align: start;
  display: block;
  margin-bottom: 0px;
}
footer .new-cont .r-phone {
  direction: ltr;
}
footer .bord {
  border-right: 1px solid #FFF;
  border-left: 1px solid #FFF;
}
footer h2 {
  font-size: 24px;
  color: var(--sec);
  margin-bottom: 22px;
}
footer .mid-foot ul {
  width: 100%;
  margin: 0;
  list-style-type: none;
  column-count: 2;
  gap: 15px;
}
footer .mid-foot ul li {
  list-style: none;
  text-align: start;
  display: block;
  margin-bottom: 20px;
}
footer .mid-foot ul li a {
  color: #FFF;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  transition: all linear 0.3s;
}
footer .mid-foot ul li a:before {
  content: ".";
  font-weight: bold;
  color: #FFF;
  font-size: 16px;
  margin: 0 5px;
  transition: all linear 0.3s;
}
footer .mid-foot ul li a:hover {
  color: var(--main);
}
footer .mid-foot ul li a:hover:before {
  color: var(--main);
}
footer .end-foot {
  background-color: #000;
  margin-top: 10px;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
footer .end-foot .in-end {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
footer .end-foot .in-end p {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 0;
}
footer .end-foot .in-end p a {
  color: var(--sec);
  transition: all linear 0.3s;
}
footer .end-foot .in-end p a:hover {
  color: var(--sec);
}

/*footer*/
/*breadcrumb*/
.breadcrumb-area {
  padding: 30px 0;
  background-image: url("../img/bread.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.breadcrumb-area .bread-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.breadcrumb-area .bread-row h4 {
  color: #FFF;
  text-align: center;
  font-size: 68px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
}
.breadcrumb-area .bread-row .breadcrumb-links {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 28px;
  gap: 10px;
}
.breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-family: bahij-bold;
  margin-bottom: 0;
  line-height: 100px;
}

/*breadcrumb*/
/*single*/
.single-pages .main-header, .single_service .main-header {
  font-size: 48px;
  text-align: center;
}

.single-pages .bootom-side p {
  color: #000;
  text-align: justify;
}
.single-pages .bootom-side p iframe {
  width: 100%;
  height: 650px;
}

.single-pages .bootom-side.apply p {
  color: #000;
}

.single-pages .top-side {
  padding: 20px 0;
  text-align: center;
}

.single-pages .top-side img {
  max-width: 100%;
  max-height: 400px;
}

.single_service, .single-pages {
  padding: 40px 0;
}

.single_service .right_side_whous {
  margin: 20px 0;
  text-align: center;
}

.single_service .right_side_whous img {
  max-width: 100%;
  max-height: 300px;
}

.single_service .right_side_whous a {
  text-align: center;
  background: var(--main);
  color: #FFF;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 5px 0;
  display: inline-block;
  transition: linear 0.4s;
}

.single_service .right_side_whous a:hover {
  transition: linear 0.4s;
  background: var(--sec);
}

.part-item {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  border-radius: 30px;
  transition: all linear 0.3s;
  grid-column: span 1;
  grid-row: span 1;
}
.part-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.part-item:hover {
  transition: all linear 0.3s;
}

/*single*/
html[dir=rtl] .branche .nav-tabs a:after {
  right: 0;
}
html[dir=rtl] .dropdown-toggle::after {
  display: none !important;
}
html[dir=rtl] .dropdown-toggle::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
html[dir=rtl] .fixed-social {
  right: 40px;
}
html[dir=rtl] .wpcf7 input[type=url], html[dir=rtl] .wpcf7 input[type=email], html[dir=rtl] .wpcf7 input[type=tel] {
  direction: rtl;
}
html[dir=rtl] .main-hover:before {
  left: 0;
}

html[lang=en-US] .branche .nav-tabs a:after {
  left: 0;
}
html[lang=en-US] .main-hover:before {
  right: 0;
  content: "\f178";
}
html[lang=en-US] .fixed-social {
  left: 40px;
}
html[lang=en-US] .form-control {
  text-align: left;
}
html[lang=en-US] .online-card .in-item {
  padding: 10px 15px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-list > .link > a {
    padding: 13px 5px;
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  .single_service, .single-pages {
    padding: 40px 0 !important;
  }
  .main-slider .item .in-item h2 {
    line-height: 55px;
    font-size: 38px;
    width:100%;
  }
  header .logo img {
    max-width: 140px;
  }
  .main-hover {
    width: 150px;
    height: 40px;
  }
  .main-hover:before {
    width: 40px;
    height: 40px;
  }
  footer .bord {
    border: 0;
  }
  .branche .main-branche {
    flex-direction: column;
  }
  .branche .main-branche p, .branche .main-branche a {
    font-size: 16px;
  }
  .breadcrumb-area .bread-row h4 {
    font-size: 38px;
  }
  .breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
    font-size: 18px;
  }
  .fixed-social i, .fixed-social img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  html[dir=rtl] .fixed-social {
    right: 20px;
  }
  html[lang=en-US] .fixed-social {
    left: 20px;
  }
}

/*# sourceMappingURL=main.css.map */
