.header {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 12px 0px;
  z-index: 1002;
  -webkit-box-shadow: 4px 4px 60px #0000000d;
  -moz-box-shadow: 4px 4px 60px #0000000d;
  -o-box-shadow: 4px 4px 60px #0000000d;
  -ms-box-shadow: 4px 4px 60px #0000000d;
  box-shadow: 4px 4px 60px #0000000d;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  /* End NavMenu */
}

.header.sticky {
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 8px 0px;
}

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

.header .burger {
  position: absolute;
  display: none;
  left: 118px;
  cursor: pointer;
  user-select: none;
  width: 24px;
  height: 1rem;
  background: transparent;
}

.header .burger-line {
  position: absolute;
  display: block;
  left: 0px;
  width: 100%;
  height: 2px;
  opacity: 1;
  border: none;
  outline: none;
  background: #000;
}

.header .burger-line:nth-child(1) {
  top: 0px;
}

.header .burger-line:nth-child(2) {
  top: 0.5rem;
  width: 80%;
}

.header .burger-line:nth-child(3) {
  top: 1rem;
  width: 60%;
}

@media only screen and (max-width: 999px) {
  .header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.header .logo img {
  max-width: 140px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
  .header .logo img {
    max-width: 90px;
  }
}

.header .language {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9cc661;
  color: #9cc661;
  padding: 4px 24px;
  border-radius: 60px;
  font-family: 'Majalla';
  -webkit-box-shadow: 4px 4px 60px #0000000d;
  -moz-box-shadow: 4px 4px 60px #0000000d;
  -o-box-shadow: 4px 4px 60px #0000000d;
  -ms-box-shadow: 4px 4px 60px #0000000d;
  box-shadow: 4px 4px 60px #0000000d;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.header .language:hover {
  background: #9cc661;
  color: #fff;
}

.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0px;
}

.header .navbar .logo {
  display: none;
  margin: 12px 0px 0px 12px;
}

@media screen and (max-width: 999px) {
  .header .navbar .logo {
    display: block;
  }
}

.header .navbar .logo img {
  max-width: 140px;
}

.header .navbar .cancel {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
}

.header .navbar .cancel svg {
  width: 16px;
  height: 16px;
  fill: #BD3C2F;
}

@media screen and (max-width: 999px) {
  .header .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    transition: all 0.5s ease;
  }

  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .header .navbar .cancel {
    display: block;
  }
}

.header .menu {
  display: flex;
  align-items: center;
}

.header .menu-item {
  position: relative;
  display: inline-block;
  margin: 0px 16px;
}

.header .menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  color: #000;
  font-weight: 700;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
  .header .menu-link {
    height: auto;
    padding: 8px 12px;
    border-bottom: 1px solid #F3F4F6;
  }
}

.header .menu-link::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0px;
  height: 4px;
  background: #9cc661;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
  .header .menu-link::after {
    display: none;
  }
}

.header .menu-link svg {
  width: 14px;
  height: 14px;
  fill: #000;
}

@media only screen and (max-width: 999px) {
  .header .menu-link svg {
    z-index: -1;
  }
}

@media only screen and (min-width: 999px) {
  .header .menu-dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 100;
  }
}

@media only screen and (max-width: 999px) {
  .header .menu {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 48px;
  }

  .header .menu-item {
    display: block;
    margin: 0px;
  }

  .header .menu-link {
    justify-content: space-between;
  }
}

.header .menu .activelink .menu-link::after,
.header .menu .menu-item:hover .menu-link::after {
  width: 100%;
}

@media (max-width: 999px) {

  .header .menu .activelink .menu-link,
  .header .menu .menu-item:hover .menu-link {
    color: #9cc661;
  }
}

@media only screen and (max-width: 999px) {
  .header .menu .activelink .submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.header .submenu {
  position: absolute;
  top: 100%;
  right: 0px;
  width: 180px;
  height: auto;
  visibility: hidden;
  transform: translateY(1rem);
  background: #fff;
  box-shadow: 0px 4px 8px 0px #00000033;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  padding: 12px;
}

@media only screen and (max-width: 999px) {
  .header .submenu {
    display: block;
    position: relative;
    max-height: 0px;
    outline: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    box-shadow: none;
    padding: 0px;
    background: #F3F4F6;
    width: 100%;
  }
}

.header .submenu a {
  display: block;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  text-transform: capitalize;
  font-weight: 300;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 999px) {
  .header .submenu a {
    padding: 4px 12px;
  }
}

.header .submenu a:last-child {
  margin: 0px;
  border-bottom: 0px;
  padding-bottom: 0px;
}

.header .submenu a:hover {
  color: #9cc661;
}

.header .overlay {
  position: fixed;
  inset: 0px;
  height: 100%;
  width: 100%;
  z-index: 9;
  visibility: hidden;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 999px) {
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.header.cust-style {
  position: absolute;
  right: 0px;
  top: 0px;
  max-width: 54%;
  background: #9cc661;
  border-radius: 0px 0px 10px 10px;
  padding: 16px 0px;
}

@media (max-width: 1320px) {
  .header.cust-style {
    max-width: 55%;
  }
}

@media (max-width: 1199px) {
  .header.cust-style {
    max-width: 64%;
  }
}

@media (max-width: 999px) {
  .header.cust-style {
    position: relative;
    background: #fff;
    border-radius: 0px;
    max-width: 100%;
  }
}

.header.cust-style .container {
  justify-content: center;
}

@media (max-width: 999px) {
  .header.cust-style .container {
    justify-content: space-between;
  }
}

.header.cust-style .language {
  box-shadow: none;
  background: none;
}

.header.cust-style.sticky {
  position: absolute;
  left: auto;
  right: 0px;
}

@media (max-width: 999px) {
  .header.cust-style.sticky {
    position: fixed;
    padding: 12px 0px;
  }
}

.header.cust-style .hidelink {
  display: none;
}

@media (max-width: 999px) {
  .header.cust-style .hidelink {
    display: block;
  }
}

.header.cust-style .logo {
  display: none;
}

@media (max-width: 999px) {
  .header.cust-style .logo {
    display: block;
  }
}

.header.cust-style .logo img {
  max-width: 140px;
}

@media (max-width: 999px) {
  .header.cust-style .logo img {
    max-width: 90px;
  }
}

@media (max-width: 999px) {
  .header.cust-style .navbar .logo img {
    max-width: 140px;
  }
}

.header.cust-style .menu-item {
  border-right: 1px solid #ffffff42;
  margin: 0px;
}

@media (max-width: 999px) {
  .header.cust-style .menu-item {
    border: 0px;
  }
}

.header.cust-style .menu-item:last-child {
  border: 0px;
}

@media (max-width: 999px) {
  .header.cust-style .menu-item:last-child {
    display: none;
  }
}

.header.cust-style .menu-link {
  color: #fff;
  padding: 0px 20px;
}

@media (max-width: 1320px) {
  .header.cust-style .menu-link {
    padding: 0px 16px;
  }
}

@media (max-width: 999px) {
  .header.cust-style .menu-link {
    color: #000;
    padding: 8px 16px;
  }
}

.header.cust-style .menu-link::after {
  display: none;
}

.slider__item {
  position: relative;
  width: 100%;
  height: 80vh;
  padding: 0px !important;
}

@media (max-width: 1199px) {
  .slider__item {
    height: 100vh;
  }
}

@media (max-width: 999px) {
  .slider__item {
    height: 400px;
  }
}

.slider__item .carousel {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.slider__item .carousel:hover .carousel-control-next {
  right: 24px;
}

.slider__item .carousel:hover .carousel-control-prev {
  left: 24px;
}

.slider__item .carousel .carousel-inner {
  height: 100%;
}

.slider__item .carousel .carousel-item {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .slider__item .carousel .carousel-item {
    height: 400px;
  }
}

.slider__item .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__item .carousel .carousel-control-next,
.slider__item .carousel .carousel-control-prev {
  width: 38px;
  height: 38px;
  top: 50%;
  opacity: 1;
  margin-top: -19px;
  background: #00000078;
  border-radius: 50%;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 767px) {

  .slider__item .carousel .carousel-control-next,
  .slider__item .carousel .carousel-control-prev {
    display: none;
  }
}

.slider__item .carousel .carousel-control-next svg,
.slider__item .carousel .carousel-control-prev svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.slider__item .carousel .carousel-control-next:hover,
.slider__item .carousel .carousel-control-prev:hover {
  background: #9cc661;
}

.slider__item .carousel .carousel-control-next {
  right: -90px;
}

.slider__item .carousel .carousel-control-prev {
  left: -90px;
}

.slider__item .carousel .carousel-control-prev svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 999px) {
  .slider__item .carousel {
    position: relative;
  }
}

.slider__item .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 50%;
  height: 160px;
  background: #fff;
  z-index: 10;
}

@media (max-width: 999px) {
  .slider__item .logo {
    display: none;
  }
}

.slider__item .logo img {
  max-width: 220px;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
  .slider__item .logo img {
    max-width: 90px;
  }
}

.slider__item .carousel-item {
  background: linear-gradient(180deg, #057783 0%, #80acb3 100%);
}

.slider__item .photo {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
}

@media (max-width: 999px) {
  .slider__item .photo {
    position: relative;
    width: 100%;
  }

  .slider__item .photo::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: #00000091;
    z-index: 1;
  }
}

.slider__item .container {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 999px) {
  .slider__item .container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 10;
    justify-content: center;
    text-align: center;
  }
}

.slider__item .w-50 {
  width: 44% !important;
  margin-top: 10%;
}

@media (max-width: 999px) {
  .slider__item .w-50 {
    width: 100% !important;
    margin: 0px;
  }
}

.slider__item .tag {
  display: block;
  color: #9cc661;
  margin-bottom: 16px;
}

@media (max-width: 999px) {
  .slider__item .tag {
    text-align: center;
  }
}

.slider__item .title {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  margin-bottom: 16px;
}

@media (max-width: 999px) {
  .slider__item .title {
    text-align: center;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
hr,
strong,
b,
input,
select,
textarea,
.highcharts-title,
.highcharts-axis-labels,
.highcharts-yaxis-title {
  direction: rtl;
  text-align: right;
  font-family: 'Majalla';
}

.header .burger {
  left: auto;
  right: 118px;
}

.header .burger-line {
  left: auto;
  right: 0px;
}

.header .language {
  font-family: 'Majalla';
}

.header .navbar .logo {
  margin: 12px 12px 0px 0px;
}

.header .navbar .cancel {
  right: auto;
  left: 18px;
}

@media screen and (max-width: 999px) {
  .header .navbar {
    left: auto;
    right: -100%;
  }

  .header .navbar.active {
    left: auto;
    right: 0rem;
  }
}

.header .menu-link::after {
  left: auto;
  right: 0px;
}

.header.cust-style {
  right: auto;
  left: 0px;
}

.header.cust-style .menu-item {
  border-right: 0px;
  border-left: 1px solid #ffffff42;
}

@media (max-width: 999px) {
  .header.cust-style .menu-item {
    border: 0px;
  }
}

.header.cust-style .menu-item:last-child {
  border: 0px;
}

.slider__item .photo {
  right: auto;
  left: 0px;
}

.slider__item .bottom svg {
  rotate: 180deg;
  margin: 0px;
  margin-left: 4px;
}

.services__item.cst-style .item .icon {
  margin: 0px;
  margin-left: 8px;
}

@media (max-width: 400px) {
  .services__item.cst-style .item .icon {
    margin: 0px;
  }
}

.services__item.cst-style .item .title {
  text-align: right;
}

.services__item.cst-style .item p {
  text-align: right;
}

.about__item .photo {
  left: auto;
  right: 0px;
  border-radius: 20px 0px 0px 20px;
  border-right: 0px;
  border-left: 8px solid #9cc661;
}

@media (max-width: 767px) {
  .about__item .photo {
    border-radius: 0px;
    border: 0px;
  }
}

.contact__item .item .flex .media .contant {
  margin-left: 0px;
  margin-right: 12px;
}

.contact__item .item .follow .social a:first-child {
  margin-right: 0px;
}

.accordion-button::after {
  margin-left: 0px;
  margin-right: auto;
}

.news__item .item .photo .date {
  right: auto;
  left: 24px;
}

.news__inner__item .item .mintitle .social a {
  margin-right: 0px;
  margin-left: 4px;
}

.news__inner__item .item .mintitle .social a:last-child {
  margin: 0px;
}

.news__inner__item .item .minitem form .form-control {
  padding-right: 0.75rem;
  padding-left: 48px;
}

.news__inner__item .item .minitem form .bot-search {
  right: auto;
  left: 12px;
}

.news__inner__item .item .minitem .inner .photo {
  margin: 0px;
  margin-left: 16px;
}

.scrollTopBtn {
  right: auto;
  left: -100px;
}

.scrollTopBtn.show {
  right: auto;
  left: 12px;
}

.footer .newsletter label {
  margin-right: 0px;
  margin-left: 16px;
}

@media (max-width: 999px) {
  .footer .newsletter label {
    margin: 0px;
    margin-bottom: 16px;
  }
}

.footer .newsletter .bottom {
  margin-left: 0px;
  margin-right: 16px;
}

@media (max-width: 999px) {
  .footer .newsletter .bottom {
    margin: 0px;
    margin-top: 16px;
  }
}

.footer .social a:first-child {
  margin-right: 0px;
}

.footer .item .title::after {
  left: auto;
  right: 0px;
}

@media (max-width: 999px) {
  .footer .item .title::after {
    left: 0px;
  }
}

.footer .media .contant {
  margin-left: 0px;
  margin-right: 12px;
}

.about__item .w-50 {
  padding-left: 0px;
  padding-right: 48px;
}

@media (max-width: 767px) {
  .about__item .w-50 {
    padding: 0px;
  }
}

.about__tabs .nav-tabs {
  border: 0px;
  border-left: 1px solid #dee2e6;
}

@media (max-width: 999px) {
  .about__tabs .nav-tabs {
    border: 0px;
    border-bottom: 1px solid #dee2e6;
  }
}

@media (max-width: 999px) {
  .about__tabs .nav-tabs a.active {
    border: 0px !important;
    border-left: 1px solid #dee2e6 !important;
  }
}

@media (max-width: 999px) {
  .about__tabs .nav-tabs a {
    border: 0px !important;
    border-left: 1px solid #dee2e6 !important;
  }
}

.about__tabs .nav-tabs a svg {
  margin-right: 0px;
  margin-left: 8px;
}

.about__tabs b {
  margin-right: 0px;
  margin-left: 4px;
}

/*# sourceMappingURL=home-rtl.css.map */