body {
  font-family: "Bahij TheSansArabic", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: var(--white-color);
  position: relative;
}
body {
  padding-top: 116.05px;
}
@media (max-width: 991px) {
  body {
    padding-top: 91.7px;
  }
}
.overflow {
  overflow: hidden;
}
:root {
  --main-color: #0a081c;
  --main-hover: #fa8003;
  --sec-color: #999999;
  --black-color: #000000;
  --white-color: #ffffff;
}
img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
}
a {
  text-decoration: none;
}
/*style scroll bar*/
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--main-hover);
}
/*preloader*/
.preloader {
  -webkit-pointer-news: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.progress {
  position: fixed;
  z-index: 222000;
  top: 0;
  /* right: 100%; */
  width: 100%;
  height: 5px;
  background-color: #f7f7f7;
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  overflow: hidden;
}

.progress-bar {
  animation: progress 6s ease infinite;
  padding: 1px;
  color: rgba(255, 255, 255, 100);
  background-image: linear-gradient(
    135deg,
    var(--sec-color),
    var(--main-color)
  );
  /* border-radius: 4px 4px 4px 4px; */
}
html[dir="ltr"] .progress-bar {
  background-image: linear-gradient(
    135deg,
    var(--main-color),
    var(--sec-color)
  );
}
@keyframes progress {
  from {
    width: 0;
    color: rgba(255, 255, 255, 0);
  }
  to {
    width: 100%;
    color: rgba(255, 255, 255, 1);
  }
}
/*preloader*/

/*lazyload*/
.lazy-img {
  transition: 0.5s;
}
.loading-img {
  background-color: #fafafa !important;
  position: relative;
  overflow: hidden;
}

.loading-img img {
  opacity: 0 !important;
  -webkit-filter: blur(40px);
  filter: blur(40px);
}

.loaded-img img {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

/*top header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.top-header a {
  text-decoration: none;
}
.show-icons .menu-bars {
  display: none;
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
}
.big-menu li a {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.fixed-nav .big-menu > li > a {
  color: var(--main-color);
}
.big-menu li a:hover {
  color: var(--main-hover);
}
.nav-header .big-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 26px;
}
.fixed-nav {
  background-color: var(--white-color);
  margin-top: -200px;
  transition: all 0.3s ease-in-out;
}
.fixed-nav .nav-header {
  padding: 10px 0;
}
.fixed-header {
  position: fixed;
}
.fixed-header .fixed-nav {
  margin: 0;
}
/* .fixed-nav .nav-header figure img {
  max-width: 60px;
  width: 60px;
  transition: all 0.3s ease-in-out;
} */
.nav-header figure {
  margin: 0;
}
.nav-header figure img {
  max-width: 60px;
  width: 60px;
  transition: all 0.3s ease-in-out;
}
.header-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.nav-head {
  height: 38px;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.show-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-ancor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 12px;
  color: #a09eb7;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.lang-ancor span {
  padding-top: 3px;
}
html[dir="rtl"] .lang-ancor {
  flex-direction: row-reverse;
}
.lang-ancor img {
  width: 20px;
}
.lang-ancor:hover {
  color: var(--main-hover);
}
.contact-link {
  width: max-content;
  height: 40px;
  border-radius: 20px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  padding: 0 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--white-color);
  background-color: var(--main-hover);
  transition: all 0.4s ease-in-out;
  position: relative;
  box-shadow: 0 0 0 0 rgba(241, 97, 34, 1);
  -moz-animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 97, 34, 1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(241, 97, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(241, 97, 34, 0);
  }
}
@media (hover: hover) {
  .contact-link:hover {
    text-decoration: none;
    color: var(--white-color);
    -webkit-animation: none;
    background-color: var(--main-color);
  }
}
/*                          header section                     */
.main-slider {
  position: relative;
  overflow: hidden;
}

.main,
.swiper-cont {
  position: relative;
}

.main .pro-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1400 / 787;
}
.main .pro-img::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}
.main .pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-slider .swiper-btn {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.main-slider .swiper-btn:hover {
  background-color: var(--main-hover);
  color: var(--white-color);
}

@media (min-width: 1320px) {
  .main-slider .swiper-btn {
    display: flex;
  }
}
.main-slider .swiper-btn i {
  z-index: 2;
}

.swiper-btn.swiper-btn-next {
  left: 57px;
}

.swiper-btn.swiper-btn-prev {
  right: 57px;
}

.main-slider .swiper-pagination {
  position: relative;
  width: 100%;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .main-slider .swiper-pagination {
    bottom: 15px;
    display: flex;
  }
  .main-slider {
    margin-bottom: 40px;
  }
}
.main-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.5019607843);
  opacity: 0.9;
  margin: 0 3px;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  border-radius: 50%;
}

.main-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--white-color);
}

.main-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white-color);
  opacity: 1;
}

/*                          main-slider                             */
/*                      about-us-section                      */
.about-section {
  margin: 100px 0;
}
.about-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
/* .about-img-cont {
  padding-inline-end: 69px;
} */
.about-img-cont figure {
  position: relative;
  width: 100%;
  aspect-ratio: 488 / 460;
}
.about-img-cont video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  text-align: start;
  padding-inline-end: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.about-head {
  font-weight: 800;
  font-size: 30px;
  color: var(--main-color);
  margin-bottom: 20px;
}
.about-pargh {
  font-weight: 600;
  font-size: 17px;
  color: var(--main-color);
  margin-bottom: 0;
}
.counter-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.counter-box {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.counter-box i {
  font-size: 36px;
  color: #b2b2b2;
  margin-bottom: 30px;
}
.counter-box .number-cont {
  color: var(--main-hover);
  font-weight: 800;
  font-size: 40px;
  line-height: 40px;
}
.counter-box .counter-word {
  text-transform: capitalize;
  color: var(--black-color);
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .counter-cont {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .about-section {
    margin: 50px 0;
  }
  .about-cont {
    grid-template-columns: 1fr;
  }
  .about-img-cont {
    padding: 0;
  }
  .about-content {
    padding: 0;
    text-align: center;
    align-items: center;
  }
  .about-head {
    font-size: 26px;
  }
  .counter-cont {
    /* display: flex;
    flex-wrap: wrap; */
    gap: 10px;
  }
  .counter-box i {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .counter-box .number-cont {
    font-size: 30px;
    line-height: 30px;
  }
  .counter-box .counter-word {
    font-size: 14px;
  }
}
/*                      about-us-section                      */
/*                        package-section                      */
.package-section {
  margin-bottom: 80px;
}
.package-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.package-box {
  padding: 26px 20px;
  text-align: start;
  border-radius: 30px;
  border: 1px solid var(--main-hover);
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #fff5ec;
}
.package-box::after {
  content: url(../images/logo-bg.png);
  position: absolute;
  top: 0;
  inset-inline-end: -35px;
  user-select: none;
  z-index: -1;
  width: 100%;
  max-width: 206px;
}
.package-name {
  background-color: #ffe8d2;
  color: var(--main-hover);
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  width: 166px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 15px;
}
.package-pargh {
  font-weight: 300;
  font-size: 14px;
  color: var(--black-color);
  text-align: start;
  margin-bottom: 15px;
}
.package-price {
  padding: 15px 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}
.package-price::before,
.package-price::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--main-hover);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleY(0.3);
}
.package-price::after {
  top: auto;
  bottom: 0;
}
.package-price .package-Currency {
  font-weight: 300;
  font-size: 18px;
  color: var(--black-color);
}
.package-total {
  font-weight: 700;
  font-size: 55px;
  line-height: 48px;
  color: var(--black-color);
}
.package-list-head {
  font-weight: 700;
  font-size: 16px;
  color: var(--black-color);
  margin-bottom: 15px;
  display: inline-block;
}
.package-list ul {
  padding: 0;
  margin: 0;
  padding-inline-start: 20px;
}
.package-list li {
  font-weight: 400;
  font-size: 16px;
  color: var(--black-color);
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .package-section {
    margin-bottom: 40px;
  }
  .package-cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
/*                        package-section                      */
/*                      testimonials-section                      */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.section-head {
  text-align: center;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 28px;
  color: var(--main-color);
  margin: 0;
}
.testimonials-slider .swiper-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.5019607843);
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.testimonials-slider .swiper-btn:hover {
  background-color: var(--main-hover);
}

@media (min-width: 1320px) {
  .testimonials-slider .swiper-btn {
    display: flex;
  }
}
.testimonials-slider .swiper-btn i {
  z-index: 2;
}

.testimonials-slider .swiper-btn.swiper-btn-next {
  left: -67px;
}

.testimonials-slider .swiper-btn.swiper-btn-prev {
  right: -67px;
}

.testimonials-slider .swiper-pagination {
  position: relative;
  width: 100%;
  bottom: auto;
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 1320px) {
  .testimonials-slider .swiper-pagination {
    display: flex;
  }
}
.testimonials-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.5019607843);
  opacity: 0.9;
  margin: 0 3px;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  border-radius: 50%;
}

.testimonials-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--main-hover);
}

.testimonials-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-hover);
  opacity: 1;
}

.swiper-btn {
  cursor: pointer;
}

/*                         testimonials-section               */
.testimonials-section {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-slider {
  position: relative;
}

.testimonials-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  background-color: var(--white-color);
  border: 1px solid #e1e1e1;
}

.testimonials-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  max-width: 100%;
  margin-bottom: 15px;
}

.testimonials-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--main-color);
  margin-bottom: 15px;
}

.testimonials-pargh {
  font-weight: 400;
  font-size: 16px;
  color: var(--sec-color);
  margin-bottom: 0;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 72px;
}

@media (max-width: 767px) {
  .testimonials-section {
    margin-bottom: 60px;
  }
}
/*                         testimonials-section               */
.location-section {
  margin-bottom: 60px;
}
.location-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.location-info p {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .location-cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .location-info {
    align-items: center;
    text-align: center;
  }
}
/*                                   download-section                            */
.download-section {
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--main-hover);
}
.download-cont {
  max-width: 425px;
  margin-inline-end: auto;
}
.download-bg {
  position: absolute;
  inset-inline-end: -65px;
  top: -40px;
  /* transform: translateY(-50%); */
  max-width: 56%;
}
/* html[dir="ltr"] .download-bg {
  transform: scaleX(-1);
} */
.download-head {
  color: var(--white-color);
  font-weight: 800;
  font-size: 36px;
  text-align: start;
  margin-bottom: 20px;
}
.download-btn {
  width: max-content;
  height: 40px;
  border-radius: 20px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  padding: 0 30px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  outline: none !important;
  color: var(--main-hover);
  background-color: var(--white-color);
  transition: all 0.4s ease-in-out;
  position: relative;
  box-shadow: 0 0 0 0 rgba(#fff, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  -moz-animation: pulseWhite 2s infinite;
  -webkit-animation: pulseWhite 2s infinite;
  animation: pulseWhite 2s infinite;
}

@keyframes pulseWhite {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
}
@media (hover: hover) {
  .download-btn:hover {
    text-decoration: none;
    color: var(--white-color);
    -webkit-animation: none;
    background-color: var(--main-color);
  }
}
@media (max-width: 991px) {
  .download-bg {
    max-width: 40%;
  }
}
@media (max-width: 767px) {
  .download-section {
    padding: 50px 0;
  }
  .download-bg {
    position: relative;
    max-width: 100%;
    margin-bottom: 30px;
    inset: unset;
  }
  .download-head {
    font-size: 26px;
    text-align: center;
  }
  .download-btn {
    margin: 0 auto;
  }
}
/*                                   download-section                            */
/*                                   news                            */
/*                                   footer                            */
footer {
  padding: 60px 0;
  position: relative;
}
.footer-logo {
  max-width: 70px;
  margin-bottom: 30px;
  text-align: start;
}
.nav-foot-cont {
  text-align: start;
  padding-top: 20px;
}
.nav-foot-header {
  text-transform: capitalize;
  white-space: nowrap;
  font-weight: 700;
  font-size: 17px;
  color: var(--main-color);
  margin-bottom: 30px;
  text-align: start;
}
.nav-foot li {
  margin-bottom: 8px;
}
.nav-foot-link {
  color: #808080;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}
.nav-foot-li .nav-foot-link:hover {
  transform: translateX(6px);
  color: var(--main-hover);
}
html[dir="rtl"] .nav-foot-li .nav-foot-link:hover {
  transform: translateX(-6px);
}
.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}
.social a {
  text-decoration: none !important;
}
a.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #b2b2b2;
  transition: all 0.3s ease-in-out;
}
a.social-link:hover {
  color: var(--main-hover);
}
.social {
  display: none;
}
.news-letter .social {
  display: flex;
}
.news-letter {
  text-align: start;
  padding-top: 20px;
}
.news-letter .news-span {
  color: var(--main-color);
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.news-letter h3 {
  margin: 0 0 30px;
}
.newsletter-cont {
  position: relative;
}
.newsletter-input {
  text-align: start;
  background-color: #f2f2f2;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  padding: 0 20px;
  padding-inline-end: 85px;
  font-size: 12px;
  font-weight: 600;
  color: #8e8e8e;
  border: 2px solid #f2f2f2;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.newsletter-input:focus {
  border: 2px solid var(--main-hover);
}
.newsletter-button {
  position: absolute;
  inset-inline-end: 5px;
  top: 50%;
  width: 81px;
  height: 29px;
  transform: translateY(-50%);
  color: var(--white-color);
  padding: 0;
  border: none;
  border-radius: 15px;
  background-color: var(--main-hover);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  outline: none !important;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.newsletter-button:hover {
  background-color: var(--main-color);
}
.copy-right {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--black-color);
  text-align: start;
  margin-bottom: 10px;
}
.design-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  color: var(--black-color);
  gap: 5px;
}
.design-text .taswak-img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}
.footer-cont > .copy-flex {
  display: none;
}
/*                             footer accordion                 */
.footer-accordion.nav-foot-header {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-accordion {
  cursor: pointer;
  width: 100%;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-panel {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
  padding: 0 15px;
  margin-bottom: 20px;
}
.news-letter .footer-panel {
  padding: 0;
}
.footer-accordion:after {
  content: "";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 13px;
  transition: all 0.5s ease-out;
}
html[dir="rtl"] .footer-accordion:after {
  content: "";
}
.footer-accordion.active:after {
  transform: rotate(90deg);
}
html[dir="rtl"] .footer-accordion.active:after {
  transform: rotate(-90deg);
}
/*                             footer accordion                 */

@media (max-width: 767px) {
  footer {
    padding: 50px 0 40px;
  }
  .footer-logo {
    margin: 0 auto 30px;
    text-align: center;
  }
  .social {
    display: flex;
    margin: 0 0 30px;
  }
  .copy-flex {
    display: none;
  }
  .footer-cont > .copy-flex {
    display: flex;
  }
  .news-letter .social {
    display: none;
  }
  .footer-contact {
    margin-bottom: 0px;
  }
  .nav-foot-cont {
    text-align: start;
    padding: 0;
    margin-bottom: 20px;
  }
  .nav-foot-header {
    text-align: center;
  }
  .nav-foot li {
    margin: 0 0 10px;
  }
  .news-letter h3 {
    padding: 0;
  }
  .news-letter {
    margin-bottom: 30px;
    padding: 0;
  }
  .news-letter .news-span {
    text-align: center;
  }
  .copy-flex {
    padding-top: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .copy-right {
    margin-bottom: 5px;
  }
}
/*                                   footer                            */
/*                                    media query                                    */
/*                    menu in phone size                      */
@media (min-width: 992px) and (max-width: 1199px) {
  .fixed-nav .nav-header figure img,
  .nav-header figure img {
    max-width: 60px;
  }
  .nav-header .big-menu {
    gap: 15px;
  }
  .big-menu li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .hide-sm {
    display: none;
  }
  .vision-cont {
    margin-inline-end: 10px;
  }
  .vision-img {
    max-width: 45px;
  }
  .show-icons {
    display: flex;
    align-items: center;
  }
  .fixed-nav .nav-header figure img,
  .nav-header figure img {
    max-width: 50px;
  }
  .fixed-nav .nav-header,
  .nav-header {
    padding: 10px 0;
  }
  .show-icons .lang-ancor {
    display: none;
  }
  .menu-bars {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
  }
  .menu-bars:hover {
    color: var(--main-color);
  }
  .navgition {
    display: block;
    position: fixed;
    padding: 30px 20px;
    padding-top: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    clip-path: circle(10.9% at 16% 16%);
    background-color: rgba(255, 255, 255, 1);
    transition: 0.4s;
    z-index: 200;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
  }
  html[dir="ltr"] .navgition {
    clip-path: circle(11.2% at 86% 14%);
  }
  .reset-left {
    left: 0;
    top: 0;
    clip-path: circle(139.6% at 9% 15%);
    visibility: visible;
    opacity: 1;
  }
  html[dir="ltr"] .reset-left {
    clip-path: circle(121.2% at 86% 14%);
  }
  /*hamburger menu*/
  .show-icons .menu-bars {
    position: relative;
    z-index: 300;
    width: 18px;
    display: flex;
    align-items: center;
    outline: none !important;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
  }
  .hamburger-lines {
    height: 14px;
    width: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--black-color);
    transition: all 0.4s ease-in-out;
  }
  .fixed-nav .hamburger-lines .line {
    background-color: var(--main-hover);
  }
  .open-bars .hamburger-lines .line {
    background-color: var(--main-hover);
  }
  .inner-page .open-bars .hamburger-lines .line {
    background-color: var(--main-hover);
  }
  .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .open-bars .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  .open-bars .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .open-bars .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  .nav-head {
    display: flex;
    height: auto;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0 0;
  }
  .nav-header .big-menu {
    display: block;
    flex-direction: column;
    text-align: start;
    align-items: baseline;
    padding: 30px 0;
  }
  .nav-header li {
    margin-right: 0;
  }
  html[dir="rtl"] .nav-header li {
    margin-left: 0;
  }
  .big-menu li {
    margin-bottom: 10px;
  }
  .chevron-down {
    line-height: unset;
  }
  .nav-header li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--main-color);
    font-size: 16px;
  }
  /*                    menu in phone size                      */
}
@media (min-width: 991px) {
  .hide-big {
    display: none;
  }
}
/*                                    media query                                    */

.fixall {
  text-decoration: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}

/*overlay*/
.overlay-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
  background-color: #fff;
  display: none;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    padding-right: 20px;
    padding-left: 20px;
  }
}
/*slide down menu*/
.big-menu > .menu-item-has-children > a {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.big-menu > .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 10px;
  padding-bottom: 4px;
}
.menu-item-has-children {
  position: relative;
}
@media (min-width: 992px) {
  .big-menu > .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }
  .big-menu > .menu-item-has-children:hover > a {
    color: var(--main-hover);
  }
}
.big-menu > .menu-item-has-children > .sub-menu {
  position: absolute;
  inset-inline-start: -26px;
  list-style-type: none;
  /* transform: translateX(-50%); */
  top: calc(100% + 5px);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  /* width: max-content; */
  width: 200px;
  background-color: var(--white-color);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: none;
  padding: 18px 26px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.big-menu > .menu-item-has-children > .sub-menu::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  position: absolute;
  top: -7px;
  inset-inline-start: 10%;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 1;
}
.sub-menu li {
  margin: 0;
  padding: 4px 0;
}
.sub-menu li a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: block;
  display: flex;
  justify-content: start;
  text-align: start;
  width: 100%;
  padding: 0px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.sub-menu li a:hover {
  color: var(--main-hover);
}
.sub-menu li a:hover::after {
  opacity: 1;
  visibility: visible;
}
.big-menu > .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 10px;
  padding-bottom: 4px;
}
@media (max-width: 991px) {
  .sub-menu::before {
    display: none;
  }
  .sub-list {
    padding: 0;
  }
  .big-menu > .menu-item-has-children > .sub-menu {
    min-width: unset;
    z-index: 99;
    padding: 0;
    height: unset;
    margin: 0;
    background-color: transparent;
    justify-content: center;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    box-shadow: none;
    left: 0;
    right: 0;
    transform: translateX(0);
  }
  .sub-menu li a {
    justify-content: flex-start;
    text-align: start;
    color: var(--main-color);
    font-size: 14px;
    padding: 0 10px;
  }
  .big-menu > .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 10px;
    padding-bottom: 4px;
  }
}
/*                                 arrow-top                           */
.arrow-top {
  position: fixed;
  bottom: 85px;
  inset-inline-start: 20px;
  display: none;
  padding: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.arrow-top:hover {
  background-color: var(--main-hover);
  color: var(--white-color);
}
.fixed-what {
  position: fixed;
  bottom: 10px;
  inset-inline-start: 10px;
  z-index: 10;
  text-decoration: none !important;
}
.fixed-what i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #4dc247;
  font-size: 36px;
  color: var(--white-color);
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(#4dc247, 0.5);
  box-shadow: 0 0 0 0 rgb(77 194 71 / 40%);
  -moz-animation: pulseWhats 2s infinite;
  -webkit-animation: pulseWhats 2s infinite;
  animation: pulseWhats 2s infinite;
  transition: all 0.4s ease-in-out;
}
@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 194, 71, 1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(77, 194, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(77, 194, 71, 0);
  }
}
.fixed-what i:hover {
  text-decoration: none;
  color: var(--white-color);
  box-shadow: inset 0 0 0 2em var(--main-hover);
}
@media (max-width: 767px) {
  .arrow-top {
    bottom: 70px;
    inset-inline-start: 15px;
  }
  .fixed-what {
    position: fixed;
    bottom: 10px;
    inset-inline-start: 10px;
  }
  .fixed-what i {
    width: 50px;
    height: 50px;
  }
}
body.inner-page {
  padding-top: 104px;
}
.inner-page header {
  background-color: var(--white-color);
}
@media (max-width: 991px) {
  .inner-page .hamburger-lines .line {
    background: var(--main-hover);
  }
  .inner-page .nav-header {
    padding: 10px 0;
  }
  body.inner-page {
    padding-top: 70.25px;
  }
}
