/* ------------------------------------------ */
/*         General & Basic Styles
/* ------------------------------------------ */
body {
  direction: rtl;
  font-family: "Helvetic-Roman";
  color: #000;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

input,
textarea,
button,
select {
  outline: none;
  border: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.overflow-h {
  overflow: hidden;
}

/* ------------------------------------------ */
/*         Header
/* ------------------------------------------ */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header.fixed {
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.header .content .logo {
  display: block;
  width: 150px;
  max-width: 100%;
}
.header .content p {
  font-size: 22px;
  font-family: "Helvetic-Bold";
}
.header .content a {
  color: #000;
  font-weight: 700;
}

/* ------------------------------------------ */
/*         Footer
/* ------------------------------------------ */
.footer {
  background: linear-gradient(360deg, rgb(41, 50, 70) 0%, rgb(33, 38, 52) 100%);
  padding: 40px 0;
}
.footer .copyright {
  font-size: 16px;
  font-family: "Helvetic-Bold";
  text-align: center;
  color: #fff;
}

/* ------------------------------------------ */
/*         Home Page
/* ------------------------------------------ */
.home-page .introduction-section .content {
  padding: 180px 0 50px;
}
.home-page .introduction-section .content > div {
  background-color: #F8F8F8;
  border: 1px solid #EBEBEB;
  padding: 10px 20px;
}
.home-page .introduction-section .content > div.box-ar {
  text-align: right;
}
.home-page .introduction-section .content > div.box-ar ul {
  padding-right: 20px;
}
.home-page .introduction-section .content > div.box-en {
  text-align: left;
  direction: ltr;
}
.home-page .introduction-section .content > div.box-en ul {
  padding-left: 30px;
}
.home-page .introduction-section .content > div p,
.home-page .introduction-section .content > div ul li {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.home-page .introduction-section .content > div ul {
  list-style: decimal;
}
.home-page .introduction-section .content > div ul li ol {
  list-style: disc;
}
.home-page .videos-section {
  background-color: #F1F1F1;
  padding: 30px 0;
  text-align: center;
}
.home-page .videos-section .title {
  font-size: 50px;
  font-family: "Helvetic-Bold";
  margin-bottom: 55px;
}
.home-page .videos-section .soon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-family: "Helvetic-Bold";
  color: #fff;
}
.home-page .videos-section .videos {
  margin-top: 100px;
}
.home-page .videos-section .videos .box {
  height: 575px;
  overflow: hidden;
  background-color: #4ACED8;
  padding: 20px;
}
.home-page .videos-section .videos .box video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .download-app {
  background-color: #E1E1E1;
  position: relative;
  overflow: hidden;
  background-image: url("../images/Intersection.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
}
.home-page .download-app .text {
  padding: 75px 0;
  position: relative;
  z-index: 1;
}
.home-page .download-app .text p {
  font-size: 40px;
  font-family: "Helvetic-Bold";
  line-height: 70px;
  margin-bottom: 25px;
  text-align: center;
}
.home-page .download-app .text .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}/*# sourceMappingURL=style-rtl.css.map */