@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

.light {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #f1f8fc;
  --darkOne: #312f3a;
  --darkTwo: #45424b;
  --lightOne: #919191;
  --lightTwo: #aaa;
}

.dark {
  --mainColor: #3e7597;
  --mainColorSecond: #3e974e;
  --hoverColor: #5bacdf;
  --hoverColorSecond: #5bdf68;
  --backgroundColor: #fff;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #3d3838;
  --lightTwo: #3d3838;
  --test:  #001f61;
}

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

body {
  font-family: "Poppins", sans-serif;
  direction: rtl;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.big-wrapper {
  position: relative;
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

header {
  position: relative;
  z-index: 70;
}

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

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
  margin-inline-start: -4rem;
}

.logo img {
  /*margin-right: 0.6rem;
  margin-top: -0.6rem;*/
}

.logo .icon
{
  width: 50%;
}

.logo .title
{
  color: #3e7597;
  font-size: 5rem;
  margin-top: -1.5rem;
  text-align: center;
}
.logo .subtitle
{
  width: 50%;
 
}

.logo h1 {
  color: var(--darkTwo);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.links ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--lightTwo);
  margin-left: 0.5rem;
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}


.bottom-area a {
  
  color: var(--lightTwo);
  display: inline-block;
  transition: 0.3s;
}

.bottom-area a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 0.9rem 0.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.5s;
  font-size: 1.5em;
}

.btn-enter {
  display: inline-block;
  padding: 0.9rem 0.9rem;
  color: #fff !important;
  background-color: var(--mainColorSecond);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.5s;
  font-size: 1.5em;
}

.btn-enter:hover {
  background-color: var(--hoverColorSecond);
  transform: scale(1.05) !important;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1.05) !important;
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.2rem;
  color: var(--darkOne);
  text-transform: capitalize;
  line-height: 1.4;
  /*margin-top: 2rem;*/
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 1.6;
  text-wrap: pretty;
}

.text-big {
  color: var(--lightOne);
  font-size: 2.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 1.3;
}

.text-yellow
{
  color: #2b55ff
}

.text-white
{
  color: white
}

.text-black
{
  color: black
}


.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.showcase-area .btn-enter {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  width: 123%;
  transform: translate(15%, 25px);
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkTwo);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.person-bk {
  position: absolute;
  z-index: 0;
  width: 40%;
  top: 5%;
  right: 40%;
  opacity: 0.5;
}

.cab-bk {
  position: absolute;
  z-index: 0;
  width: 40%;
  top: 15%;
  right: 45%;
  opacity: 0.5;
  object-fit: cover;
  object-position: center 90%;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

footer
{
  text-align: center;
  padding-top: 1rem;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-md-6 {
  width: 50%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float: right;
}
.text-sm-center, .text-center {
  text-align:center
} 
.mtb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.app_store_image
{
    width: 213px;
}
.text-start{text-align:left!important}
.text-end{text-align:right!important}
@media screen and (max-width: 870px) {
  .hamburger-menu {
    display: flex;
    display: none;
  }

  .person-bk, .cab-bk
  {
    display: none;
  }
  .logo .icon
  {
    width: 100%;
  }

  .logo 
  {
    margin-inline-start: 0rem;
  }

  .logo .title{
    font-size: 3rem;
    margin-top: -0.5rem;
  }

  .logo .subtitle {
    width: 100%;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links .btn {
    background: none;
  }

  .links .btn-enter {
    background: none;
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 0.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
    margin-top: 0;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .text-big {
    line-height: 1.0em;
    font-size: 1.5rem;
  }


  .person {
    width: 100%;
    transform: none;
  }

  .logo h1 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }

  .logo img {
    margin-right: auto;
    margin-left: auto;
  }

  .cta{
    text-align-last:center;
  }
  .app_store_image {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .app_store_image {
    width: 160px;
  }
}
@media screen and (max-width: 470px) {
  .app_store_image {
    width: 140px;
  }
  .cta{
    text-align-last:right;
  }

  .container {
    padding: 0 1.5rem;
  }

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 1.0rem;
  }
  .showcase-area .btn-enter {
    font-size: 1.0rem;
  }
}
@media screen and (max-width: 340px) {
  .app_store_image {
    width: 90px;
  }
}