/*
    ** Importing custom components fot the theme
    ** Created by m.zalloum
    ** import all sub_components 
*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Naskh Arabic';
  src: url('../fonts/NotoNaskhArabic-Regular.woff2') format('woff2'),
      url('../fonts/NotoNaskhArabic-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Naskh Arabic';
  src: url('../fonts/NotoNaskhArabic-Medium.woff2') format('woff2'),
      url('../fonts/NotoNaskhArabic-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Naskh Arabic';
  src: url('../fonts/NotoNaskhArabic-Bold.woff2') format('woff2'),
      url('../fonts/NotoNaskhArabic-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: 'GE SS Two';
  src: url('../fonts/GESSTwoBold-Bold.woff2') format('woff2'),
      url('../fonts/GESSTwoBold-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GE SS Two';
  src: url('../fonts/GESSTwoLight-Light.woff2') format('woff2'),
      url('../fonts/GESSTwoLight-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GE SS Two';
  src: url('../fonts/GESSTwoMedium-Medium.woff2') format('woff2'),
      url('../fonts/GESSTwoMedium-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
} */

:root {
  --main-color: #1C326E;
  --secondary-color: #d72c38;
  --body-color: #000;
  --soft-white: #F9F9F9;
  --dark-blue: #0f2b6f;
  --gray: #bbbbbb;
  --blue: #42AABB;
  --yellow: #E8953E;
  --main-font: "Inter",sans-serif;
  --secondary-font: "Inter",sans-serif;
  --body-font-size: 18px;
  --section-padding: 64px;
  --header-height:97px;
  --container-width:1256px;
  --container-fluid:1384px;
  --main-radius:4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
  color: var(--body-color);
  font-weight: 400;
  line-height: 1.4;
}

body.lang-ar {
  direction: rtl;
  text-align: right;
  --main-font: 'Noto Naskh Arabic','Inter';
  font-weight: 300;
}
.content-section * {
  font-family: var(--main-font)!important;
}
.lang-ar .content-section * {
  font-family: var(--main-font)!important;
}
.f-300 {
  font-weight: 300;
}

.f-400 {
  font-weight: 400;
}

.f-500 {
  font-weight: 500;
}

.f-600 {
  font-weight: 600;
}

.bold {
  font-weight: bold;
}

.font-2 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
}

.container, .container-big {
  max-width: var(--container-width);
  width: 95%;
  margin: 0 auto;
}

.container-big {
  max-width: var(--container-fluid);
}

.list-none {
  padding: 0;
}

ul,
figure {
  margin: 0;
}

.list-none li {
  list-style: none;
}

.d-flex {
  display: flex;
  display: -webkit-flex;
}

.row-reverse {
  flex-direction: row-reverse;
}

.d-block {
  display: block;
}

.flex-column {
  flex-direction: column;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: end;
}

.shrink-0 {
  flex-shrink: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal {
  text-transform: none;
}

button {
  cursor: pointer;
}

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  text-transform: none;
}

button, input, textarea, select {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
}

.line_1 {
  line-height: 1;
}

.line_1-3 {
  line-height: 1.3;
}

.line_1-5 {
  line-height: 1.5;
}

.center {
  text-align: center;
}

.align {
  text-align: inherit;
}

.text-reverse {
  text-align: right;
}

.lang-ar .text-reverse {
  text-align: left;
}

.justify {
  text-align: justify;
}

.pre-line {
  white-space: pre-line;
}

.flex-1 {
  flex: 1;
}

.align-center {
  align-items: center;
}

.align-self {
  align-self: baseline;
}

.align-end {
  align-items: flex-end;
}

.self-end {
  align-self: end;
}

.flex-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unicode {
  unicode-bidi: plaintext;
}

.underline {
  text-decoration: underline;
}

:focus {
  outline: none;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.overflow-hidden {
  overflow: hidden;
}

.trans, .hover-color {
  transition: 0.4s;
}

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

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  white-space: nowrap;
}

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

.secondary-color {
  color: var(--secondary-color);
}

.gray {
  color: var(--gray);
}

.blue {
  color: var(--blue);
}

.yellow {
  color: var(--yellow);
}

.bg-black {
  background-color: black;
}

.bg-transparent {
  background-color: transparent;
}

.bg-main {
  background-color: var(--main-color);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-soft {
  background-color: var(--soft-white);
}

.bg-soft2 {
  background-color: #F6F6F6;
}

.bg-body-color {
  background-color: var(--body-color);
}

.body-color {
  color: var(--body-color);
}

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

.black {
  color: #000;
}

.white {
  color: #fff;
}

.white-i {
  color: #fff !important;
}

.bg-white {
  background-color: #fff;
}

.bg-cover {
  background-size: cover !important;
}

.object-fit {
  object-fit: cover;
}

.h-100 {
  height: 100%;
}

.h-full {
  height: 100vh;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-32 {
  width: 32%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-43 {
  width: 43%;
}

.w-45 {
  width: 45%;
}

.w-47 {
  width: 47%;
}

.w-48 {
  width: 48%;
}

.w-50 {
  width: 50%;
}

.w-52 {
  width: 52%;
}

.w-53 {
  width: 53%;
}

.w-55 {
  width: 55%;
}

.w-58 {
  width: 58%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-100 {
  width: 100%;
}

.w-100-i {
  width: 100% !important;
}

.relative {
  position: relative;
}

.intl-tel-input {
  width: 100%;
}

.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
  color: #000;
}

.top-2 {
  position: relative;
  top: 2px;
}

.section-padding {
  padding-block: var(--section-padding);
}

.section-padding-t {
  padding-top: var(--section-padding);
}

.section-padding-b {
  padding-bottom: var(--section-padding);
}

.section-padding-x {
  padding-inline: var(--section-padding);
}

.p-section-padding {
  padding: var(--section-padding);
}

.p-0 {
  padding: 0px;
}

.p-16 {
  padding: 16px;
}

.p-32 {
  padding: 32px;
}

.py-8 {
  padding-block: 8px;
}

.py-15 {
  padding-block: 15px;
}

.py-25 {
  padding-block: 25px;
}

.py-30 {
  padding-block: 30px;
}

.px-15 {
  padding-inline: 15px;
}

.px-25 {
  padding-inline: 25px;
}

.px-30 {
  padding-inline: 30px;
}

.px-section-padding {
  padding-inline: var(--section-padding);
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mx-auto {
  margin-inline: auto;
}

.mt-section-padding {
  margin-top: var(--section-padding);
}

.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-section-padding {
  margin-bottom: var(--section-padding);
}

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

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

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

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

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

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

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

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

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

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

.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
  display: grid;
  gap: 25px;
}

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

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

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

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

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

.gap-5 {
  gap: 5px;
}

.gap-7 {
  gap: 7px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.gap-section-padding {
  gap: var(--section-padding);
}

.row-gap-30 {
  row-gap: 30px;
}

.lang-ar .flip-ar, .flip {
  transform: scaleX(-1);
}

.pointer-none {
  pointer-events: none;
}

.pointer, [photo-swipe] {
  cursor: pointer;
}

.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

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

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 17px;
}

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

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

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

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

.font-30 {
  font-size: 30px;
}

.font-32 {
  font-size: 32px;
}

.font-34 {
  font-size: 34px;
}

.font-40 {
  font-size: 40px;
}

.mo {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.one-line,
.three-line,
.four-line,
.five-line,
.two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.one-line {
  -webkit-line-clamp: 1;
}

.two-line {
  -webkit-line-clamp: 2;
}

.three-line {
  -webkit-line-clamp: 3;
}

.four-line {
  -webkit-line-clamp: 4;
}

.five-line {
  -webkit-line-clamp: 5;
}

.full-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.opacity-0 {
  opacity: 0;
}

.radius-0 {
  border-radius: 0 !important;
}

.radius {
  border-radius: var(--main-radius);
}

.radius-4 {
  border-radius: 4px;
}

.radius-5 {
  border-radius: 5px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-16 {
  border-radius: 16px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-32 {
  border-radius: 32px;
}

.rounded {
  border-radius: 50%;
}

.border {
  border: 1px solid #e6e6e6;
}

.border-0 {
  border: 0;
}

.modal, .main-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
}

.modal-half-bottom {
  display: flex;
  align-items: end;
}

.modal-half-bottom .modal-body {
  width: 100%;
  bottom: -100%;
  border-radius: 8px 8px 0 0;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-half-bottom.active .modal-body {
  bottom: 0;
}

.modal.active, .main-menu-mobile.active {
  visibility: visible;
  pointer-events: initial;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  cursor: pointer;
  z-index: 0;
  opacity: 0;
}

.modal.active .modal-overlay {
  animation: modal-overlay 0.4s 1 forwards ease;
}

.modal.modal-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.modal-center .modal-body {
  margin-inline: auto;
}

@keyframes modal-overlay {
  to {
    opacity: 0.3;
  }
}
.modal .modal-body {
  transition: 0.4s;
}

.side-modal .modal-body {
  width: 658px;
  left: -100%;
  height: 100%;
  max-width: 100%;
}

.corner-modal {
  display: flex;
  align-items: end;
}

.corner-modal .modal-body {
  width: 379px;
  top: 100%;
}

.corner-modal.active .modal-body {
  top: 0;
}

.lang-ar .side-modal .modal-body {
  left: auto;
  right: -100%;
}

.side-modal.active .modal-body {
  left: 0;
}

.lang-ar .side-modal.active .modal-body {
  left: auto;
  right: 0;
}

[accordion-item] [acc-body] {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s;
}

[accordion-item].active [acc-body] {
  grid-template-rows: 1fr;
}

[accordion-item] [acc-body] > div {
  overflow: hidden;
}

[data-toggle-tab]:not(.active),
[data-toggle-tabs]:not(.active) {
  display: none;
}

[show-all-tabs-default] [data-toggle-tab],
[show-all-tabs-default] [data-toggle-tabs] {
  display: block;
}

input.no-arr::-webkit-inner-spin-button,
input.no-arr::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  text-align: center;
}

.z-1 {
  z-index: 1;
}

.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.to {
  display: none;
}

img.lazy {
  transition: 0.4s opacity ease;
  transition-delay: 0.2s;
}

img.lazy[src] {
  opacity: 1;
}

img.lazy:not([src]) {
  opacity: 0 !important;
}

.full-grid-row {
  grid-column: 1/-1;
}

.iti {
  width: 100%;
  display: flex !important;
}
.your-money-section .right-side .img-cntnt {
  overflow: hidden;
}
.your-money-section .right-side .just-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  max-width: 500px;
  margin: auto;
  position: relative;
}
.market-wrapper .subtitle {
  background: linear-gradient(90deg, #f9b000, #ed6b06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 30px;
  font-weight: 500;
}
@media (min-width: 1100px) and (max-width: 1300px) {
  .land-tt {
    font-size: 74px;
  }
}
@media (min-width: 550px) {
  .land-item .right, .banner-section .right {
    position: relative;
    display: flex;
    overflow: hidden;
  }
  .land-item .right video, .banner-section .right video {
    overflow: hidden;
  }
  .land-item .right:after, .banner-section .right:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 6px solid transparent;
  }
  .windows .land-item .right:after,
  .windows .banner-section .right:after {
    border: 6px solid #112764;
  }
  .your-money-section .right-side video {
    width: calc(100% + 5px);
    outline: 0 !important;
    margin-bottom: -5px;
    z-index: 0;
    position: relative;
  }
  .your-money-section .right-side .just-wrap {
    max-width: 500px;
    position: relative;
  }
  .your-money-section .right-side .just-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 3px solid #fff;
  }
}
@media (max-width: 1024px) {
  .grid-3-t {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2-t {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1-t {
    grid-template-columns: repeat(1, 1fr);
  }
  .do-only {
    display: none !important;
  }
  .to {
    display: block !important;
  }
}
@media (max-width: 767px) {
  :root {
    --section-padding: 32px;
  }
  .container,
.container-p,
.container-small {
    max-width: inherit;
    width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .container-left-p {
    margin-inline-start: auto;
    padding-inline: 24px;
    max-width: 100%;
    padding-inline-end: 10px;
  }
  .grid-1-p,
.grid-2-p,
.grid-3-p {
    display: grid;
  }
  .grid-1-p {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2-p {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-p {
    grid-template-columns: repeat(3, 1fr);
  }
  .mo {
    display: block !important;
  }
  .do {
    display: none !important;
  }
  .flex-p {
    display: flex;
  }
  .wrap-p {
    flex-wrap: wrap;
  }
  .center-p {
    text-align: center;
  }
  .justify-center-p {
    justify-content: center;
  }
  .column-reverse-p {
    flex-direction: column-reverse;
  }
  .row-reverse-p {
    flex-direction: row-reverse;
  }
  .full-p {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .flex-column-p {
    flex-direction: column;
  }
  .d-flex-p {
    display: flex;
  }
  .space-between-p {
    justify-content: space-between;
  }
  .justify-end-p {
    justify-content: end;
  }
  .justify-start-p {
    justify-content: start;
  }
  .f-400-p {
    font-weight: 400;
  }
  .font-12-p {
    font-size: 12px !important;
  }
  .font-14-p {
    font-size: 14px !important;
  }
  .font-16-p {
    font-size: 16px !important;
  }
  .font-18-p {
    font-size: 18px !important;
  }
  .font-20-p {
    font-size: 20px !important;
  }
  .font-22-p {
    font-size: 22px !important;
  }
  .font-32-p {
    font-size: 32px !important;
  }
  .font-48-p {
    font-size: 48px;
  }
  .align-center-p {
    align-items: center;
  }
  .align-start-p {
    align-items: start;
  }
  .w-100-p {
    width: 100% !important;
  }
  .p-0-p {
    padding: 0;
  }
  .p-15-p {
    padding: 15px;
  }
  .p-24-p {
    padding: 24px;
  }
  .px-15-p {
    padding-inline: 15px;
  }
  .px-p {
    padding-inline: 24px;
  }
  .section-padding-t-p {
    padding-top: var(--section-padding);
  }
  .section-padding-b-p {
    padding-bottom: var(--section-padding);
  }
  .section-padding-p {
    padding-block: var(--section-padding);
  }
  .py-0-p {
    padding-block: 0px;
  }
  .py-15-p {
    padding-block: 15px;
  }
  .py-30-p {
    padding-block: 30px;
  }
  .pt-0-p {
    padding-top: 0px;
  }
  .pt-10-p {
    padding-top: 10px;
  }
  .pt-15-p {
    padding-top: 15px;
  }
  .pt-20-p {
    padding-top: 20px;
  }
  .pt-25-p {
    padding-top: 25px;
  }
  .pt-30-p {
    padding-top: 30px;
  }
  .pt-50-p {
    padding-top: 50px;
  }
  .pt-65-p {
    padding-top: 65px;
  }
  .pt-100-p {
    padding-top: 100px;
  }
  .pb-0-p {
    padding-bottom: 0px;
  }
  .pb-15-p {
    padding-bottom: 15px;
  }
  .pb-25-p {
    padding-bottom: 25px;
  }
  .pb-30-p {
    padding-bottom: 30px;
  }
  .pb-40-p {
    padding-bottom: 40px !important;
  }
  .pb-50-p {
    padding-bottom: 50px !important;
  }
  .pb-65-p {
    padding-bottom: 65px;
  }
  .mt-20-p {
    margin-top: 20px;
  }
  .mb-0-p {
    margin-bottom: 0;
  }
  .mb-5-p {
    margin-bottom: 5px;
  }
  .mb-10-p {
    margin-bottom: 10px;
  }
  .mb-15-p {
    margin-bottom: 15px;
  }
  .mb-20-p {
    margin-bottom: 20px;
  }
  .mb-30-p {
    margin-bottom: 30px;
  }
  .mb-40-p {
    margin-bottom: 40px;
  }
  .mb-50-p {
    margin-bottom: 50px;
  }
  .gap-0-p {
    gap: 0;
  }
  .gap-3-p {
    gap: 3px;
  }
  .gap-7-p {
    gap: 7px;
  }
  .gap-10-p {
    gap: 10px;
  }
  .gap-15-p {
    gap: 15px;
  }
  .gap-20-p {
    gap: 20px;
  }
  .gap-25-p {
    gap: 25px;
  }
  .gap-30-p {
    gap: 30px;
  }
  .gap-40-p {
    gap: 40px;
  }
  .gap-50-p {
    gap: 50px;
  }
  .gap-60-p {
    gap: 60px;
  }
  .gap-65-p {
    gap: 65px;
  }
  .br-0-p br {
    display: none;
  }
  .border-0-p {
    border: 0 !important;
  }
  .scroll-80-p::-webkit-scrollbar-thumb,
.scroll-80-p::-webkit-scrollbar-track,
.scroll-80-p::-webkit-scrollbar,
.scroll-90-p::-webkit-scrollbar-thumb,
.scroll-90-p::-webkit-scrollbar-track,
.scroll-90-p::-webkit-scrollbar,
.scroll-x-p::-webkit-scrollbar-thumb,
.scroll-x-p::-webkit-scrollbar-track,
.scroll-x-p::-webkit-scrollbar,
.scroller-0-p::-webkit-scrollbar-thumb,
.scroller-0-p::-webkit-scrollbar-track,
.scroller-0-p::-webkit-scrollbar {
    display: none;
  }
  .scroll-80-p,
.scroll-90-p, .scroll-x-p {
    display: flex;
    overflow-x: auto;
    gap: 25px;
  }
  .scroll-80-p > * {
    max-width: 80%;
    width: 80%;
    min-width: 80%;
  }
  .scroll-90-p > * {
    max-width: 90%;
    width: 90%;
    min-width: 90%;
  }
  .overflow-hidden-p {
    overflow: hidden;
  }
  .has-childs > a:after {
    content: "";
    background: url(../images/chevron-down-black.svg) no-repeat;
    width: 24px;
    height: 24px;
    transition: 0.4s;
    background-size: contain;
  }
}
.hidden {
  display: none;
}

.bg-grad {
  background: linear-gradient(90deg, #1c326e 0%, #264089 100%);
}

.bg-grad-2 {
  background: linear-gradient(90deg, #f9b000 0%, #ed6b06 100%);
}

.header {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgb(255, 255, 255);
  z-index: 2;
  transition: 0.4s;
}

.btn {
  background: linear-gradient(90deg, #1c326e 0%, #264089 100%);
  transition: 0.4s;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color);
  border-radius: 60px;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 44px;
}

.btn:hover {
  opacity: 0.8;
}

.btn-header {
  padding: 14px 65px;
}

.main-menu-box a {
  font-size: 16px;
  color: var(--main-color);
  text-transform: uppercase;
}
.lang-ar .main-menu-box a {
  font-weight: 300;
}
.section-title-56,
.banner-small-tt {
  font-size: 56px;
  font-weight: 700;
  color: var(--main-color);
  text-transform: uppercase;
}

.section-title-48 {
  font-size: 48px;
  font-weight: 700;
  color: var(--main-color);
}

.your-money-section {
  padding-bottom: 94px;
}

.btn-2 {
  padding: 16px 44px;
  background: linear-gradient(90deg, #f9b000 0%, #ed6b06 100%);
  border-color: transparent;
  font-weight: 500;
}

.btn-outline,
.btn-outline-white {
  background: transparent;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 400;
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
}

.btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--main-color);
}

.btn-16 {
  padding-inline: 16px;
}

.btn-24 {
  padding-inline: 24px;
}

.btn-40 {
  padding-inline: 40px;
}

.toggle-btn.active {
  background: linear-gradient(90deg, #1c326e 0%, #264089 100%);
  color: #fff;
}

.your-money-section .wrapper .box:nth-of-type(even) {
  flex-direction: row-reverse;
}

.how-works-section .box {
  padding-block: 270px 350px;
}

.how-works-section .tt {
  font-size: 98px;
}

.f-400 {
  font-weight: 400 !important;
}

.grad-2 {
  background: linear-gradient(90deg, #f9b000, #ed6b06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.download-app-section .tt {
  font-size: 64px;
}

.download-app-section .arrow-bx {
  top: -30px;
  right: -50px;
}
[lang="ar"] .download-app-section .arrow-bx {
  right: 50px;
  transform: scaleX(-1);
  justify-content: start;
}
[lang="ar"] .download-app-section .right {
  /* transform: scaleX(-1); */
}
[lang="ar"] .dnd-upload-counter {
  right: auto;
  left: 12px;
  direction: ltr;
  font-family: 'Inter';
}
.lang-ar .iti__dial-code {
  direction: ltr;
}
/* .iti__dial-code, .codedropz-upload-wrapper, .current-year,
.pagination-list a {
  font-family: 'Inter'!important;
}
.lang-ar input[type=tel] {
  font-family: 'Inter'!important;
}
.lang-ar input[type=tel]::placeholder {
  font-family: 'GE SS Two';
} */
.lang-ar .codedropz-upload-wrapper {
  direction: ltr;
}
.download-app-section .hand {
  animation: hand 4s infinite alternate ease-in-out;
  overflow: visible;
}

@keyframes hand {
  to {
    transform: translateX(30px);
  }
}
.footer .dd {
  line-height: 28px;
}

.foot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-list a {
  font-size: 18px;
  color: #000;
  transition: 0.4s;
}
.lang-ar .foot-list a {
  font-weight: 300;
}

.foot-list a:hover {
  color: var(--main-color);
}

.foot-col.col-2 {
  gap: 70px;
}

.landing-section .custom-container {
  border-radius: 48px;
}

.land-tt {
  font-size: 84px;
  line-height: 1;
}
.lang-ar .land-tt {
  font-size: 56px;
  line-height: 1.3;
}
.lang-ar .land-dd {
  font-weight: 300;
  width: 90%;
}
.lang-en .current-lang {
  /* direction: rtl; */
}

.landing-section .btn {
  font-size: 20px;
  font-weight: 600;
  flex: 1;
  max-width: 273px;
  height: 68px;
}

.landing-section .left {
  padding-block: 100px 100px;
}

[how-work-slider-box] {
  opacity: 0;
}

body.scroll header.header {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1098039216);
}

[how-work-full-img] .bg-img {
  /* display: none; */
}

[how-work-slider-box].active {
  animation: fadeIn 0.4s 0.1s 1 forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
[how-work-full-img] .bg-img,
.how-works-section,
.how-works-wrapper {
  height: 982px;
  margin: auto;
}

.how-work-slider-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

[how-work-full-img].active .bg-img {
  width: 377px;
  height: 580px;
  border-radius: 30px;
}

[how-work-full-img].active [box] {
  opacity: 0;
}

.how-item {
  padding: 48px 15px 50px 15px;
  margin-inline: auto;
  height: 431px;
  transition: 0.4s;
  transform: translateY(100px);
  width: 278px;
  padding-top: 20px;
}

.how-slider .how-item .tth {
  font-size: 18px;
}

.swiper-slide-active .how-item .tth {
  font-size: 24px;
}

.swiper-slide-active .how-item {
  transform: translateY(0);
  width: 100%;
  padding: 48px 15px 50px 15px;
}

.how-slider,
.swiper-slide-active .how-item {
  height: 580px;
}

.how-work-slider-section .swiper-custom-pagination > span {
  width: 33px;
  height: 2px;
  background-color: #d9d9d9;
  opacity: 1;
  position: relative;
  border-radius: 0;
}

.how-work-slider-section .swiper-custom-pagination .progress {
  background-color: #d9d9d9;
  display: block;
  height: 100%;
}

.how-work-slider-section .swiper-custom-pagination span.swiper-pagination-bullet-active {
  width: 101px;
}

.how-work-slider-section .swiper-custom-pagination span.swiper-pagination-bullet-active .progress {
  background-color: var(--main-color);
}

.cardList .tth {
  transform: translateY(-80px);
  opacity: 0;
}

.cardList .playing .tth {
  transform: translateY(0px);
  opacity: 1;
}

.how-work-slider-section .btns-item, .cardList .btns-item {
  opacity: 0;
  transition: 0.4s;
}

.how-work-slider-section .swiper-slide-active .btns-item,
.cardList .playing .current--card .btns-item {
  opacity: 1;
}

.small-color-banner .box {
  height: 227px;
}

.content-section h2 {
  color: #E87D00;
  font-weight: 400;
  font-size: 24px;
}

.content-section ul {
  line-height: 0.4;
}

.content-section, .content-section ul li, .content-section ul ol {
  line-height: 2;
}
.content-section td,
.content-section th {
  border: 1px solid #000;
  padding: 9px;
}
.content-img-auto {
  max-width: 100%;
}
.error-section .tt {
  font-size: 200px;
}

.error-section .dd {
  font-size: 56px;
}
.faq-item .acc-head * {
  pointer-events: none;
}

.error-section .btn {
  min-width: 324px;
  height: 68px;
  font-size: 18px;
  font-weight: bold;
}

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

video::slotted::-webkit-media-controls-container {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  -webkit-appearance: none !important;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.wpcf7.sent .btn-submit,
.disabled-form-submit form {
  pointer-events: none;
}

.wpcf7-form.incomplete .btn-submit,
.wpcf7-form.submitting .btn-submit {
  pointer-events: none;
  opacity: 0.5;
}

.lang-ar .wpcf7 input[type="url"], 
.lang-ar .wpcf7 input[type="email"],
.lang-ar  .wpcf7 input[type="tel"] {
  direction: ltr;
  text-align: right;
}
.swiper-custom-pagination.circle-theme span {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
  transition: 0.4s;
}

.swiper-custom-pagination.circle-theme span.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #f9b000 0%, #ed6b06 100%);
}

.landing-section .swiper-custom-pagination {
  position: absolute;
  bottom: 20px;
  z-index: 1;
}

.search-submit {
  padding: 4px 23px;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  gap: 7px;
}

.search-form-section .search-form {
  background-color: #f8f8f8;
  border-radius: 60px;
  height: 54px;
  gap: 8px;
  padding-inline: 32px;
  border: 1px solid #f2f2f2;
}

.search-field-custom {
  background: transparent;
  border: 0;
  color: #000;
}

.search-field-custom::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

.gray-3 {
  color: #333333;
}

.search-res_item {
  padding: 40px 48px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 32px;
}

.pagination-list a.active {
  color: #000;
}

.pagination-list a {
  color: #acacac;
  width: 32px;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding-bottom: 5px;
  font-weight: 500;
}

.spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #ccc;
  border-top-color: #333;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.full-loader {
  position: fixed;
  z-index: 9999999999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.368627451);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}

.pagination-list a img {
  position: relative;
  top: 0;
}

.menu-upper-part .menu-item {
  list-style: none;
}

.menu-upper-part .menu-item a {
  font-size: 18px;
  font-weight: 400;
}

.menu-upper-part ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.download-app-page-wrapper .download-app-section {
  background: transparent;
}

.download-app-page-wrapper .download-app-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 64px);
  height: 100%;
  background-color: var(--main-color);
  right: 0;
  margin: auto;
  min-width: 95%;
  border-radius: 32px;
}

.mo-btn {
  display: none;
}

.video-modal .modal-body {
  width: 1000px;
  height: 500px;
  border-radius: 30px;
  padding: 20px;
  transition: 0.4s;
  top: 50px;
  opacity: 0;
}

.video-modal.active .modal-body {
  top: 0px;
  opacity: 1;
}

[open-modal=video-modal] {
  cursor: pointer;
}

.video-modal .modal-body {
  padding: 0;
  background-color: transparent;
}

.video-modal .close-modal-btn {
  position: absolute;
  top: -40px;
  background: #fff;
  border-radius: 50%;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}

.video-modal .modal-body iframe,
.video-modal .modal-body video {
  width: 100%;
  height: auto;
  border: 0;
  aspect-ratio: 1/0.56;
  max-height: 80vh;
}

.banner-section .bg-main {
  background-color: var(--dark-blue);
}

.banner-section .ccc {
  border-radius: 48px;
}

.banner-tt {
  font-size: 54px;
  line-height: 1.1;
}

.banner-section .box {
  padding-inline: 40px;
}

.our-values-section .upper,
.our-values-section .bottom,
.our-market-place-section .upper,
.our-market-place-section .bottom {
  border-radius: 0px 0px 32px 32px;
  height: 70px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
}

.our-values-section .bottom,
.our-market-place-section .bottom {
  top: auto;
  bottom: 0;
  border-radius: 32px 32px 0 0;
}

.our-values-section .tt {
  font-size: 100px;
}

.our-values-section .box {
  padding-block: 200px;
}

.rec_item figure {
  max-width: 300px;
}

.rec_item .rec-img {
  height: 283px;
  max-width: 100%;
}

.swiper-custom-pagination.blue-theme span {
  background-color: #d9d9d9;
}

.swiper-custom-pagination.circle-theme.blue-theme span.swiper-pagination-bullet-active {
  background: var(--main-color) !important;
}

.faq-tabs button {
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding: 9px 32px 9px 32px;
  border-radius: 30px;
  color: #000;
  transition: 0.4s;
  background-color: #fff;
}

.faq-tabs button.active {
  background-color: #eaeaea;
}

.faq-item {
  background-color: #fff;
}

.faq-item .acc-head {
  cursor: pointer;
  border-radius: 200px;
  padding: 16px 16px 16px 24px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.faq-item .acc-head:hover {
  color: #fff;
  background-color: var(--main-color);
}

.faq-item .acc-head:hover .arrrr {
  filter: invert(1);
}

.faq-item.active .acc-head {
  background-color: #e7e7e7;
  border-radius: 50px 50px 0 0;
  color: #000;
}

.faq-item.active .acc-head .arrrr {
  transform: rotate(180deg);
  filter: none;
}

.acc-body {
  background-color: #f6f6f6;
  border-radius: 0 0 60px 60px;
}

.acc-body .cntnt {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
  padding: 16px 32px;
  border-radius: 0 0 60px 60px;
}

.faq-more {
  font-size: 16px;
  color: var(--main-color);
  padding: 9px;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.service_item {
  background-color: #f6f6f6;
  border-radius: 32px;
  padding: 64px 24px 56px 24px;
}

.service_item .tt2 a,
.service_item .tt2 a:focus{
  color: var(--main-color);
  transition: all 0.3s ease;
}
.service_item .tt2 a:hover{
  color: var(--body-color);
}

.btn-big {
  font-size: 20px;
  padding: 23px 45px;
}

.box-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.video_banner_std .ttt1 {
  font-size: 56px;
}

.video_banner_std .btn {
  font-weight: 600;
  font-size: 20px;
  border: 2px solid #fff;
  padding: 23px 45px;
  min-width: 273px;
}

.video_banner_std .box-inside {
  padding-block: 220px;
}

.media_center_item .tt {
  height: 84px;
}

.post-content-section .tt1 {
  text-transform: capitalize;
}

.content-text-normal h2 {
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.content-text-normal img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-block: 50px;
}

.offer_item_std {
  padding: 42px 32px 32px 64px;
}
.lang-ar .offer_item_std {
  padding: 42px 64px 32px 32px ;
}
.offer_item_std .tt2 {
  padding-right: 10px;
}

.offer_item_std .btn {
  font-weight: 400;
  font-size: 18px;
  padding: 14px 31px;
}

.from-control, .form-control {
  width: 100% !important;
  height: 51px;
  border: 1.5px solid rgba(28, 50, 110, 0.1019607843);
  border-radius: 10px;
  padding-inline: 16px !important;
  font-size: 16px;
  color: #000;
}

.from-control::placeholder,
.form-control::placeholder {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
}

textarea.from-control,
textarea.form-control {
  height: 217px !important;
  padding-top: 15px;
}

.form_inside_std {
  padding: 24px 16px;
}

.form_inside_std form {
  background-color: #fff;
  padding: 16px 16px 40px 16px;
  border-radius: 16px;
}

.jobs-section .box {
  gap: 64px 100px;
}

.job-details-section.section-padding{
  padding-top: 0;
}

.job-details-section .box {
  gap: 120px;
}

.job-details-section .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.apply-job-section {
  background-color: #f8f8f8;
  padding-block: 64px;
}

.uploader-box {
  border: 0.5px solid rgba(0, 0, 0, 0.3019607843);
  padding: 10px 16px 10px 16px;
  height: 51px;
  border-radius: 30px;
}

.apply-job-section .box {
  width: 596px;
  max-width: 100%;
}

.job-details-section ul,
.custom-ul {
  padding: 0;
  padding-inline-start: 25px;
}

.job-form-control {
  width: 100%;
  border: 0.5px solid rgba(0, 0, 0, 0.4);
  padding: 10px 16px 10px 16px;
  height: 54px;
  color: #000;
  font-size: 18px;
  background-color: #fff;
  border-radius: 10px;
}

.job-form-control::placeholder {
  color: #c1bebe;
}

.agent-btn {
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  font-size: 18px;
  color: #000;
  background: transparent;
  padding: 10px 32px;
}

.agent-btn.active {
  background: #eaeaea;
}

.blue-select {
  color: #fff;
  border-radius: 30px;
  appearance: none;
  background: url(../image/white-arr.svg) no-repeat right 20px center;
  background-color: var(--main-color);
  background-position: calc(100% - 20px) 45%;
  padding-inline: 32px 47px;
  height: 56px;
  font-weight: 500;
  width: 175px;
}
.lang-ar .blue-select { 
  background-position: calc(5px) 45%;
  padding-inline: 12px 27px;
}

.our-market-place-section {
  padding-block: 200px;
  background-color: var(--main-color);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.our-market-place-section .tt {
  font-size: 90px;
}

.our-market-place-section .dd {
  font-size: 46px;
}

.our-market-place-section .btn {
  font-size: 18px;
  padding: 23px 45px;
}

.book-tickt-left-right2 .btn {
  font-size: 20px;
  height: 72px;
  width: 273px;
}

.gray-new {
  color: rgba(0, 0, 0, 0.6);
}

.contact-partner-section .uploader-box {
  background: #f8f8f8;
  border: 0;
  color: var(--main-color);
}

.learn-more-section .tt {
  font-size: 46px;
}

.play-fig:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/play.svg) no-repeat center center;
  background-size: 110px 110px;
}

.menu-upper-part .menu-item a {
  color: var(--main-color);
}

.arr-pagination {
  position: relative;
  top: -2px;
}

.intl-tel-input .country-list {
  max-width: 330px;
}

.intl-tel-input.allow-dropdown {
  display: flex;
  gap: 8px;
}

.intl-tel-input.allow-dropdown .flag-container {
  position: relative;
  border: 1.5px solid rgba(28, 50, 110, 0.1019607843);
  border-radius: 10px;
  width: 95px;
}

.intl-tel-input .selected-flag .iti-flag {
  margin: 0 !important;
}

.intl-tel-input.allow-dropdown .flag-container .selected-flag {
  width: 100%;
  padding-inline-start: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background-color: transparent !important;
}

.iti__arrow {
  position: relative !important;
  top: 0 !important;
  border: 0 !important;
  width: 24px !important;
  height: 24px !important;
  background: url(../image/arr-down-black.svg) no-repeat center center !important;
  background-size: 20px !important;
  margin: 0 !important;
}

.iti__selected-country-primary .iti__flag {
  box-shadow: 0 !important;
  flex-shrink: 0 !important;
}

.intl-tel-input .selected-flag .iti-flag {
  position: relative !important;
}

.btn-submit {
  cursor: pointer;
}

.contact-2-infos-list ul {
  padding: 0;
  padding-inline-start: 25px;
  color: rgba(0, 0, 0, 0.6);
}

[no-data] {
  display: none;
}

[no-data].active {
  display: block;
}

.download-app-mob-menu {
  font-weight: bold;
  font-size: 20px;
  border: 2px solid var(--main-color);
  padding: 10px 44px;
  color: var(--main-color);
}

.download-app-mob-menu-busness {
  font-weight: 400;
  text-transform: uppercase;
  height: 54px;
}

.mobile-field br {
  display: none;
}

.mobile-field .mobile-err, .cv-error,
.form-err {
  color: #dc3232;
  font-size: 14px;
  display: none;
}

.mobile-field .mobile-err.active,
.file-cv-box.active .cv-error,
.form-err.active {
  display: block;
}

.wpcf7-form.incomplete .btn-submit,
.wpcf7-form.submitting .btn-submit {
  pointer-events: none;
  opacity: 0.5;
}

.cv-hint {
  color: var(--main-color);
  font-size: 15px;
}

.uploader-box {
  cursor: pointer;
}

.codedropz-upload-handler {
  margin-top: -50px;
  height: 51px;
  border: 0;
}

.codedropz-upload-inner h3 {
  display: none;
}

.codedropz-upload-inner > h3 + span,
.apply-job-section .codedropz-upload-handler .dnd-upload-counter {
  display: none;
}

.codedropz-upload-container {
  padding: 0;
}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
  width: 100%;
  display: block;
  height: 51px;
  border-radius: 60px;
  opacity: 0;
}

.myPanels {
  width: 210px;
  height: 331px;
  position: relative;
  perspective: 1000px;
}

#carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
}

#carousel .pane p {
  padding-top: 15px;
  font-size: 13px;
  text-align: center;
}

#carousel .pane {
  margin: 0;
  display: block;
  position: absolute;
  width: 186px;
  height: 116px;
  left: 10px;
  top: 10px;
}

#carousel .pane:last-of-type {
  opacity: 0;
}

#carousel {
  transition: transform 1s;
}

#carousel .pane img {
  width: 100%;
}

#dots {
  text-align: center;
  margin-top: 60px;
}

.fav-section .head {
  padding-bottom: 150px;
}

.dot {
  height: 15px;
  width: 15px;
  max-width: 15px;
  margin: 0 5px;
  background: transparent;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  padding: 0;
}

.dot.active {
  background: linear-gradient(90deg, #F9B000 0%, #ED6B06 100%);
  border: 1px solid transparent;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

.white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.fav-section {
  background: #F7FEFF;
}

.object-contain {
  object-fit: contain;
}

.iti__selected-country {
  border: 1.5px solid rgba(28, 50, 110, 0.1019607843) !important;
  border-radius: 10px !important;
  width: 75px !important;
}

.iti__selected-country,
.iti--allow-dropdown .iti__country-container .iti__selected-country-primary {
  background-color: transparent !important;
}

.iti__country-container {
  position: relative !important;
}

.iti--inline-dropdown {
  display: flex !important;
  gap: 7px;
}

.iti--allow-dropdown .iti__country-container .iti__selected-country-primary {
  width: 100%;
  padding-inline-start: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.iti {
  gap: 7px;
}

.color-blue-custom {
  color: #002A53;
}

.media_center_item .tt {
  color: #002A53;
}

.banner-section .box .left:only-child {
  padding-block: 80px;
}

.our-market-place-section {
  display: flex;
  min-height: 110vh;
}

.our-market-place-section > .container {
  margin: auto;
}

.market-place-gradient {
  background: linear-gradient(to bottom, rgba(28, 50, 110, 0.8), transparent);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ul {
  padding-inline-start: 25px;
}

[toggle-tab-transfeer]:not(.active):hover {
  background-color: rgba(37, 62, 134, 0.1098039216);
}

[toggle-tab-transfeer] {
  position: relative;
  overflow: hidden;
}

[toggle-tab-transfeer]:after {
  content: "";
  pointer-events: none;
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3607843137);
  position: absolute;
  top: 0;
  left: 0;
  transition: none;
}
[lang="ar"] [toggle-tab-transfeer]:after { 
  left: auto;
  right: 0;
}
[toggle-tab-transfeer].active:after {
  animation: tab 5s 1 forwards linear;
}

.no-autoplay [toggle-tab-transfeer]:after {
  display: none;
}
[main-slide].tab-content .subtitle {
  background: linear-gradient(90deg, #f9b000, #ed6b06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 30px;
  font-weight: 500;
}
[transfeer-slider] [slide-cntnt],
[transfeer-slider].not-working [main-slide] {
  transition: 1s;
}

[main-slide].tab-content h2,
[main-slide].tab-content .desc,
[main-slide].tab-content .d-flex a,
[main-slide].tab-content .subtitle {
  transition: .8s;
  position: relative;
  top: 40px;
}
[main-slide].tab-content.active h2,
[main-slide].tab-content.active .desc,
[main-slide].tab-content.active .d-flex a,
[main-slide].tab-content.active .subtitle  {
  top: 0;
}

[transfeer-slider].not-working [slide-cntnt],
[transfeer-slider].not-working [main-slide] {
  opacity: 0;
  visibility: hidden;
}

@keyframes tab {
  to {
    width: 100%;
  }
}
:root {
  --card-width: 250px;
  --card-height: 340px;
  --card-transition-duration: 800ms;
  --card-transition-easing: ease;
}

.cardList .head {
  position: absolute;
  /* margin-top: -206px; */
  /* transform: translateY(206px); */
  top: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s ease-in-out;
}

.cardList:not(.not-init) .head {
  /* transform: translateY(0); */
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 1;
}

.cardList .cards__wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  perspective: 1000px;
}

.card {
  --card-translateY-offset: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(var(--card-translateX-offset)) translateY(var(--card-translateY-offset)) rotateY(0) scale(var(--card-scale-offset));
  display: inline-block;
  width: var(--card-width);
  height: var(--card-height);
  transition: transform var(--card-transition-duration) var(--card-transition-easing);
  user-select: none;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity var(--card-transition-duration) var(--card-transition-easing);
  opacity: calc(1 - var(--opacity));
  pointer-events: none;
}

.card__image {
  position: relative;
  width: 100%;
  height: 100%;
}

.card__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card.current--card {
  --current-card-rotation-offset: 0;
  --card-translateX-offset: 0;
  --card-rotation-offset: 0;
  --card-scale-offset: 1;
  --opacity: 1;
}

.card.previous--card {
  --card-translateX-offset: calc(-1 * var(--card-width) * 1.1);
  --card-rotation-offset: 25deg;
}

.card.next--card {
  --card-translateX-offset: calc(var(--card-width) * 1.1);
  --card-rotation-offset: -25deg;
}

.card.previous--card, .card.next--card {
  --card-scale-offset: .88;
  --opacity: 1;
}

/* customize */
.cardList .card {
  overflow: hidden;
  transition: 0.8s;
}

.cardList .card:not(.current--card) {
  border-radius: 32px;
}

.cardList:not(.not-init) .card:not(.current--card),
.cardList.not-init .card:not(.current--card) {
  transition: transform var(--card-transition-duration) var(--card-transition-easing), width 0.8s, height 0.8s, opacity var(--card-transition-duration) var(--card-transition-easing), left var(--card-transition-duration) var(--card-transition-easing);
  transition-delay: 0s !important;
}

.cardList.not-init .card.current--card {
  width: 100%;
  height: 100%;
  transition: transform var(--card-transition-duration) var(--card-transition-easing), width 0.8s, height 0.8s;
  z-index: 40;
}

.cardList.not-init .card:not(.current--card) {
  opacity: 0;
}

.cardList.not-init .next--card {
  left: 60%;
}

.cardList.not-init .previous--card {
  left: 40%;
}

.cardList:not(.not-init) .cards__wrapper:not(.playing) .card:not(.current--card) {
  opacity: 1;
}

.cardList.not-init .current--card {
  width: var(--card-width);
  height: var(--card-height);
}

.cardList:not(.not-init) .next--card,
.cardList:not(.not-init) .previous--card {
  left: 50%;
}

.cardList .playing .card {
  transition: transform var(--card-transition-duration) var(--card-transition-easing), width 0.8s, height 0.8s;
  border-radius: 32px;
}

.dots-how-slider-box .dot-how-slider {
  width: 33px;
  height: 2px;
  background-color: #d9d9d9;
  opacity: 1;
  position: relative;
  border-radius: 0;
  cursor: pointer;
  height: 2px;
  border-radius: 30px;
  overflow: hidden;
}

.dots-how-slider-box .dot-how-slider .progress {
  background-color: #d9d9d9;
  display: block;
  height: 100%;
  width: 0;
}

.dots-how-slider-box .dot-how-slider.active {
  width: 101px;
}

.dots-how-slider-box .active .progress {
  background-color: var(--main-color);
  width: 100%;
  transition: width 5s linear;
}


.how-slider-animating-in .cardList .card:not(.current--card) {
  transition-delay: 0.2s !important;
}

.how-slider-animating-in .cardList .card,
.cardList .playing .card {
  top: 60%;
}

.cardList .bxxz {
  transition: 0.4s;
}

.cardList:not(.not-init) .bxxz {
  transform: translateY(-40%);
  opacity: 0;
  pointer-events: none;
}

.cardList .head .tt1 {
  font-size: 40px;
}

.cardList .head .dd1 {
  font-size: 15px;
}

.cardList .fold-1-box .tt {
  font-size: 98px;
}

.cardList .custom-box {
  height: 100%;
}

.dots-how-slider-box {
  transform: translateY(-60px);
}

.cardList.not-init .dots-how-slider-box {
  opacity: 0;
}

.cardList .head .btn {
  padding-block: 13px;
  font-size: 14px;
  margin-top: 10px;
}

.how-item-new {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-block: 40px;
}

.cardList .card:not(.current--card) {
  cursor: pointer;
}

.cardList .card:not(.current--card) .btns-item {
  pointer-events: none;
}

.cardList .card:not(.current--card) {
  z-index: -1;
}

.cardList .card.current--card {
  z-index: 1;
}

.cardList .other--card {
  opacity: 0;
  pointer-events: none;
  z-index: -2;
  transition: 0s;
  scale: 0;
}

.cardList, .cardList .cards__wrapper {
  max-height: 800px;
}

.digital-payroll-form-section ul li {
  color: #000;
}

.market-wrapper {
  background: #F7FEFF;
}

.container-marketplace {
  width: 100%;
  overflow: hidden;
}

.container-marketplace .wrapper {
  height: 500px;
  transform-style: preserve-3d;
  perspective: 1200px;
  padding-top: 5px;
}

.container-marketplace .wrapper .market-card {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 320px;
  height: 450px;
  background: transparent;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  color: #fff;
}

.container-marketplace .wrapper .market-card p {
  padding-top: 15px;
  font-size: 18px;
  text-align: center;
}

.market-card .main-img {
  width: 100%;
  height: 100%;
}
.landing-slider .bg-dark-blue,
.banner-section .bg-main,
.landing-slider .bg-dark-blue.mac-os,
.landing-slider .bg-main.mac-os{
  background-color: var(--dark-blue);
}
.landing-slider .bg-dark-blue.unknown-os,
.banner-section .bg-main.unknown-os,
.banner-section .bg-main.windows-os,
.landing-slider .bg-dark-blue.windows-os {
  background-color: #112764;
}
.lang-ar .btn-header {
  min-width: 245px;
  font-weight: 500;
}
.header .current-lang {
  font-size: 14px;
  font-weight: 300;
}
.lang-ddl {
  position: absolute;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  left: 0;
  width: 87px;
  display: none;
}
.lang-ddl a {
  padding: 9px;
  font-size: 14px;
  font-weight: 300;
  color: #000 !important;
  direction: ltr;
  text-align: left;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  justify-content: start;
}
.lang-ddl-root:hover .lang-ddl {
  display: block;
}
@media (max-width: 815px) {
  .container-marketplace .wrapper {
    height: 350px;
  }
  .container-marketplace .wrapper .market-card {
    width: 230px;
    height: 340px;
  }
}
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
  .demoWrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 190px;
  }
  .demoWrapper .creative-pro {
    background: transparent;
    width: 120px;
    height: 180px;
    margin: 0px 20px 50px 0;
  }
  .demoWrapper .elm p {
    padding-top: 8px;
    font-size: 11px;
  }
  .landing-slider .swiper-slide {
    height: auto !important;
  }
}
@media (min-height: 900px) and (min-width: 1900px) {
  .cardList, .cardList .cards__wrapper {
    max-height: 900px;
  }
  .how-slider-animating-in .cardList .card, .cardList .playing .card {
    top: 50%;
  }
  .dots-how-slider-box {
    transform: translateY(-150px);
  }
}
@media (min-width: 1100px) {
  .banner-section .box .left {
    min-width: 640px;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .banner-section .box .left {
    padding-block: 40px;
  }
}
@media (max-width: 1130px) {
  .land-tt {
    font-size: 60px;
  }
  .landing-section .btn {
    font-size: 16px;
    padding-inline: 40px;
    max-width: inherit;
  }
}
@media (min-width: 1025px) and (max-width: 1190px) {
  .main-menu-box {
    gap: 20px;
  }
  .main-menu-box a {
    font-size: 14px;
  }
  .btn-header {
    padding: 14px 45px;
  }
}
@media (max-width: 1024px) {
  :root {
    --body-font-size: 14px;
  }
  .btn {
    padding: 10px 44px;
  }
  .menu-close-btn {
    position: absolute;
    top: 7px;
    right: 10px;
  }
  .main-menu-mobile {
    width: 400px;
    max-width: 75%;
  }
  .modal.active,
.main-menu-mobile.active {
    pointer-events: initial;
  }
  .main-menu-mobile .menu-wrapper {
    width: 100%;
  }
  .main-menu-mobile .menu-wrapper {
    left: -100%;
    opacity: 0;
  }
  .lang-ar .main-menu-mobile {
    left: auto;
    right: 0;
  }
  .main-menu-mobile.active .menu-wrapper {
    left: 0;
    opacity: 1;
  }
  .lang-ar .main-menu-mobile .menu-wrapper {
    left: auto!important;
    right: -100%;
  }
  .lang-ar .main-menu-mobile.active .menu-wrapper {
    right: 0;
  }
  .main-menu-mobile .menu-upper-part {
    overflow-y: auto;
  }
  .your-money-section .wrapper .box {
    flex-direction: column-reverse !important;
  }
  .your-money-section .wrapper .box .right-side {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }
  .your-money-section .wrapper .box .right-side .tabs-btns {
    flex-wrap: wrap;
    width: 100%;
  }
  .btn-24 {
    padding-inline: 16px;
  }
  .btn {
    font-size: 14px;
  }
  .download-app-section .tt {
    font-size: 24px;
  }
  .download-app-section .box {
    flex-direction: column;
  }
  .desc {
    font-size: 14px;
  }
  .mob-store-link img {
    width: 100%;
    height: 50px;
  }
  .download-app-section .hand {
    width: 100%;
  }
  .footer-logo img {
    width: 265px;
  }
  .foot-col .dd {
    line-height: 18px;
  }
  .footer .box,
.foot-col.col-2 {
    gap: 30px;
    padding-bottom: 0;
  }
  .footer .box2 {
    justify-content: start;
  }
  .footer .box2 .dddd {
    text-align: inherit;
  }
  .foot-list a {
    font-size: 14px;
  }
  .download-app-page-wrapper .download-app-section:before {
    content: none;
  }
  .download-app-page-wrapper .download-app-section {
    background: var(--main-color);
  }
  .jobs-section .box {
    gap: 30px;
  }
  .job_item .img {
    height: 242px;
  }
  .job_item .fig {
    margin-bottom: 15px;
  }
  .job_item .gg {
    padding-inline: 15px;
  }
  .job_item {
    gap: 15px;
    padding-bottom: 15px;
  }
  .job_item .tt {
    font-size: 18px;
  }
  .job_item .dd {
    -webkit-line-clamp: 3;
  }
  .job-details-section .box:before {
    position: relative;
    order: 2;
  }
  .small-color-banner .box {
    height: auto;
    min-height: 122px;
  }
  .job-details-section .title-p {
    font-size: 32px;
  }
  .job-details-section ul,
.custom-ul,
.contact-2-infos-list ul {
    padding: 0;
    padding-inline-start: 18px;
    font-size: 14px;
  }
  .job-details-section .box:before {
    content: none;
  }
  .job-details-section .barier {
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 1px;
  }
  .job-details-section .box {
    gap: 40px;
  }
  .apply-job-section .tt {
    font-size: 32px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 85px;
  }
  .header-logo img {
    width: 131px;
  }
  .header {
    padding-block: 28px 30px;
    border-radius: 0 0 16px 16px;
  }
  .land-tt {
    font-size: 40px;
    line-height: 1.3;
  }
  .land-item .box {
    flex-direction: column-reverse;
    text-align: center;
  }
  .land-item .land-vid-small {
    height: 363px;
  }
  .landing-section .left {
    padding-block: 20px 40px;
  }
  .landing-section .swiper-custom-pagination {
    bottom: 10px;
    gap: 16px;
  }
  .swiper-custom-pagination.circle-theme span {
    width: 8px;
    height: 8px;
    margin: 0 !important;
  }
  .landing-section .btn {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    max-width: 273px;
    height: 64px;
    width: 100%;
    white-space: nowrap;
    padding-inline: 10px;
    min-width: 130px;
  }
  .landing-section .dn-btn {
    min-width: inherit;
  }
  .landing-section .custom-container {
    border-radius: 0 0 32px 32px;
    max-width: 100%;
    width: 100%;
  }
  .landing-section .custom-container.bg-dark-blue {
    background-color: #102664;
  }
  .section-title-56,
.banner-small-tt {
    font-size: 24px;
  }
  .pb-100-p {
    padding-bottom: 100px;
  }
  .your-money-section {
    text-align: center;
  }
  .your-money-section .section-title-48 {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .btn-2,
.how-works-wrapper .my-btn {
    font-size: 16px;
    padding-block: 14px;
    font-weight: bold;
  }
  .your-money-section .wrapper {
    gap: 100px;
  }
  .how-works-section .tt {
    font-size: 48px;
  }
  .how-works-section .box {
    padding-block: 40px 50px;
  }
  .how-works-section .desc {
    color: #fff;
  }
  [how-work-full-img] .bg-img {
    border-radius: 32px;
  }
  [how-work-full-img] .bg-img,
.how-works-section,
.how-works-wrapper {
    height: 577px;
  }
  .fav-section .btn {
    height: 49px;
  }
  .landing-section {
    margin-top: -20px;
  }
  .how-item {
    width: 226px;
    height: 338px;
    margin: 0;
  }
  .how-slider,
.swiper-slide-active .how-item,
[how-work-full-img].active .bg-img {
    height: 338px;
  }
  [how-work-full-img].active .bg-img {
    width: 226px;
    height: 338px;
  }
  .how-slider .full-el {
    transition: 0.4s;
    border-radius: 30px;
  }
  .how-slider .swiper-slide-next .full-el,
.how-slider .swiper-slide-prev .full-el {
    scale: 0.8;
    margin-left: -75%;
  }
  .how-slider .swiper-slide-prev .full-el {
    margin-left: 75%;
  }
  .swiper-slide-active .how-item .tth {
    font-size: 14px;
  }
  .swiper-slide-active .how-item .full-el {
    border-radius: 0;
  }
  .swiper-slide .how-item {
    transform: translateY(0);
    width: 100%;
    padding: 28px 15px 30px 15px;
  }
  .how-works-wrapper .head .section-title-48 {
    font-size: 32px;
  }
  .how-slider .btn {
    padding: 8px;
  }
  .small-color-banner .box {
    min-height: 122px;
  }
  .content-section h2 {
    font-size: 18px;
  }
  .content-section .pb-50 {
    padding-bottom: 0px !important;
  }
  .content-section .gap-30 {
    gap: 0;
  }
  .search-form-section .section-title-56 {
    font-size: 56px;
  }
  .search-res_item {
    padding: 24px;
  }
  .search-res_item .tt {
    font-size: 18px;
  }
  .error-section .tt {
    font-size: 100px;
  }
  .error-section .dd {
    font-size: 32px;
  }
  .pb-10-p {
    padding-bottom: 10px;
  }
  .error-section .btn {
    min-width: 220px;
    height: 48px;
    font-size: 16px;
  }
  .btn-header-mobile {
    height: 68px;
    font-size: 17px;
    padding-inline: 20px;
    font-weight: 600;
    color: var(--main-color);
    border: 2px solid var(--main-color);
  }
  .btn-header-mobile.btn-ww {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
  }
  .mo-btn {
    display: flex;
  }
  .do-btn {
    display: none;
  }
  .banner-section .box {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .banner-tt {
    font-size: 24px;
  }
  .banner-section .box .left {
    padding-block: 0px 32px;
  }
  .align-p {
    text-align: left;
  }
  .our-values-section .tt {
    font-size: 32px;
  }
  .our-values-section .box {
    padding-block: 180px 150px;
  }
  .our-values-section .bottom,
.our-market-place-section .bottom {
    height: 32px;
  }
  .rec_item .tt1 {
    font-size: 18px;
  }
  .faq-tabs button {
    padding: 12px 16px;
  }
  .font-32 {
    font-size: 24px;
  }
  .acc-body .cntnt {
    padding: 16px 25px 30px 25px;
  }
  .faq-section .tab-box {
    gap: 15px;
  }
  .service_item {
    padding: 32px 32px 56px 32px;
    text-align: left;
  }
  .lang-ar .service_item { 
    text-align: right;
  }
  .service_item .tt2 {
    margin: 0;
  }
  .section-title-56 br {
    display: none;
  }
  .btn-big {
    font-size: 20px;
    padding: 22px 45px;
  }
  .video_banner_wrapper {
    padding-top: 30px;
  }
  .video_banner_std .box-inside {
    padding-block: 70px;
  }
  .video_banner_std .ttt1 {
    font-size: 24px;
  }
  .video_banner_std .btn {
    font-size: 16px;
    font-weight: 600;
    border-width: 2px;
    padding: 16px 24px;
    min-width: inherit;
  }
  .media_center_item .img {
    height: 242px;
  }
  .media_center_item figure {
    margin-bottom: 15px;
  }
  .media_center_item {
    gap: 30px;
    padding-bottom: 15px;
  }
  .media_center_item .gg {
    padding-inline: 16px;
  }
  .media_center_item .tt {
    height: auto;
    font-size: 18px;
  }
  .media_center_item .dd2 {
    -webkit-line-clamp: 3;
  }
  .media_center_item .btn {
    padding: 16px 32px;
  }
  .image-top-banner .img {
    height: 242px;
  }
  .content-text-normal h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .offer_item_std {
    padding: 50px 24px 32px 24px;
    gap: 40px;
  }
  .offer_item_std .tt1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .offer_item_std .tt2 {
    font-size: 18px;
  }
  .offer_item_std .btn {
    font-size: 18px;
    padding: 16px 32px;
    font-weight: 400;
  }
  .reward_item_std .img {
    height: 338px;
  }
  .reward_item_std {
    text-align: center;
    border-radius: 32px 32px 24px 24px;
  }
  .reward_item_std .btns {
    justify-content: center;
  }
  .reward_item_std .tt1 {
    font-size: 18px;
  }
  .reward_item_std .btn {
    font-size: 16px;
    padding: 16px 32px;
  }
  .rewards-listing-section .box {
    gap: 50px;
  }
  .rewards-listing-section {
    padding-bottom: 80px;
  }
  .contact-us-form-section .desc.pb-50 {
    padding-bottom: 16px;
  }
  .contact-infos_std br {
    display: none;
  }
  .from-control::placeholder, .form-control::placeholder {
    font-size: 14px;
  }
  .from-control, .form-control {
    font-size: 16px;
  }
  .form_inside_std .form-row {
    gap: 7px;
  }
  .btn-submit {
    padding: 16px 32px;
    font-size: 16px;
  }
  .agent-btn {
    font-size: 14px;
    padding: 4px 6px;
  }
  .align-end-p {
    align-self: end;
  }
  .blue-select {
    padding: 7px 14px;
    padding-inline-end: 35px;
    background-position: calc(100% - 14px) 45%;
    height: 45px;
    width: 120px;
  }
  .agent_item_std {
    padding: 24px 32px;
  }
  .agent_item_std .tt1 {
    font-size: 18px;
    font-weight: bold;
  }
  .banner-section,
.image-banner-section {
    margin-top: -14px;
  }
  .image-banner-section .img {
    border-radius: 0;
  }
  .banner-section .box {
    padding-top: 14px;
    padding-inline: 24px;
  }
  .banner-section .ccc,
.image-banner-section .container-big {
    width: 100%;
    border-radius: 0 0 48px 48px;
    background-color: #102664;
  }
  .our-market-place-section .tt {
    font-size: 32px;
  }
  .our-market-place-section {
    padding-block: 190px 150px;
    min-height: inherit;
  }
  .our-market-place-section .dd {
    font-size: 16px;
  }
  .our-market-place-section .dd2 {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.8;
  }
  .our-market-place-section .btn {
    font-size: 14px;
    font-weight: 400;
    padding: 18px 20px;
  }
  .book-tickt-left-right .btn {
    font-size: 17px;
    font-weight: 600;
    padding: 18px 20px;
  }
  .book-tickt-left-right .img,
.book-tickt-left-right2 .img {
    height: 225px;
  }
  .book-tickt-left-right2 .btn {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    height: auto;
    width: auto;
    padding: 23px 26px;
  }
  .business_item_std .img {
    height: 194px;
  }
  .business_item_std .btn {
    font-size: 16px;
    padding: 16px 32px;
  }
  .image-banner-section .img {
    height: 626px;
    object-fit: cover;
  }
  .digital-payroll-form-section .desc,
.contact-partner-section .desc {
    padding-bottom: 25px !important;
  }
  .form_inside_std form {
    border-radius: 32px;
  }
  .contact-partner-section .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-partner-section .btn-submit {
    width: 100%;
    height: 51px;
    padding: 10px;
  }
  .learn-more-section .tt {
    font-size: 24px;
  }
  .self-p {
    align-self: start;
  }
  .learn-more-section .blue-select {
    width: 150px;
  }
  .guide_item_std .img {
    height: 242px;
  }
  .guide_item_std .tt1 {
    font-size: 18px;
  }
  .guide_item_std .gg {
    padding-inline: 15px;
  }
  .guide_item_std .btn {
    padding: 16px 32px;
    font-size: 16px;
  }
  .video-modal .modal-body {
    height: auto;
    width: 100%;
    max-height: 90vh;
  }
  .video-modal .modal-body iframe, .video-modal .modal-body video {
    width: 100%;
    height: auto;
    border: 0;
    aspect-ratio: 1/1.2;
    max-height: 90vh;
  }
  .video-modal .close-modal-btn {
    left: 5px;
  }
  .search-submit {
    font-size: 0;
    width: 54px;
    height: 54px;
  }
  .search-submit span {
    display: none;
  }
  .search-form-section .search-form {
    padding-inline: 32px 10px;
  }
  .fav-section .box {
    scale: 0.83;
  }
  .banner-section .box .left:only-child {
    padding-block: 50px;
  }
  .cardList .fold-1-box .tt {
    font-size: 54px;
  }
  .cardList .head .tt1 {
    font-size: 32px;
  }
  .cardList .head .dd1 {
    font-size: 13px;
  }
  .how-slider-animating-in .cardList .card,
.cardList .playing .card {
    top: calc(50% + 40px);
  }
  .dots-how-slider-box {
    transform: translateY(-150px);
  }
  .fav-section .head {
    padding-bottom: 80px;
  }
  #dots {
    margin-top: 15px;
  }
  .dots-how-slider-box .dot-how-slider {
    height: 3.5px;
  }
  .your-money-section .right-side video {
    transform: scale(1.06);
  }
  .digital-payroll-form-section .left {
    margin-bottom: 25px;
  }
  .lang-ar .land-dd {
    width: 100%;
  }
  .market-wrapper .subtitle {
    font-size: 20px;
  }
}


/* Update WP Editor CSS */

.wp-block-table thead{
  border-bottom: 1px solid;
  background-color: #1d3472;
  color: #FFF;
}
.wp-block-table thead th{
  font-weight: 400;
}