body {
  font-family: "IBMPlexSansArabic-Regular";

  font-style: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  padding-top: 84px;
}

a:hover {
  text-decoration: none;
}

figure {
  margin: 0;
}

@media (max-width: 991px) {
  body {
    padding-top: 55px;
    position: relative;
  }

  html[dir="ltr"] .nav-header .big-menu {
    margin-inline-start: 0 !important;
  }
}

.overflow {
  overflow: hidden;
}

:root {
  --main-color: #000;
  --main-hover: rgb(42 0 130);
  --main-scondary: #ff8300;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

/*style scroll bar*/
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--white-color);
}

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

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

/*preloader*/
.preloader {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.progress {
  position: fixed;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 5px;
  background-color: #f7f7f7;
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  border-radius: 2px;
  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(--main-hover),
    var(--main-color)
  );
}

html[dir="ltr"] .progress-bar {
  background-image: linear-gradient(
    135deg,
    var(--main-color),
    var(--main-hover)
  );
}

nav {
  display: none !important;
}

@keyframes progress {
  from {
    width: 0;
    color: rgba(255, 255, 255, 0);
  }

  to {
    width: 100%;
    color: rgba(255, 255, 255, 1);
  }
}

/*preloader*/
/*                          header section                     */

.chevron-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
  font-size: 12px;
  color: #808080;
  font-weight: 400;

  transition: all 0.3s ease-in-out;
}

.chevron-down:hover {
  color: var(--main-hover);
}

/*                          dropdown                            */
/*top header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.top-header a {
  text-decoration: none;
}

.show-icons {
  display: flex;
  align-items: center;
}

.show-icons .menu-bars {
  display: none;
}

.nav-header {
  display: flex;
  padding: 15px 0;

  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

.nav-header li a {
  color: #000;
  font-size: 25px;

  transition: all 0.3s ease-in-out;
  font-weight: 500;
}

.nav-header li a:hover {
  color: var(--main-hover);
}

.main-title,
.download-title {
  font-size: 50px;
}

.nav-header .big-menu {
  display: flex;
  align-items: center;
  gap: 55px;
  margin: 0;
  padding: 0;
}

.slide-menu {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.slide-menu a:after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-inline-start: 5px;
  transition: 0.5s;
}

.has-level-2 .slide-menu::after {
  content: "" !important;
}

@media (min-width: 992px) {
  .slide-menu:hover .cats-dispaly {
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }
}

.cats-dispaly {
  border-radius: 5px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 8px);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  width: max-content;
  min-width: 322px;
  max-width: 100%;
  background-color: #fff;
  color: var(--sec-color);
  display: flex;
  justify-content: space-between;
  text-align: center;
  border: none;

  transition: all 0.3s ease-in-out;
}

.contact-form {
  width: 100%;
}

.form-label {
  color: #fff;
  text-align: start;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px;
}

.input-field {
  width: 100%;
  height: 45px;
  border: 0;

  outline: none;
  transition: 0.5s;
  background-color: #fff;
  padding: 0 15px;
  display: flex;
  align-items: center;
  color: rgba(85, 95, 109, 1);
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 15px;
}

.input-field::placeholder {
  color: rgba(85, 95, 109, 1);
  font-size: 14px;
  font-weight: 300;
}

.input-textarea {
  height: 100px;
  padding: 15px;
}

.submit-btn {
  width: 100%;
  height: 45px;

  background: linear-gradient(
    90.39deg,
    #00569a -8.58%,
    #007596 46.44%,
    #7ecab0 103.16%
  );

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 0;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
  margin: 0 auto;
}

.submit-btn:hover {
  background: linear-gradient(
    90.39deg,
    #00569a -8.58%,
    #007596 46.44%,
    #7ecab0 103.16%
  );
  color: #fff;
}

.send-btn:focus {
  outline: none;
  border: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.input-field:focus {
  outline: none;
}

.contact-us-content {
  width: 555px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.cats-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 18px;
  border-radius: 18px;
  border: 1px solid rgba(160, 160, 160, 1);
}

.slide-menu-img {
  width: 53px;
  height: 53px;
}

.slide-menu-img img {
  width: 100%;
}

.cats-dispaly .cat-li {
  margin: 0;
  padding: 5px 0;
  position: relative;
  width: 100%;
  text-align: start;
}

.cats-dispaly .cat-li a {
  color: #000;
  text-decoration: none;

  line-height: 1.751;
  font-size: 22px;
  display: flex;
  width: 100%;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out;
  align-items: center;
  gap: 25px;
  font-weight: 700;
}

.header-last-part {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-btn {
  width: 180px;
  height: 58px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: "IBMPlexSansArabic-Medium";
  text-decoration: none;
  transition: 0.5s;
}

.header-btn:hover {
  text-decoration: none;
}

.login-link {
  color: #fff;
  background-color: var(--main-scondary);
}

.login-link:hover {
  color: var(--main-scondary);
  background-color: white;
  border: 1px solid var(--main-scondary);
}

.register-link {
  color: white !important;
  background-color: var(--main-hover);
}

.register-link:hover {
  color: var(--main-hover) !important;
  background-color: white;
  border: 1px solid var(--main-hover);
}

.subscribe-link {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92.57deg, #00569a -6.92%, #00a78f 103.12%);
  width: 143px;
  height: 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.5s;
}

.subscribe-link:hover {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(92.57deg, #00a78f -6.92%, #00569a 103.12%);
}

.cats-dispaly .cat-li:hover > .cat-anchor {
  color: var(--main-hover);
}

.chevron-down::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  inset-inline-end: 0;

  margin-inline-end: 3px;
  font-weight: 900;
  position: absolute;
  font-size: 12px;
  transition: 0.5s;
  bottom: 6px;
}

.menu-name.active.chevron-down::after {
  transform: rotate(180deg);
}

.contact-link {
  background-color: var(--main-hover);
  color: var(--white-color);
  font-size: 14px;
  font-family: "SST-ARABIC-MEDIUM";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  border-radius: 21.5px;
  transition: 0.5s;
  padding: 0 35px;
  text-transform: capitalize;
}

.contact-link:hover {
  color: var(--white-color);
  background-color: var(--sec-hover);
}

@media (max-width: 991px) {
  nav {
    display: block !important;
  }

  .header-btn {
    width: 130px;
    height: 40px;
    font-size: 14px;
  }

  .counter-content {
    flex-wrap: wrap;
    padding: 40px 0;
  }

  .counter-text {
    font-size: 30px !important;
  }

  .counter-number {
    font-size: 30px !important;
  }

  .counter-name {
    font-size: 24px;
  }

  .header-last-part {
    gap: 5px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
  }

  .showing {
    opacity: 1;
    visibility: visible;
    z-index: 9;
  }

  .slide-menu a.active:after {
    transform: rotate(-180deg);
  }

  .cats-dispaly::before {
    display: none;
  }

  .cats-dispaly {
    min-width: unset;
    z-index: 99;
    padding: 0;
    height: unset;
    justify-content: flex-start;
    max-width: 100%;
    box-shadow: none;
    left: 0;
    right: 0;
    transform: translateX(0);
    background-color: transparent;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;

    border-radius: none;
  }

  .cats-dispaly .cat-li a {
    text-align: start;
    padding: 0 5px;
    color: #fff;
  }

  header .top-header {
    display: none;
  }

  .top-header .cats-dispaly .cat-li a:hover,
  .cat-li:hover > .cat-anchor {
    color: var(--main-hover);
  }
}

.fixed-nav {
  margin-top: -150px;
  transition: all 0.3s ease-in-out;
}

.fixed-header {
  position: fixed;
  top: 0;
  background-color: #fff;
}

.fixed-header .fixed-nav {
  margin: 0;
  background-color: #fff;
}

.nav-header .img-logo {
  width: 119px;

  transition: all 0.3s ease-in-out;
}

.nav-header .img-logo img {
  width: 100%;
}

.fixed-logo {
  display: none;
}

.fixed-nav .fixed-logo {
  display: flex;
  align-items: center;
}

.nav-head {
  width: 100%;
  display: none;
}

.show-icons {
  position: relative;
  font-size: 24px;
  font-weight: 400;
  background-color: transparent;
  border: none;

  text-align: center;
  justify-content: center;
  align-items: center;
  display: none;
  color: var(--main-color);
  transition: all 0.3s ease-in-out;
}

/*                          header section                     */
/*           swiper section                     */
.popular-block:hover .product-title {
  color: var(--main-hover);
  text-decoration: none;
}

.price {
  display: flex;
  gap: 10px;
  align-items: center;
}

.new-price {
  color: var(--main-color);
  font-size: 21px;
  font-family: "IBMPlexSansArabic-SemiBold";
  display: flex;
}

.old-price {
  color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  text-decoration: line-through;
  display: flex;
}

.product-title:hover {
  color: var(--main-hover);
  text-decoration: none;
}

.product-title {
  color: var(--main-color);
  font-size: 26px;
  font-family: "IBMPlexSansArabic-SemiBold";
  display: flex;
  width: 100%;
  transition: 0.5s;
  text-align: start;
  text-decoration: none;
  margin-bottom: 10px;
}

.rating img {
  width: 30px !important;
  height: 30px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  font-family: "IBMPlexSansArabic-SemiBold";
  position: absolute;
  bottom: 20px;
  inset-inline-end: 15px;
}

.company {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-family: "IBMPlexSansArabic-SemiBold";
  position: absolute;
  bottom: 20px;
  inset-inline-start: 15px;
}

.company img {
  width: 34px !important;
  height: 34px;
}

.tag img {
  width: 25px !important;
  height: 25px;
}

.tag {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(250, 250, 250, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  top: 10px;
  inset-inline-end: 15px;
}

.product-img-block img {
  border-radius: 40px;
  width: 100%;
}

.product-img-block {
  border-radius: 40px;
  position: relative;
  margin-bottom: 10px;
  width: 357px;
}

.popular-block {
  display: flex;
  flex-direction: column;
}

.popular-blocks {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

.show-more-link:hover {
  color: var(--main-color);
  text-decoration: none;
}

.show-more-link {
  color: var(--main-hover);
  font-size: 25px;
  font-family: "IBMPlexSansArabic-Medium";
  text-decoration: none;
  transition: 0.5s;
}

.section-title {
  color: var(--main-color);
  font-size: 30px;
  font-family: "IBMPlexSansArabic-Medium";
  text-align: start;
  margin: 0;
}

.newsletter-sec {
  background-color: rgba(248, 248, 248, 1);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 499px;
  margin-bottom: 130px;
}

.news-title {
  color: var(--main-color);
  font-size: 50px;
  margin: 0 0 15px;
  font-family: "IBMPlexSansArabic-SemiBold";
  text-align: center;
}

.news-text {
  font-size: 20px;
  font-family: "IBMPlexSansArabic-Light";
  margin: 0 0 30px;
  text-align: center;
  max-width: 669px;
}

.news-block {
  position: relative;
}

.news-block input {
  background-color: #fff;
  width: 546px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 16px;
  color: rgba(130, 130, 130, 1);
  transition: 0.5s;
  border: 2px solid transparent;
  outline: none;
}

.news-block input:focus {
  border: 2px solid var(--main-hover);
  outline: none;
}

.news-btn {
  width: 133px;
  height: 60px;
  background-color: var(--main-hover);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "IBMPlexSansArabic-SemiBold";
  border-radius: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 5px;
  transition: 0.5s;
  padding: 0;
  border: 0;
  outline: none;
}

.news-btn:hover {
  background-color: var(--main-color);
  color: #fff;
}

.news-btn:focus {
  background-color: var(--main-color);
  color: #fff;
  outline: none;
  border: 0;
}

.news-block input::placeholder {
  font-size: 16px;
  color: rgba(130, 130, 130, 1);
}

@media (max-width: 991px) {
  .show-icons {
    display: flex;
  }
}

.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.popular-section {
  padding: 20px 0 20px;
}

/*                          main-slider                             */
/*                       main-banner-section                             */

.top-header {
  background: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: 0;
}

.nav-tabs .nav-link.active .process-no {
  background-color: var(--main-hover);
}

.nav-tabs .nav-link.active .process-name {
  color: var(--main-hover);
  background: #80808047;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: 0;
  padding: 0;
}

.main-banner-section,
.download-banner-section {
  position: relative;
  background-image: url(../images/main-banner/1.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  object-fit: fill;
  min-height: 756px;
  display: flex;
  align-items: center;
}

.main-caption {
  display: flex;
  max-width: 688px;
  flex-direction: column;
}

.main-title,
.download-title {
  color: #ffffff;
  font-size: 3.5vw;
  font-family: "IBMPlexSansArabic-Bold";
  text-align: start;
  line-height: 100px;
  margin: 0 0 20px;
}

.change-color {
  color: var(--main-hover);
}

.main-banner-paragraph,
.download-banner-paragraph {
  color: #ffffff;
  text-align: start;
  font-size: 22px;
  line-height: 35px;
  margin: 0 0 30px;
}

.main-banner-btns {
  display: flex;
  gap: 10px;
}

.main-banner-btn,
.download-banner-btn {
  width: 20vw;
  height: 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-family: "IBMPlexSansArabic-Medium";
  transition: 0.5s;
}

.main-banner-btn:hover,
.download-banner-btn:hover {
  text-decoration: none;
}

.search-section {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -32px;
  outline: 1.5px solid rgba(238, 238, 238, 1);
  border-radius: 40px;
  height: 71px;
  background-color: #fff;
}

.search-section .select {
  height: 71px !important;
}

.select {
  height: 233px;
  display: flex;
  justify-content: center;
  width: 228px;
  border: 0;
  outline: none;
  padding: 12px 0;
  text-align: center;
}

.select select {
  border-left: 1rem solid transparent;
}

select {
  border: 0;
  outline: none;
  height: 208px;
  display: flex;
  justify-content: center;
  width: 220px;
  font-size: 22px;
  text-align: center;

  border-left: 2px solid rgba(238, 238, 238, 1);
}

select .bold {
  font-size: 25px;
  font-family: "IBMPlexSansArabic-Medium";
}

.search {
  background-color: var(--main-hover);
  border-radius: 40px 0 0 40px;
}

.search-btn {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  color: #fff;
  font-size: 30px;
  font-family: "IBMPlexSansArabic-Medium";
}

.search-btn:focus {
  outline: none;
  border: 0;
}

/*                       main-banner-section                             */

/*                  deal section                             */
.deal-section {
  background-color: var(--main-hover);
  padding: 80px 0;
}

.deal-note {
  font-size: 22px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 0 10px;
  color: #fff;
  font-family: "Tajawal-Light";
}

.deal-title {
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 48px;
  font-family: "Tajawal-Bold";
  margin: 0 0 10px;
}

.deal-p {
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 453px;
  margin: 0 auto 40px;
}

.deal-blocks {
  display: flex;
  justify-content: space-between;
}

.deal-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.deal-step {
  color: #fff;
  font-size: 28px;
  margin: 0;
  font-family: "Tajawal-Medium";
}

.deal-step b {
  font-size: 46px;
}

.deal-img {
  width: 150px;
  aspect-ratio: 1/1;
}

.deal-img img {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.about-section {
  padding: 120px 0;
}

.about-title {
  color: var(--main-hover);
  text-transform: capitalize;
  margin: 0 0 35px;
  text-align: start;
  font-size: 46px;
  font-family: "Tajawal-Bold";
}

.about-pp {
  line-height: 58px;
  font-size: 36px;
  color: var(--main-color);
  text-align: start;
  margin: 0;
}

.about-block {
  margin-bottom: 55px;
}

.careers-section {
  padding: 120px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.careers-title {
  color: var(--main-hover);
  font-size: 46px;
  font-family: "Tajawal-Bold";
  text-align: start;
  margin: 0;
}

.career-p {
  color: var(--main-color);
  font-size: 46px;
  text-align: start;
  margin: 0;
}

.apply-btn {
  width: 175px;
  height: 47px;
  background-color: var(--main-hover);
  display: flex;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.5s;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  margin-top: 40px;
}

.apply-btn:hover {
  background-color: var(--main-color);
  color: #fff;
}

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

.register-img-block {
  position: relative;
  background-image: url(../images/register/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100%;
}

.reserved {
  width: 436px;

  border-radius: 10px;

  position: absolute;
  top: 0;
  inset-inline-end: -230px;
}

.mb-40 {
  margin-bottom: 40px;
}

.reserved img {
  width: 100%;
  border-radius: 10px;
}

.trip {
  width: 373px !important;
  border-radius: 10px;

  position: absolute;
  bottom: 0;
  inset-inline-start: -100px;
}

.trip img {
  width: 100%;
  border-radius: 10px;
}

.reserve-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.reserve-note {
  color: var(--main-hover);
  font-size: 25px;
  background: rgba(27, 154, 170, 0.1);
  width: 194px;
  height: 47px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 18px;
  font-family: "IBMPlexSansArabic-SemiBold";
}

.reserve-title {
  color: var(--main-color);
  font-size: 45px;
  font-family: "IBMPlexSansArabic-SemiBold";
  margin: 0 0 15px;
  text-align: start;
}

.reserve-text {
  color: var(--main-color);
  font-size: 20px;
  text-align: start;
  margin: 0 0 20px;
  width: 616px;
}

.reserve-link {
  width: 239px;
  height: 74px;
  background-color: var(--main-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
  font-family: "IBMPlexSansArabic-SemiBold";
  border-radius: 45px;
}

.reserve-link:hover {
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
}

.counter-section {
  background-color: var(--main-hover);
  min-height: 250px;
  display: flex;
  align-items: center;
}

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

.counter-text {
  color: #fff;
  font-size: 50px;
  font-family: "IBMPlexSansArabic-Medium";
  width: 427px;
  text-align: start;
}

.count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.counter-number::before {
  content: "+";
}

.counter-number {
  font-size: 60px;
  font-family: "IBMPlexSansArabic-SemiBold";
  color: #fff;
  display: flex;
}

.counter-name {
  color: #fff;
  font-size: 30px;
}

/*                  deal section                             */

/*                         categories section                */
.categories-section {
  padding: 50px 0;
}

.categories-section-title {
  margin-bottom: 30px;
}

.categories-paragraph {
  font-size: 22px;
  font-weight: 600;
  color: rgba(35, 137, 160, 1);
  margin: 0 auto 15px;
  display: flex;
  text-align: center;
  justify-content: center;
}

.all-link {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto 60px;
  text-decoration: none;
  color: rgba(35, 137, 160, 1);
  font-size: 22px;
  font-weight: 600;
  align-items: baseline;
  transition: 0.5s;
}

.all-link:hover {
  color: var(--main-hover);
  text-decoration: none;
}

.all-link i {
  margin-inline-start: 10px;
}

.cat-blocks {
  display: flex;
  justify-content: space-between;
}

.cat-block {
  overflow: hidden;
  width: 338px;
  display: flex;
  flex-direction: column;
}

.cat-img {
  width: 338px;
  height: 348px;
  overflow: hidden;
  transition: 0.5s;
  position: relative;
}

.cat-img img {
  width: 100%;
  transition: 0.5s;
}

.cat-img:hover img {
  transform: scale(1.05);
}

.fs-20 {
  font-size: 20px;
}

/*                      categories section                         */
/*                     contact-section                               */
.contact {
  display: flex;
  width: 623px;
  background-color: rgba(0, 114, 204, 1);
  border-radius: 0px 16px 16px 0px;
  padding: 40px;
  flex-direction: column;
  text-align: start;
}

.contact-block {
  display: flex;
  padding-bottom: 90px;
}

.contact-title {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  text-align: start;
  margin: 0 0 20px;
}

/*                     contact-section                        */

/*                                   footer                            */
footer {
  padding: 50px 0 10px;
  background-color: rgba(248, 248, 248, 1);
}

.footer-logo {
  width: 148px;
  margin-bottom: 30px;
}

.footer-p {
  color: var(--main-color);
  font-size: 25px;
  text-align: start;
  margin: 0 0 20px;
}

.social {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  padding: 0;
}

.social li a {
  color: #4a4a4a;
  transition: 0.5s;
}

.social li i {
  font-size: 30px;
  color: #4a4a4a;
  transition: 0.5s;
}

.social li:not(:last-child) {
  margin-inline-end: 5px;
}

.social li a:hover i {
  color: var(--main-hover);
}

.nav-foot-cont {
  text-align: start;
}

.nav-foot-header {
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 30px;
  color: var(--main-color);
  margin-bottom: 37px;
  text-align: start;
  font-family: "IBMPlexSansArabic-Medium";
  margin-top: 28px;
}

@media (min-width: 991px) {
  .nav-wrap {
    display: flex;
    flex-direction: column;
    max-height: 200px;
    flex-wrap: wrap;
  }

  html[dir="ltr"] .nav-wrap {
    max-height: 250px;
  }
}

.nav-foot li {
  margin-bottom: 12px;
  max-width: 195px;
}

.nav-foot-link {
  color: var(--main-color);
  font-size: 18px;
  font-family: "IBMPlexSansArabic-SemiBold";
  display: inline-flex;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}

.nav-foot-li .nav-foot-link:hover {
  color: var(--main-hover);
}

.social-list2 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.social-list2 li {
  margin-inline-end: 7px;
}

.social-list2 li i {
  width: 40px;
  height: 39px;
  background-color: rgb(24, 16, 66);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 18px;
  transition: 0.5s;
  border-radius: 50%;
}

.single-section {
  padding: 100px 0;
}

.single-content {
  display: flex;
  gap: 30px;
}

.single-title {
  color: var(--main-color);
  font-size: 40px;
  text-align: start;
  font-family: "IBMPlexSansArabic-Medium";
  margin: 0 0 30px;
}

.single-span {
  display: flex;
  text-align: start;
  gap: 10px;
  align-items: center;
  font-size: 22px;
  font-family: "IBMPlexSansArabic-SemiBold";
  margin: 0 0 50px;
}

.img-block {
  width: 615px;
}

.single-timeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.single-timeline-object {
  width: 100%;
  display: flex;
}

.single-timeline-day {
  /* width: 20%; */
  margin-left: 50px;
  flex: none;
  font-size: 1rem;
  padding-left: 0.25rem;
}

.single-timeline-infos {
  flex-grow: 1;
  /* padding-right: 1rem; */
  /* border-right: 1px solid var(--main-hover); */
  /* cursor: pointer; */
}

.single-timeline-object .line-r {
  height: 50px;
  border-right: 1px solid var(--main-scondary);
  margin-right: -17px;
  margin-top: -25px;
}

.single-timeline .single-timeline-object:first-child .line-r {
  height: 30px !important;
  margin-top: -5px;
}

.share-trip-icon {
  position: relative;
  inset-inline-start: 15px;
  z-index: 999;
  text-decoration: none !important;
  left: 0px;
  padding: 0px 10px;
  background: white;
  cursor: pointer;
  float: left;
  color: var(--main-hover);
  font-size: 23px;
  justify-content: end;
}

.stars .checked {
  color: orange;
}

.filter-hotel-stars.active span {
  color: orange;
}

.fa-whatsapp {
  color: #2aa81a !important;
}

.fa-facebook {
  color: #0866ff;
}

.fa-copy {
  color: black;
}

.share-icon {
  padding: 10px;
  background: white;
  border-radius: 42px;
}

#share-icons.d-flex {
  width: fit-content;
  transition: width 2s linear 1s;
}

#share-icons {
  width: 0px;
}

.footer-content a {
  color: var(--main-hover);
}

.single-timeline-infos::after {
  content: "";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(-0.5rem + 30px);
  margin-right: -1.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  outline: 2px solid var(--main-scondary);
  border: 4px solid #fff;
  border-radius: 100%;
}

.single-trip-book {
  display: flex;
}

.single-trip-book .reserve-link {
  width: 100%;
  flex-grow: 1;
}

.single-trip-book .single-trip-price {
  display: flex;
  flex-direction: column;
  text-wrap: nowrap;
  margin-right: 2rem;
}

.single-trip-book .single-trip-price .trip-span {
  margin-bottom: 0px;
}

.active.single-timeline-infos::before {
  background-color: var(--main-hover);
}

.single-timeline-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 50px 0.25rem 0;
  /* border-top: 1px solid #C4C4C4; */
}

.single-timeline-details.last {
  /* border-bottom: 1px solid #C4C4C4; */
  margin-bottom: 0.5rem;
}

.single-timeline-title {
  font-size: 1.15rem;
}

.active .single-timeline-desc {
  display: block;
}

.single-timeline-desc {
  display: none;
  font-size: 1rem;
}

.single-text {
  color: var(--main-color);
  text-align: start;
  font-size: 1.15rem;
  margin: 0 0 40px;
  width: 597px;
}

.single-trip-share {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.single-trip-share-buttons {
  display: flex;
  align-items: center;
  padding-right: 0.25rem;
}

.single-trip-share-buttons > * + * {
  margin-right: 0.5rem;
}

.single-trip-share-buttons a:hover img {
  height: 2.75rem;
}

.single-trip-share-buttons a img {
  transition: all 0.25s ease-in-out;
  height: 2.5rem;
}

.trip-span {
  color: var(--main-color);
  display: flex;
  text-align: start;
  font-size: 20px;
  font-family: "IBMPlexSansArabic-SemiBold";
  margin: 0 0 20px;
}

.trip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-size: 16px;
}

.trip-list-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  width: 79px;
  height: 79px;
  background-color: rgba(255, 193, 7, 0.1);
}

.img-block img {
  width: 100%;
  border-radius: 18px;
}

.copy-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  border-top: 1px solid #c4c4c4;
}

.copy-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "IBMPlexSansArabic-SemiBold";
  color: var(--main-color);
  font-size: 20px;
  text-align: center;
}

.copy-right figure {
  margin-inline-start: 5px;
}

.design {
  color: var(--white-color);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 100px;
}

.about-image {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.about-image img {
  transition: 0.5s;
  width: 100%;
}

.about-image:hover img {
  transform: scale(1.05);
}

/*                             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;
}

.footer-accordion:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
  transition: all 0.5s ease-out;
}

.footer-accordion.active:after {
  transform: rotate(180deg);
}

html[dir="rtl"] .footer-accordion.active:after {
  transform: rotate(-180deg);
}

/*                             footer accordion                 */

@media (max-width: 767px) {
  .text a {
    font-size: 17px;
  }

  footer {
    padding: 50px 0 40px;
  }

  .social {
    justify-content: center;
    margin-bottom: 0px;
  }

  .nav-foot-cont {
    text-align: start;
    margin-bottom: 20px;
  }

  .nav-foot-header {
    text-align: center;
  }

  .copy-flex {
    padding-top: 30px;
    justify-content: center;
    flex-direction: column;
  }

  .copy-right {
    margin-bottom: 5px;
  }
}

/*                                   footer                            */

/*                                    media query                                    */
/*                    menu in phone size                      */

@media (max-width: 991px) {
  .nav-header .img-logo {
    width: 80px;
  }

  .single-content {
    flex-wrap: wrap;
  }

  .single-timeline-day {
    width: 25%;
  }

  .img-block {
    width: 100%;
  }

  .single-text {
    width: 100%;
  }

  .trip-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 30px;
  }

  .news-title {
    font-size: 24px;
  }

  .main-caption {
    width: 50%;
    padding-top: 20px;
  }

  .main-title,
  .download-title {
    line-height: 1.3;
    font-size: 4.3vw;
    margin: 0 0 10px;
  }

  .download-title {
    font-size: 20px;
  }

  .newsletter-sec {
    min-height: 300px;
    padding: 20px;
  }

  .news-block input {
    width: 100%;
  }

  .popular-section {
    padding: 50px 0;
  }

  .reservation-section {
    padding: 0 0 50px;
  }

  .register-content {
    flex-wrap: wrap;
    gap: 30px;
  }

  .reservation-section {
    padding-top: 4rem;
  }

  .reserved {
    top: -145px;
    right: -2rem;
  }

  .trip {
    width: 100%;
    bottom: -10%;
    inset-inline-start: 0;
  }

  .reserve-text {
    width: 100%;
    margin: 20px 0;
    font-size: 18px;
  }

  .reserve-title {
    font-size: 24px;
    margin: 0;
  }

  .reserve-link {
    height: 50px;
    font-size: 18px;
  }

  .section-title {
    font-size: 24px;
  }

  .show-more-link {
    font-size: 18px;
  }

  .popular-blocks {
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-img-block {
    width: 330px;
  }

  .main-banner-section {
    min-height: auto;
  }

  .main-banner-container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .main-banner-paragraph {
    font-size: 1.5vw;
    text-wrap-mode: nowrap;
    margin: 0;
  }

  .main-banner-btn {
    height: 45px;
    font-size: 16px;
  }

  .download-banner-section {
    min-height: auto;
    padding-bottom: 40px !important;
    padding-top: 40px !important;
  }

  .download-banner-paragraph {
    font-size: 2.9vw;
    text-wrap-mode: nowrap;
    margin: 0;
  }

  .download-banner-btn {
    height: 35px;
    font-size: 12px;
  }

  .search-section {
    display: grid;
    position: relative;
    border: 0;
    border-radius: 0;
    outline: none;
    height: auto;
    bottom: 0;
    margin-top: 20px;
    width: 100%;
    overflow-x: scroll;
  }

  .select {
    height: 50px;
    width: 100%;
    padding: 0;
  }

  .select select {
    width: 100%;
  }

  select {
    height: 50px;
    width: 150px;
    font-size: 16px;
  }

  .search {
    border-radius: 0;
    width: 100%;
  }

  .search-btn {
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  ::-webkit-scrollbar {
    height: 5px;
  }

  .projects {
    gap: 15px;
  }

  .specialized-section {
    padding: 50px 0;
  }

  .specialized-title {
    font-size: 45px;
  }

  .specialized-blocks {
    grid-template-columns: repeat(1, 1fr);
  }

  .specialized-block {
    width: 100%;
  }

  .deal-title {
    font-size: 45px;
  }

  .deal-p {
    max-width: 100%;
  }

  .deal-blocks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .deal-block:not(:last-child) {
    margin-bottom: 30px;
  }

  .deal-block {
    width: 100%;
  }

  .categories {
    flex-wrap: wrap;
  }

  .about-us-figure {
    width: 100%;
    position: relative;
  }

  .about-div-cont {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .contact-section .about-div-cont {
    flex-wrap: wrap;
  }

  .contact-us-figure {
    width: 400px;
  }

  .contact-text-div {
    padding: 40px !important;
  }

  .about-text-div {
    margin-top: 0;
    width: 100%;
    padding: 0 0 40px;
  }

  .show-icons,
  .header-icons .add-to {
    margin-inline-end: 0;
  }

  .nav-header {
    position: relative;
  }

  .register-link {
    font-size: 15px;
  }

  .subscribe-link {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }

  .contact-link {
    height: 35px;
    position: absolute;
    inset-inline-end: 35px;
  }

  .show-icons .menu-bars {
    position: relative;
    z-index: 8;
    width: 18px;
    display: flex;
    align-items: center;

    transition: all 0.3s ease-in-out;
  }

  .menu-bars:hover {
    color: var(--main-hover);
  }

  .nav-head {
    display: flex;
    justify-content: flex-start;
    padding: 25px 0 10px;
  }

  .fixed-nav .nav-head {
    padding: 18px 0 10px;
  }

  .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: #fff;
    transition: 0.4s;
    z-index: 8;
    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%);
  }

  .nav-header .big-menu {
    display: block;

    text-align: start;
    align-items: center;
    padding: 10% 20px 20px;
    padding-inline-end: 0;
    margin-inline-start: 0;
  }

  .nav-header li {
    margin: 0;
  }

  .big-menu li {
    margin-bottom: 20px;
  }

  .slide-menu {
    padding-inline-end: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }

  .chevron-down {
    line-height: unset;
  }

  .nav-header li a {
    display: flex;

    align-items: center;
    font-size: 22px;
    font-family: "IBMPlexSansArabic-Medium";

    position: relative;
  }

  /*                    menu in phone size                      */
}

/*                                    media query                                    */

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

/*                                 arrow-top                           */
.arrow-top {
  position: fixed;
  bottom: 15px;
  inset-inline-start: 15px;
  display: none;
  z-index: 10;
  text-decoration: none !important;
}

.arrow-top i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  color: #808080;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.arrow-top i:hover {
  background-color: var(--main-hover);
  color: #fff;
}

@media (max-width: 767px) {
  .arrow-top {
    bottom: 10px;
    inset-inline-start: 10px;
  }

  .footer-first-record {
    flex-wrap: wrap;
  }
}

@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-left: 20px;
    padding-right: 20px;
  }
}

/*hamburger menu*/
.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(--main-hover);
}

.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);
}

@media (max-width: 1188px) {
  .nav-header .big-menu {
    margin-inline-start: 0;
  }

  html[dir="ltr"] .nav-header .big-menu {
    margin-block-start: 0;
  }

  .footer-block {
    display: flex;
    margin-bottom: 15px;
    flex-wrap: nowrap;
  }

  .nav-foot li {
    max-width: 100%;
  }

  .footer-block i {
    margin-bottom: 20px;
  }

  .text a {
    font-size: 18px;
  }

  .section-head {
    font-size: 24px;
  }

  .services {
    padding: 50px 0 55px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nav-header .big-menu {
    gap: 30px;
  }

  .product-img-block {
    width: 280px;
  }

  .counter-content {
    gap: 30px;
  }

  .counter-number {
    font-size: 50px;
  }

  .reserved {
    top: 0;
    inset-inline-end: 0;
  }

  .trip {
    width: 100%;
    inset-inline-start: 0;
  }

  .product-title {
    font-size: 22px;
  }

  .popular-section {
    padding: 50px 0;
  }

  .header-btn {
    width: 160px;
    height: 50px;
  }

  .main-btn {
    width: 270px;
  }

  .search-section {
    display: grid;
    position: relative;
    border: 0;
    border-radius: 0;
    outline: none;
    height: auto;
    bottom: 0;
    margin-top: 20px;
    width: 100%;
    overflow-x: scroll;
  }

  .select {
    height: 100px;
    width: 100%;
    padding: 0;
  }

  .select select {
    width: 100%;
  }

  select {
    height: 100px;
    width: 200px;
    font-size: 16px;
  }

  .search {
    border-radius: 0;
    width: 100%;
  }

  .search-btn {
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  ::-webkit-scrollbar {
    height: 5px;
  }

  .main-banner-section {
    min-height: 550px;
  }

  .main-title,
  .download-title {
    font-size: 58px;
  }

  html[dir="ltr"] .nav-wrap {
    max-height: 100%;
  }

  .logo-sm img {
    max-width: 190px;
  }

  .nav-header li {
    margin: 0 10px;
  }

  .services-slider .services-figure {
    width: 100%;
  }

  .news-slider .services-figure {
    width: 100%;
  }

  .gallery-img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .about-us-section figure {
    margin-inline-start: 1rem !important;
  }

  .nav-wrap {
    max-height: 100%;
  }

  .about-us-head {
    font-size: 25px;
  }
}

@media only screen and (max-width: 994px) and (min-width: 768px) {
  .main-title,
  .download-title {
    font-size: 34px;
  }

  .kayan-img {
    width: 350px;
  }

  .careers-section {
    flex-wrap: nowrap;
  }

  .careers-img {
    order: 2;
    margin-bottom: 0;
  }

  .contact-section .about-div-cont {
    flex-wrap: nowrap;
  }

  .about-text-div {
    margin-top: 10px;
    width: 350px;
    padding: 15px 20px;
  }

  .specialized-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .deal-block {
    width: 45%;
  }

  .about-us-title {
    font-size: 31px;
    margin: 0 0 10px;
  }

  .about-p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .build-link {
    height: 45px;
  }

  .banner-section {
    background-position: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-first-record {
    /* grid-template-columns: repeat(2,1fr); */
    align-items: baseline;
  }

  .about-us-cont {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .about-us-text {
    margin-inline-start: 30px;
  }

  .about-us-head {
    font-size: 24px;
    text-align: start;
    position: relative;
    margin-bottom: 19px;
  }

  .about-us-pargh {
    text-align: start;
    margin-bottom: 16px;
    max-width: 100%;
    margin: 0 0 26px;
  }

  .about-us-cont figure {
    margin: 0;
  }

  .more-btn {
    margin: 0;
  }

  .about-us-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-text {
    width: 100%;
  }

  .about-us-section {
    margin-top: 30px;
  }

  .footer-block {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-block i {
    width: 49px;
    height: 48px;
    font-size: 24px;
  }

  .text span {
    text-align: center;
    margin-bottom: 13px;
  }

  .nav-foot-header {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .nav-wrap {
    display: flex;
    flex-direction: column;

    flex-wrap: wrap;
  }

  .social-list2 li i {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  .subscribe {
    font-size: 14px;
  }

  .nav-foot-link {
    font-size: 14px;
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  .text a {
    display: flex;
    text-align: center;
  }

  html[dir="ltr"] .newsletter input {
    font-size: 12px;
  }

  html[dir="ltr"] .newsletter-button {
    inset-inline-end: 15px;
  }
}

@media only screen and (max-width: 990px) {
  .position-fixed.share-trip-icon {
    margin-top: 50px;
  }
}

.aside-filter {
  transform: translateX(-100%);
  /* background-color: #aaa; */
  box-shadow: 9px 13px 15px -10px black;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 56px;
  padding: 56px 22px 50px 25px;
  padding-left: 10;
  /* height: fit-content; */
  /* padding: 80px 20px; */
  /* overflow: scroll; */
  height: 100vh;
  overflow: scroll;
  position: sticky;
  top: 0;
  background-color: white;
}

.aside-filter.active {
  transform: translateX(0%);
  transition: transform 1.5s;
}

.search-items {
  padding-right: 15px;
  margin: auto;
  max-width: 1170px;
}

.filter-btn {
  cursor: pointer;
  color: var(--main-hover);
}

.aside-filter .select {
  height: 70px;
  display: flex;
  justify-content: center;
  width: 100%;
  outline: none;
  padding: 12px 0;
  margin-top: 30px;
  text-align: center;
  align-items: center;
  border-radius: 14px;
}

.select2-selection__arrow {
  top: -1% !important;
}

.aside-filter-inner {
  /* position: sticky;
  top: 0; */
}

.filter-hotel-sort:hover,
.filter-hotel-sort.active,
.filter-hotel-stars:hover,
.filter-hotel-stars.active {
  color: var(--main-hover) !important;
  border-color: var(--main-hover) !important;
  background-color: transparent !important;
  box-shadow: 0 0 8px var(--main-hover) !important;
}

.filter-hotel-sort,
.filter-hotel-stars {
  color: gray;
  border-color: gray;
  background-color: transparent;
}

.aside-filter {
  color: black;
}

.aside-filter .form-group,
.aside-filter .sort-parent,
.aside-filter .f-parent {
  text-align: right;
}

.aside-filter .left-arrow {
  display: inline-block;
  top: -3px;
  text-align: right;
  padding: 10px;
  color: white !important;
  position: sticky;
  background-color: var(--main-hover);
  float: right;
  z-index: 11111;
  transform: translateY(-55px) translateX(24px);
  border: 1px solid;
  border-radius: 0px 0px 0px 10px;
  cursor: pointer;
}

.aside-filter .left-arrow:hover {
  color: var(--main-hover) !important;
  background-color: white;
}

.aside-filter .select {
  border: 1px solid;
  margin-top: 0 !important;
}

.aside-filter .select2-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 14px;
}

.aside-filter .select2-selection__arrow {
  top: 16% !important;
  margin-left: 10px;
}

.empty-link {
  color: black;
  border: 1px solid gray;
  background-color: transparent;
}

.empty-link:hover {
  color: white;
  background-color: gray;
}

.popular-block {
  width: 375px;
}

.navbar-nav {
  background-color: white;
}

@media only screen and (max-width: 991px) {
  .about-apps {
    flex-direction: column !important;
    gap: 50px;
  }

  /* .aside-filter.col-md-4 {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  } */
  /* 
  .search-items .trip-card.col-md-4 {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .search-items .trip-card.col-md-6 {
    display: none;
  } */

  /* .popular-block,
  .popular-blocks {
    flex-basis: 100%;
    margin: auto;
  }

  .popular-blocks.col-md-4 {
    max-width: 100%;

  } */

  /* .share-trip-icon {
    margin: 0 0 0 -49px;
    top: 50px;
  } */

  .search-items .trip-card.col-md-6 {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .search-items .popular-block {
    margin: auto;
  }
}

@media only screen and (max-width: 1199px) {
  /* 
  .search-section {
    margin-top: 85px;
  }

  .search-items .trip-card.col-md-4 {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
  } */

  .search-items .popular-block {
    width: 275px;
  }
}

.single-text {
  width: 100%;
}

.header-btn,
.header-last-part a {
  width: 100%;
}

.nav-header .header-last-part {
  width: 100%;
  max-width: 283px !important;
}

.banner-desc {
  position: absolute;
  z-index: 54451;
  background-color: #8080808f;
  /* margin-top: auto; */
  bottom: 0px;
  width: 100%;
  height: 100px;
  border: 0px solid;
  border-radius: 0 0 15px 15px;
  padding: 16px;
  font-weight: bolder;
  color: var(--main-hover);
}

.select2-dropdown--above {
  top: -20px;
}

@media only screen and (max-width: 1200px) {
  .search-section {
    bottom: -100px !important;
    z-index: 3633;
  }
  .booking-filter,
  .search-items {
    margin-top: 115px !important;
  }
}
.apps-footer-img a {
  margin: auto;
}
.apps-footer-img {
  gap: 10px;
  position: fixed;
  bottom: -150px;
  inset-inline-start: 15px;
  z-index: 999;
  text-decoration: none !important;
  left: 0px;
  display: flex;
  flex-direction: row;
  padding: 15px 0px;
  background-color: white;
}
.apps-footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wow .title-bar h3 {
  font-family: "IBMPlexSansArabic-Bold";
  font-size: 2em;
  cursor: pointer;
}
.big-menu li a {
  font-family: "IBMPlexSansArabic-Bold";
  font-size: 1.5em;
  cursor: pointer;
}
@media only screen and (min-width: 1500px) {
  .search-items.col-md-8,
  .aside-filter-2 {
    margin-top: 80px !important;
  }
}
