@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Poppins:300,400,500,600,700&display=swap");

body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #747E88;
  overflow-x: hidden;
}

.dark body {
  background-color: #141420;
  color: #8d8b97;
}

.light body {
  background-color: white;
  color: #0F111E;
}

 body.ar{
  font-family:  "system-ui", sans-serif;;
}
 body.en{
  font-family: "Poppins", sans-serif;

}

.dark .light_logo,
.dark .light_home_image ,.dark .light_slider_image {
  display: none;
}

.light .dark_logo,
.light .dark_home_image , .light .dark_slider_image {
  display: none;
}

.light .light_home_image ,.light .light_slider_image ,.feature_card{
  -webkit-box-shadow: 0px 2px 14px 0px rgba(8, 153, 231, 0.2);
    -moz-box-shadow: 0px 2px 14px 0px rgba(8, 153, 231, 0.2);
    box-shadow: 0px 2px 14px 0px rgb(22 26 231 / 26%);
    border-radius: 30px;
}

.dark .dark_home_image ,.dark  .dark_slider_image ,.feature_card {
  -webkit-box-shadow: 0px 2px 14px 0px rgba(8, 153, 231, 0.2);
  -moz-box-shadow: 0px 2px 14px 0px rgba(8, 153, 231, 0.2);
  box-shadow: 0px 2px 14px 0px rgb(22 26 231 / 26%);
  border-radius: 30px;
}


* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.ar h1,
.ar h2,
.ar h3,
.ar h4,
.ar h5,
.ar h6 {
  font-family:  "system-ui", sans-serif;
}
.en h1,
.en h2,
.en h3,
.en h4,
.en h5,
.en h6 {
  font-family: "Poppins", sans-serif;
}

.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6 {
  font-weight: 700;
  color: #38424D;
  margin: 0px;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #706d7a;
  margin: 0px;
}

.dark .single-services .services-content .services-title a {
  color: #706d7a;
}
.light .single-services .services-content .services-title a{
  color: #38424D;
}



h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.light p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #747E88;
  margin: 0px;
}

.dark p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #706d7a;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #161ae7;
  padding: 0 25px;
  font-size: 16px;
  height: 55px;
  line-height: 51px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #161ae7;
}

.main-btn:hover {
  background-color: #161AE7;
  color: #fff;
  border-color: transparent;
}

.main-btn.main-btn-2 {
  background-color: transparent;
  color: #161ae7;
  border-color: #161ae7;
}

.main-btn.main-btn-2:hover {
  background-color: rgba(82, 90, 99, 0.5);
  color: #161ae7;
}

@keyframes animation1 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes animation1 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/*===== All Section Title Style =====*/
.section-title .title {
  font-size: 35px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title {
    font-size: 26px;
  }
}

.section-title .text {
  margin-top: 20px;
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .RACID-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .RACID-spinner .RACID-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: RACID-spinner-linspin 1568.23529647ms linear infinite;
  -moz-animation: RACID-spinner-linspin 1568.23529647ms linear infinite;
  -o-animation: RACID-spinner-linspin 1568.23529647ms linear infinite;
  animation: RACID-spinner-linspin 1568.23529647ms linear infinite;
}

.preloader .loader .RACID-spinner .RACID-spinner-container .RACID-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: RACID-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  -moz-animation: RACID-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  -o-animation: RACID-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: RACID-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .RACID-spinner .RACID-spinner-container .RACID-spinner-rotator .RACID-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .RACID-spinner .RACID-spinner-container .RACID-spinner-rotator .RACID-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .RACID-spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #161ae7 #161ae7 #eceff8;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .RACID-spinner-left .RACID-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #eceff8;
  -webkit-animation: RACID-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  -moz-animation: RACID-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  -o-animation: RACID-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: RACID-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .RACID-spinner-right .RACID-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #eceff8;
  -webkit-animation: RACID-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  -moz-animation: RACID-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  -o-animation: RACID-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: RACID-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes RACID-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes RACID-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes RACID-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }

  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }

  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);
  }

  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);
  }

  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);
  }

  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@keyframes RACID-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }

  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }

  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);
  }

  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);
  }

  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);
  }

  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes RACID-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@keyframes RACID-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes RACID-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@keyframes RACID-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

/*===========================
      02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
#nav {
  display: flex;
  place-content: center flex-end;
  align-items: center;
  width: 100%;
}

.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.dark .sticky {
  position: fixed;
  z-index: 99;
  padding-block: 1rem;
  background-color: #004ea1d9;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.light .sticky {
  position: fixed;
  z-index: 99;  padding-block: 1rem;

  background-color: #004ea1d9;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 10px 0;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 35px 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-toggler {
  padding: 0;
}

.light .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #222;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.dark .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dark .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #2c2c39;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 13px;
  }
  .light .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #c5c6cd;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 13px;
  }
}

@media (max-width: 767px) {
  .dark .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #2c2c39;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
    padding: 5px 12px;
    border-radius: 13px;
  }
  .light .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #c5c6cd;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
    padding: 5px 12px;
    border-radius: 13px;
  }
}

.navbar-nav .nav-item {
  margin-inline: 12px;
  position: relative;
}

.navbar-nav .nav-item:first-child {
  margin-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-inline: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

.light .navbar-nav .nav-item a,
.light .navbar-nav .nav-item .translate {
  font-size: 16px;
  font-weight: 600;
  color: #38424D;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  cursor: pointer;
}
 .dark .navbar-nav .nav-item a,
 .dark .navbar-nav .nav-item .translate {
  font-size: 16px;
  font-weight: 600;
  color: #706d7a;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
  }
}

.light .navbar-nav .nav-item.active>a,
.navbar-nav .nav-item:hover>a {
  color: #161ae7;
}

.dark .navbar-nav .nav-item.active>a,
.navbar-nav .nav-item:hover>a {
  color: #3d41f1;
}

.light .sticky .navbar-nav .nav-item.active>a,
.navbar-nav .nav-item:hover>a {
  color: #dbdbdb;
}

.dark .sticky .navbar-nav .nav-item.active>a,
.navbar-nav .nav-item:hover>a {
  color: #dbdbdb;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #161ae7;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

/*===== HEADER HERO =====*/
.header-hero {
  position: relative;
  z-index: 5;
  background-position: bottom center;
  height: 800px;
}

@media only screen and (min-width: 1400px) {
  .header-hero {
    height: 900px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-hero {
    height: auto;
  }
}

@media (max-width: 767px) {
  .header-hero {
    height: auto;
  }
}

.header-hero .shape {
  position: absolute;
}




.ar .header-hero-content {
  position: relative;
  z-index: 9;
  text-align: right;
}
.en .header-hero-content {
  position: relative;
  z-index: 9;
  text-align: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-hero-content {
    padding-top: 150px;
  }
}

@media (max-width: 767px) {
  .header-hero-content {
    padding-top: 120px;
  }
}

.light .header-hero-content .header-title {
  font-size: 42px;
  color: #38424D;
}

.dark .header-hero-content .header-title {
  font-size: 42px;
  color: #706d7a;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-hero-content .header-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .header-hero-content .header-title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-hero-content .header-title {
    font-size: 38px;
  }
}

.header-hero-content .header-title span {
  display: contents;
}
.header-hero-content .header-title span:first-of-type {
  display: contents;
  color: #161ae7;
}

.header-hero-content .text {
  margin-top: 30px;
}

.header-hero-content ul {
  margin-top: 30px;
}

.header-hero-content ul li {
  margin-left: 50px;
}

.header-hero-content ul li:first-child {
  margin-left: 0;
}

.header-hero-content .main-btn {
  margin-top: 10px;
}

.header-hero-content .header-video {
  margin-top: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  background-color: #161ae7;
  position: relative;
  z-index: 5;
}

.header-hero-content .header-video::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(8, 152, 231, 0.8);
  top: 0;
  left: 0;
  -webkit-animation: video 2s linear infinite;
  -moz-animation: video 2s linear infinite;
  -o-animation: video 2s linear infinite;
  animation: video 2s linear infinite;
  z-index: -1;
}

@keyframes video {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes video {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

.header-image {
  padding-top: 80px;
  position: relative;
  z-index: 5;
  max-width: 20rem;
}

.header-image .image {
  width: 100%;
}



/*===========================
      03.SERVICES css 
===========================*/
.single-services {

  -webkit-box-shadow: 0px 3px 25px 0px rgba(8, 153, 231, 0.2); 
    -moz-box-shadow: 0px 3px 25px 0px rgba(8, 153, 231, 0.2);
    box-shadow: 0px -2px 8px 0px rgb(22 26 231 / 26%);
    border-radius: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  padding-block: 2rem;



}

@media (max-width: 767px) {
  .single-services {
    padding: 40px 20px 30px;
  }
}

.single-services .services-icon {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.single-services .services-icon i {
  font-size: 46px;
  line-height: 79px;
  color: #fff;
}

.single-services .services-icon::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  border-radius: 50%;
  z-index: -1;
}

.single-services .services-content {
  margin-top: 35px;
}

.single-services .services-content .services-title a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-services .services-content p {
  font-size: .9rem;
 
}

@media (max-width: 767px) {
  .single-services .services-content .services-title a {
    font-size: 18px;
  }
}

.single-services .services-content .text {
  margin-top: 30px;
}

.single-services.services-color-1 .services-icon {
  /* background-color: #004ea1; */
  background-color: #161ae7;
}

.single-services.services-color-1 .services-icon::before {
  background-color: rgba(8, 152, 231, 0.2);
}

.single-services.services-color-1 .services-content .services-title a:hover {
  color: #161ae7;
}

.single-services.services-color-2 .services-icon {
  background-color: #161ae7;
}

.single-services.services-color-2 .services-icon::before {
  background-color: rgba(8, 152, 231, 0.2);
}

.single-services.services-color-2 .services-content .services-title a:hover {
  color: #161ae7;
}

.single-services.services-color-3 .services-icon {
  background-color: #161ae7;
}

.single-services.services-color-3 .services-icon::before {
  background-color: rgba(8, 152, 231, 0.2);
}

.single-services.services-color-3 .services-content .services-title a:hover {
  color: #161ae7;
}

.single-services.services-color-4 .services-icon {
  background-color: #161ae7;
}

.single-services.services-color-4 .services-icon::before {
  background-color: rgba(8, 152, 231, 0.2);
}

.single-services.services-color-4 .services-content .services-title a:hover {
  color: #161ae7;
}

.single-services:hover {
  -webkit-box-shadow: 0px 15px 17px 0px rgba(154, 154, 154, 0.16);
  -moz-box-shadow: 0px 15px 17px 0px rgba(154, 154, 154, 0.16);
  box-shadow: 0px 15px 17px 0px rgba(154, 154, 154, 0.16);
}


#benefits{
  padding-block: 8rem;
}
#target{
  padding-block: 8rem;
}
/* .light .about-area {
  background-color: #F3FDFF;
} */

/* .dark .about-area {
  background-color: #2c2c39;
} */

.about-image {
  position: relative;
  display: inline-block;
  text-align: center;
  /* margin-left: 50px;
  padding-top: 100px;
  padding-bottom: 100px; */
}

@media (max-width: 767px) {
  .about-image {
    /* margin-left: 0;
    padding-top: 65px;
    padding-bottom: 45px; */
  }
}




.about-image .app {
  position: relative;
  /* -webkit-transform: rotate(-25deg) translateY(-15%);
  -moz-transform: rotate(-25deg) translateY(-15%);
  -ms-transform: rotate(-25deg) translateY(-15%);
  -o-transform: rotate(-25deg) translateY(-15%);
  transform: rotate(-25deg) translateY(-15%); */
  max-width: 280px;
  /* position: absolute;
  top: 100px;
  left: 95px; */
  -webkit-box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -15px 10px 30px 0px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}

@media (max-width: 767px) {
  .about-image .app {
    max-width: 190px;
    border-radius: 25px;
    /* top: 60px; */
  }
}

.about-content .main-btn {
  margin-top: 40px;
}


/*===========================
     10.DOWNLOAD css 
===========================*/
.download-area .download-image {
  padding-top: 65px;
  padding-left: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (max-width: 767px) {
  .download-area .download-image {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.download-area .download-image .image {
  -webkit-box-shadow: 0px 3px 25px 0px rgba(8, 153, 231, 0.2);
  -moz-box-shadow: 0px 3px 25px 0px rgba(8, 153, 231, 0.2);
  box-shadow: 0px 3px 25px 0px rgb(22 26 231 / 26%);
  border-radius: 30px;
  max-width: 295px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .download-area .download-image .image {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .download-area .download-image .image {
    max-width: 295px;
  }
}

.ar .download-content{
  text-align: right;

}
.en .download-content{
  text-align: left;

}
.download-content .download-title {
  font-size: 34px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .download-content .download-title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .download-content .download-title {
    font-size: 28px;
  }
}

.download-content .text {
  margin-top: 35px;
}

.download-content ul {
  padding-top: 35px;
}

.download-content ul li {
  display: inline-block;
  margin-top: 15px;
}

.download-content ul li a {
  width: 210px;
  height: 65px;
  border-radius: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.download-content ul li a.app-store {
  background-color: #161ae7;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(8, 152, 231, 0.4);
  -moz-box-shadow: 0px 4px 10px 0px rgba(8, 152, 231, 0.4);
  box-shadow: 0px 4px 10px 0px rgba(8, 152, 231, 0.4);
  margin-right: 28px;
}

.download-content ul li a.app-store:hover {
  -webkit-box-shadow: 0px 4px 25px 0px rgba(8, 152, 231, 0.4);
  -moz-box-shadow: 0px 4px 25px 0px rgba(8, 152, 231, 0.4);
  box-shadow: 0px 4px 25px 0px rgba(8, 152, 231, 0.4);
}

.download-content ul li a.play-store {
  background-color: #161ae7;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(82, 90, 99, 0.4);
  -moz-box-shadow: 0px 4px 10px 0px rgba(82, 90, 99, 0.4);
  box-shadow: 0px 4px 10px 0px rgba(82, 90, 99, 0.4);
}

.download-content ul li a.play-store:hover {
  -webkit-box-shadow: 0px 4px 25px 0px rgba(82, 90, 99, 0.4);
  -moz-box-shadow: 0px 4px 25px 0px rgba(82, 90, 99, 0.4);
  box-shadow: 0px 4px 25px 0px rgba(82, 90, 99, 0.4);
}

/*===========================
     10.FOOTER css 
===========================*/
.footer-area {
  position: relative;
  z-index: 5;
}

.footer-area .logo {
  max-width: 200px;
}

.footer-about {
  max-width: 320px;
}

.footer-about .text {
  margin-top: 30px;
}

.footer-about .social {
  margin-top: 30px;
}

.footer-about .social li {
  display: inline-block;
  margin-right: 25px;
}

.footer-about .social li a {
  font-size: 20px;
  color: #747E88;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-about .social li a:hover {
  color: #161ae7;
}

.footer-title .title {
  font-size: 20px;
  font-weight: 500;
}

.footer-link .link {
  padding-top: 10px;
}

.footer-link .link li {
  margin-top: 10px;
}

.footer-link .link li a {
  color: #747E88;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-link .link li a:hover {
  color: #161ae7;
}

.footer-link-wrapper {
  width: 50%;
}

.footer-contact .contact-list li {
  margin-top: 20px;
}

.footer-contact .contact-list li .contact-info .info-info {
  width: 30px;
}

.footer-contact .contact-list li .contact-info .info-content .text {
  color: #747E88;
  font-size: 16px;
}

.footer-contact .contact-list li .contact-info .info-content .text a {
  color: #747E88;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-contact .contact-list li .contact-info .info-content .text a:hover {
  color: #161ae7;
}

.footer-copyright .copyright {
  border-top: 2px solid #747E88;
  padding-top: 10px;
  padding-bottom: 25px;
}

.footer-copyright .copyright .copyright-text {
  padding-top: 15px;
}

.footer-copyright .copyright .copyright-text .text {
  color: #747E88;
}

.footer-copyright .copyright .copyright-privacy {
  padding-top: 15px;
}

.footer-copyright .copyright .copyright-privacy a {
  font-size: 16px;
  color: #747E88;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-copyright .copyright .copyright-privacy a:hover {
  color: #161ae7;
}

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background: #161ae7;
  background-size: 200%;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}

.back-to-top:hover {
  background-color: rgba(8, 152, 231, 0.5);
  color: #fff;
}
.theme-icon{
  cursor: pointer;

}
/* Hide dark mode icon by default */
.theme-icon.dark-mode {
  display: none;
}

/* Show dark mode icon when dark mode is active */
html.dark .theme-icon.dark-mode {
  cursor: pointer;
  display: inline-block;
}

/* Hide light mode icon when dark mode is active */
html.dark .theme-icon.light-mode {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    top: auto !important;
    bottom: 0px !important;
    display: flex !important;
    height: 2.5rem !important;
    width: 2.5rem !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9999px !important;
    border-width: 1px !important;
    --tw-border-opacity: 1;
    border-color: rgb(121 128 138 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(121 128 138 / var(--tw-text-opacity));
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: var(--tw-content);
    display: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    --tw-border-opacity: 1;
    border-color: rgb(22 26 231 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(22 26 231 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.slider_btn_wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-top: 2rem;
  gap:1rem
}
.dark .benefits_card{
  position: relative;
  display: flex
;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #2c2c39;
  background-clip: border-box;
  border: 1px solid #2c2c39;
  border-radius: .25rem;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding-block: 2rem;

}
.light .benefits_card{
  position: relative;
  display: flex
;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #c5c6cd;
  background-clip: border-box;
  border: 1px solid #c5c6cd;
  border-radius: .25rem;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding-block: 2rem;

}
.benefits_card:hover{
scale: 1.02;
}
.benefits_icon{
  margin-bottom: 1rem !important;
  display: flex !important
;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 21% !important;
  /* background-color: #03458e !important; */
  background-color: #161ae7 !important;
  padding: 1rem !important;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  
}
.benefits_card .benefits_icon i {
  font-size: 46px;
  line-height: 79px;
  color: #fff;
}

.dark  .bg-gradient {
  background-color: #2c2c39;}
.light .bg-gradient {
  background-color: #c5c6cd;
}

.grayscale-hover img {
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.grayscale-hover:hover img {
  filter: grayscale(0%);
}
.target_item{
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
  gap: 0.5rem;
  gap: 0.75rem;
}
.target_item i{
  font-size: 1.4rem;
}
.gap-2{
  gap: 0.5rem;
}
.Google_play_btn{
/* background-color: #03458e; */
background-color: #161ae7;
color: #c5c6cd;
}
.App_store_btn{
background-color: #c5c6cd;
}
#screenshots{
  direction: ltr !important;
}