/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@700&display=swap");

:root {
  --colors-primary: #1e90ff;
  --colors-secondary: #f0e68c;
  --colors-gold: #ffd700;
  --colors-purple: #5a46bf;
  --colors-bright-cyan-blue: #0093e9;
  --colors-twitter-blue: #1da1f2;
  --colors-dark-gray: #333;
  --colors-black: #000;
  --colors-white: #fff;
  --colors-red: red;
  --colors-green: #5caf50;
  --colors-light-gray: #ddd;
  --colors-off-white: #f1f1f1;
  --colors-shade-light-gray: #eee;
  --colors-light-off-white: #fafafa;
  --colors-white-70: rgba(255, 255, 255, 0.7);
  --colors-semi-dark-gray-40: rgba(31, 31, 31, 0.4);
  --colors-semi-dark-gray-20: rgba(99, 100, 102, 0.2);
  --colors-black-50: rgba(0, 0, 0, 0.5);
  --colors-medium-sky-blue: #229ed9;

  --font-cairo: "Cairo", Verdana, Geneva, Tahoma, sans-serif;
  --font-messiri: "El Messiri", Verdana, Geneva, Tahoma, sans-serif;
  --font-tajawal: "Tajawal", "Times New Roman", Times, serif;

  --sizes-100: 100%;
  --sizes-80: 80%;
  --sizes-60: 60%;
  --sizes-40: 40%;
  --sizes-20: 20%;
  --sizes-100vh: 100vh;
  --sizes-80vh: 80vh;
  --sizes-60vh: 60vh;
  --sizes-40vh: 40vh;
  --sizes-20vh: 20vh;

  /* --colors-turquoise: #80d0c7;
	--colors-dark-blue: #09203f;
	--colors-steel-blue: #537895;
	--colors-midnight-blue: #1e3c72;
	--colors-dark-slate-blue: #39517e;
	--colors-royal-blue: #2a5298;
	--colors-charcoal: #39454d;
	--colors-forest-green: #425654;
	--colors-bright-blue: #3373a0;
	--colors-sky-blue: rgba(62, 161, 219, 1);
	--colors-electric-purple: rgba(93, 52, 236, 1);
	--colors-navy-blue: rgba(30, 39, 107, 1);
	--colors-medium-blue: rgba(77, 118, 221, 1);
	--colors-orange: rgba(255, 124, 0, 1);
	--colors-light-orange: rgba(255, 163, 77, 1);
	--colors-dark-charcoal: rgba(19, 30, 37, 1);
	--colors-semi-transparent-beige: rgba(255, 255, 225, 0.4);
	--colors-deep-blue: rgb(58, 113, 213); */
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--colors-dark-gray) !important;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--colors-primary);
}

.gold {
  background-color: var(--colors-gold) !important;
  color: var(--colors-black) !important;
}

.purple {
  background-color: var(--colors-purple) !important;
}

html,
body {
  padding: 0;
  margin: 0;
  transition: all 0.5s;
  font-family: "Cairo", Verdana, Geneva, Tahoma, sans-serif;
  direction: rtl;
  scroll-behavior: smooth;
}

code {
  background-color: var(--colors-light-gray);
  font-size: 18px;
  padding: 5px 10px;
}

header {
  min-height: 100vh !important;
  background-color: var(--colors-bright-cyan-blue);
  color: var(--colors-white);
  font-size: calc(10px + 2vmin);
  position: relative;
  z-index: 1;
}

.particles-js-canvas-el {
  position: absolute;
  top: 0;
  z-index: -1;
}

#particles-js {
  background-repeat: no-repeat;
}

nav {
  height: auto;
  min-height: auto;
  display: flex;
  direction: rtl;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.nav-items-container {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.video-container {
  padding: 25px;
}

.video-container video {
  width: 80%; 
  border-radius: 25px;
}

.stages-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stages-container > div {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  text-align: center;
  padding: 25px;
  border-radius: 25px;
  width: 250px;
  white-space: normal;
  word-break: break-word;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000,
    0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.stages-container > div:hover {
  background-color: dodgerblue;
  color: #fff;
}

.stages-container i {
  font-size: calc(10px + 9vmin);
}

.nav-items {
  margin: 20px;
  cursor: pointer;
  transition: 0.5s;
  font-size: calc(10px + 1vmin);
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: transparent;
  color: var(--colors-white);
}

.nav-items:hover {
  color: var(--colors-white-70);
  text-decoration-color: var(--colors-white);
}

.mobile-nav-items {
  display: none;
}

.primary {
  background-color: var(--colors-primary) !important;
}

.black {
  background-color: var(--colors-black) !important;
}

.gray {
  background-color: var(--colors-dark-gray) !important;
}

.color-black {
  color: var(--colors-black) !important;
}

.items-center {
  align-items: center;
}

@media screen and (max-width: 800px) {
  /* .nav-items {
		font-size: 12px;
		margin: 20px 5px;
	} */
  .page-logo {
    padding: 4px 10px !important;
  }
}

.mobile-nav-items-container {
  position: fixed;
  width: 100%;
  min-height: 105vh;
  height: 100%;
  top: -25px;
  background-color: var(--colors-semi-dark-gray-40);
  bottom: 0;
  z-index: 9999;
  animation: fadeIn ease 1s;
}

.mobile-nav-items-wrapper {
  position: absolute;
  background-color: var(--colors-black);
  width: 60%;
  right: 0;
  top: 0;
  bottom: 0;
  padding-top: 10px;
  animation: navEffect 0.6s;
}

@keyframes navEffect {
  from {
    right: -60%;
  }
  to {
    right: 0;
  }
}

.mobile-nav-items-container {
  display: none;
}

.mobile-nav-items-container .nav-items {
  display: flex;
  align-items: center;
  color: var(--colors-white) !important;
  font-size: calc(10px + 1vmin);
  padding: 10px 20px;
  gap: 10px;
}

@media screen and (max-width: 800px) {
  .nav-items-container {
    display: none;
  }

  .mobile-nav-items {
    display: block;
  }
}

.page-logo {
  padding: 25px;
}

.logo-container {
  height: 100px;
  width: 100px;
}

.logo {
  height: 100%;
  width: 100%;
}

.header-elements-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 100;
  height: 70vh;
}

@media screen and (max-width: 750px) {
  header {
    min-height: 85vh !important;
  }

  .header-elements-container {
    height: 55vh !important;
  }
}

.header-title,
.section-large-title {
  font-size: calc(25px + 10vmin);
  text-align: center;
  font-family: var(--font-messiri);
}

.section-large-title {
  font-size: calc(25px + 6vmin);
}

.header-text {
  margin-top: calc(5px - 12vmin);
  text-align: center;
  padding: 0 10px;
}

.section-text {
  margin-top: calc(5px - 8vmin);
  text-align: center;
}

.text-green {
  text-align: center;
  color: green;
}

.text-red {
  text-align: center;
  color: red;
}

.px-3 {
  padding: 0px 10px;
}

.btn {
  padding: 10px 20px;
  border: 0;
  outline: 0;
  margin: 3px;
  color: var(--colors-white);
  font-family: var(--font-cairo);
  cursor: pointer;
}

.table {
  display: table;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.btns-container {
  text-align: center;
  margin: auto;
  align-content: center;
  display: flex;
  flex-direction: column;
  width: auto;
}

.header-btns {
  background-color: var(--colors-secondary);
  border-radius: 40px;
  color: var(--colors-black);
  font-size: calc(4px +2vmin);
  font-family: "cairo", Verdana, Geneva, Tahoma, sans-serif;
  border: 3px solid transparent;
  display: block;
  /* width: 80%; */
  text-decoration: none;
  /* margin: auto; */
}

.header-btns:hover {
  background-color: var(--colors-white);
  color: var(--colors-black) !important;
  transition: all 0.5s;
  border-color: transparent;
}

#section1 {
  min-height: 100vh;
}

#section2,
.section {
  min-height: 100vh;
  background-color: var(--colors-shade-light-gray);
  padding: 20px 0;
}

.default-height {
  min-height: inherit;
  height: inherit;
}

#section2 {
  padding-bottom: 10vh;
}

#section3 {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}

#section4 {
  min-height: 100vh;
  padding: 20px 0;
}

#section4 h1 {
  font-family: "El Messiri";
}

#section5 {
  min-height: 100vh;
  background-color: var(--colors-white);
}

.overlay {
  position: absolute;
  min-height: 100%;
  width: 100%;
  color: var(--colors-white);
  background-color: var(--colors-semi-dark-gray-40);
}

.sale {
  text-decoration: line-through;
}

.price-old-span {
  color: red;
  text-decoration: line-through;
}

.section-title {
  text-align: center;
  font-size: calc(10px + 5vmin);
  margin: 25px;
  border-bottom: 5px solid;
  width: auto;
  display: table;
  margin: 25px auto;
}

.pricing-tables-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;

  width: 100%;
  margin: 20px 0;
  padding: 35px 0;
  overflow-y: hidden;
  overflow-x: auto;
}

@media screen and (max-width: 1200px) {
  .swiper,
  .swiper-wrapper {
    justify-content: inherit !important;
    padding-left: 150px;
  }

  .pricing-tables-container {
    /* flex-direction: column; */
    overflow: hidden;
  }
}

.pricing-table-link {
  text-decoration: none;
  color: var(--colors-white);
  padding: 10px 20px;
  background-color: var(--colors-primary);
  width: 70%;
  display: block;
  margin: auto;
  text-align: center;
  margin: 10px auto;
}

.pricing-table-link:hover {
  background-color: var(--colors-dark-gray) !important;
  color: var(--colors-white) !important;
}

.pricing-columns {
  text-align: center;
  border-radius: 20px 20px 0 0;
  font-size: calc(10px + 1vmin);
  min-width: 350px;
  max-width: 450px;
  margin: 0 20px;
  transition: 0.4s;
  /* height: 650px !important; */
  min-height: 650px !important;
  margin-top: 25px;
  flex-grow: 1;
}

.pricing-columns:hover {
  box-shadow: 0 10px 16px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.pricing-columns-container {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Verdana, "Cairo";
  font-weight: bold;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100% !important;
  flex: 1;
}

.pricing-columns-header {
  padding: 35px 25px;
  border-radius: 20px 20px 0 0;
  font-size: calc(10px + 2vmin);
}

.pricing-columns:nth-child(1) .pricing-columns-header {
  background-color: var(--colors-bright-cyan-blue);
  color: var(--colors-white);
}

.pricing-columns:nth-child(2) .pricing-columns-header {
  background-color: var(--colors-gold);
}

.pricing-columns:nth-child(3) .pricing-columns-header {
  background-color: var(--colors-purple);
  color: var(--colors-white);
}

.pricing-table-items-btn {
  margin: 25px 0;
  text-align: center;
}

.pricing-table-items {
  padding: 4px 35px;
  text-align: right;
}

header {
  overflow: hidden;
}

.swiper,
.swiper-initialized,
.swiper-horizontal {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.swiper-wrapper {
  padding-bottom: 75px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.features-container {
  /* display: table; */
  font-family: "Tajawal", "Times New Roman", Times, serif;
  direction: rtl;
}

.features-holder {
  padding: 10px 40px;
  width: 50%;
  display: table-cell;
}

.feature {
  font-size: calc(10px + 1vmin);
  padding: 10px !important;
}

.main-features,
.future-features-container {
  display: flex;
  overflow: auto;
}

.arrow-main-container {
  position: relative;
}

.left-arrow,
.right-arrow {
  position: absolute;
  display: none;
  /* left: 15px; */
  padding: 10px;
  font-size: 25px;
  top: 35%;
  background-color: var(--colors-white);
  background-color: var(--colors-white-70);
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
  left: inherit;
}

.feature-content-box {
  padding: 25px;
  text-align: center;
  margin: 15px !important;
  width: auto;
  min-width: 25vw;
  min-height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--colors-secondary);
  font-size: calc(10px + 2vmin);
}

@media screen and (max-width: 750px) {
  .feature-content-box {
    min-width: 60% !important;
  }
}

.modal {
  background-color: var(--colors-black-50);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal-box {
  min-height: 50%;
  width: 50%;
  min-width: 350px;
  background-color: var(--colors-off-white);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 20px;
}

.modal-box-header {
  padding: 20px;
}

.modal-box-header-title {
  font-size: larger;
  border-bottom: 1px solid;
  padding: 10px 0;
}

.modal-box-footer {
  padding: 20px;
  direction: ltr;
}

.modal-btn {
  border: 0;
  outline: 0;
  padding: 10px 20px;
  font-family: "Cairo";
  color: var(--colors-white);
  cursor: pointer;
}

.modal-btn:nth-child(2) {
  background-color: var(--colors-primary);
}

.modal-btn:nth-child(1) {
  background-color: var(--colors-red);
}

.modal-btn:hover {
  background-color: var(--colors-dark-gray);
}

footer {
  background-color: var(--colors-black);
  color: var(--colors-white);
}

footer .section-title {
  border: 0;
  margin: 0 auto;
  direction: ltr;
}

#support,
#about {
  height: auto;
  min-height: auto;
  padding: 25px 0;
}

.about-us-container {
  width: 80%;
  margin: auto;
  text-align: center;
  font-size: 20px;
  padding: 20px;
}

.about-us-footer-ico {
  font-size: calc(15px + 10vmin);
}

.whatsapp {
  color: var(--colors-green);
}

.whatsapp:hover {
  color: var(--colors-dark-gray);
}

.about-us-header {
  text-decoration: underline;
}

.support-title {
  text-align: center;
}

.support-icons-container {
  text-align: center;
  margin: 20px;
}

.support-icons {
  font-size: calc(15px + 10vmin);
  text-decoration: none;
  color: unset;
}

.support-icons:nth-child(1) {
  color: var(--colors-twitter-blue);
}

.support-icons:nth-child(2) {
  color: var(--colors-medium-sky-blue);
}

.work-on-container {
}

.work-on-container img {
  width: 100%;
  height: 100%;
}

.work-on-wrapper {
  width: 100%;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--colors-light-off-white);
  margin-top: 25px;
  /* max-height: 720px; */
}

.work-on-browser-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.work-on-browser-image-container {
  max-width: 25vmin;
  max-height: 25vmin;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-on-browser-image-container--android {
  margin: 45px 0;
}

.work-on-browser-image-container--android {
  max-width: 25vmin;
  max-height: 25vmin;
}

.work-on-browser-image-container--ios {
  /* max-width: 35vmin;
	max-height: 35vmin; */
  min-width: 35vmin;
  min-height: 35vmin;
  margin: -35px 0;
}

.mobile-nav-btn {
  font-size: calc(10px + 4vmin);
}

.work-on-browser-btn {
  border: 0;
  outline: 0;
  padding: 10px 20px;
  background-color: var(--colors-primary);
  color: var(--colors-white);
  font-family: "Cairo";
  margin: 10px 0;
  display: block;
  text-align: center;
  border-radius: 20px;
  /* white-space: nowrap; */
  display: table;
  text-decoration: auto;
}

.work-on-browser-btn:hover {
  background-color: var(--colors-dark-gray);
}

.work-on-browser-btn-container {
  margin: 0;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-on-device-image {
  height: 1270px;
  width: 720px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.work-on-device-imag img {
}

.work-on-container {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.fa-telegram {
  color: var(--colors-twitter-blue);
}

.work-on-device-img {
  background-image: url("/images/photo_5812237937709006252_y.jpg");
  border-radius: 10vmin 10vmin 10vmin 10vmin;
  /* border-top-right-radius: 15vmin;
  border-top-left-radius: 15vmin; */
  /* border-radius: 20vmin; */
  background-position: center;
  background-size: 92% 94%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.work-on-device-img:after {
  position: absolute;
  height: 100%;
  width: 100%;
  display: table;
}

.android-device {
  background-image: url("/images/photo_5812237937709006251_y.jpg");
  border-radius: 10vmin 10vmin 10vmin 10vmin;
  /* border-top-right-radius: 14vmin;
	border-top-left-radius: 14vmin; */
  background-position: top center;
  background-size: 95% 97%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.glue-flexbox .h-c-grid__col-s--offset-0 {
  margin-left: 2.65152%;
  margin-right: 2.65152%;
}

.feat-vid {
  position: relative;
  margin: 0 auto;
  max-height: 567px;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15vmin !important;
}

.feat-vid-chrome {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

#aVid,
#fVid,
#iVid,
#tVid,
#wVid {
  opacity: 1;
  transform: scale(0.77) translate3d(-0.5%, -5.6%, 0);
  width: 91%;
}

.gwd-fadein {
  opacity: 0;
  animation: gwd_fadein 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

video,
.gwd-fadein {
  object-fit: contain;
  overflow-clip-margin: content-box;
  overflow: clip;
  height: 100% !important;
  width: 100%;
}

img {
  overflow-clip-margin: content-box;
  overflow: clip;
}

img {
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

@media screen and (max-width: 1270px) {
  .work-on-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 800px) {
  .work-on-device-image {
    width: 450px;
    height: 720px;
  }
}

@media screen and (max-width: 450px) {
  .work-on-device-image {
    width: 350px;
    height: 650px;
  }
}

.hidden-content {
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: max-height 2s ease-out;
}

#agreement {
  position: relative;
  width: 90%;
  margin: auto;
}

.blur-effect {
  box-sizing: border-box;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    var(--colors-white) 100%
  );
}

.blural {
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: -30px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.show-more {
  box-sizing: border-box;
  font: inherit;
  padding: 0px 15px;
  transition-property: box-shadow, background-color;
  transition-duration: 60ms;
  transition-timing-function: ease-out;
  height: 30px;
  min-width: 30px;
  position: relative;
  box-shadow: var(--colors-semi-dark-gray-20) 0px 0px 0px 1px inset;
  border-width: 0px;
  outline: none;
  color: inherit;
}
