:root {
  --primary-color: #1C462E;
  --secondary-color: #EBE9FE;
}

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

body {
  scroll-snap-type: y mandatory;
}

section {
  scroll-snap-align: start;
}

p {
  margin-bottom: 0;
}

.apple {
  margin: 0 25px;
}
.apple:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
}

.g-play:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
}

.text-arabic {
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
}

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

.small-logo {
  width: 50px;
  height: 50px;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.wh-100 {
  width: 100px;
  height: 100px;
}

.text-justify {
  text-align: justify;
}

.links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.links a {
  text-decoration: none;
  color: #fff;
}
.links [nav-download] {
  display: none;
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.nav-link:hover::after {
  width: 40%;
}

.nav-link.active::after {
  width: 40%;
}

.nav-bar {
  transition: background-color 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #3A3546;
  align-items: center;
  height: 80px;
}

.scrolled {
  background-color: #fff;
  box-shadow: 3px 3px 3px #ccc;
  border-bottom: 0 !important;
}
.scrolled .nav-link::after {
  background-color: var(--primary-color);
}
.scrolled .links a {
  color: var(--primary-color);
}

.hero {
  position: relative;
  height: 950px;
  overflow-y: hidden;
  overflow-x: hidden;
  border-radius: 0 0 50px 50px;
}
.hero .hero-text {
  position: absolute;
  z-index: 10;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
}
.hero .hero-img {
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.hero .hero-phones {
  position: absolute;
  z-index: 10;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
  margin-left: 30px;
}
.logo-link img {
  width: 50px;
}

.b2 {
  border: 2px solid #e9e7fe;
}

.app {
  border: 2px solid #e9e7fe;
  position: relative;
}
.app .arrow {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 5px;
}

.pro {
  border: 2px solid #e9e7fe;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 15px 25px 15px 5px;
  border-radius: 15px;
  color: #18191f;
  margin: 15px 0;
  background-color: #fff;
}
.pro span {
  background-color: var(--secondary-color);
  border-radius: 5px;
  padding: 5px 7px;
  margin-left: 10px;
}

.sec-2 {
  position: relative;
  overflow: hidden;
}
.sec-2::after {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #EBE9FE;
  z-index: -1;
  top: 0;
  left: -200px;
}
.sec-2::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #EBE9FE;
  z-index: -1;
  width: 250px;
  height: 250px;
  bottom: 0;
  right: -100px;
}

.pros-header {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
}
.pros-header::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  top: 3px;
  right: -10px;
}

.sec-3 {
  background: url("/assets/images/sec-3-bg.svg") no-repeat center center/cover;
  max-height: 1000px;
  position: relative;
}
.sec-3 .sec-3-img {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
}

.solution {
  width: 50%;
  padding-right: 10px;
  margin: 60px 0;
}
.solution p {
  color: rgba(255, 255, 255, 0.7);
}

.sec-solution {
  width: 100%;
}

.go-back {
  margin-right: -40px;
}

.s-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer {
  background-color: #080217;
  color: #fff;
}
footer hr {
  width: 95%;
  margin: 0px auto;
}

.footer-links {
  padding: 50px 0;
}
.footer-links .w-fit {
  margin-right: 20px;
}

.rights {
  text-align: center;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.7);
}/*# sourceMappingURL=main.css.map */