/* ========== Colors ========== */
:root {
  --color-white: #ffffff;
  --color-light: #f3f3f4;
  --color-grey: #c8c8c8;
  --color-main: #000b14;
  --color-accent: #05a0cf;
  --color-disabled: #bfbfbf;
  --color-black: #000000;
}

/* ========== Fonts ========== */
@font-face {
  font-family: "RB";
  src: url("../fonts/rb_regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "RB";
  src: url("../fonts/rb_bold.ttf");
  font-weight: 700;
}
/* ========== Initialize setup ========== */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "RB", Helvetica, sans-serif, serif, arial;
  font-weight: 400;
  transition: all 0.25s linear;
}

html {
  font-size: 62.5%;
  direction: rtl;
  scroll-behavior: smooth;
}
@media (max-width: 37.5em) {
  html {
    font-size: 44%;
  }
}

body {
  font-size: 1.4rem;
  color: var(--color-black);
  background-color: var(--color-white);
  font-family: "RB", sans-serif, serif, arial;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
  line-height: 2;
}

::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.5rem rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-grey);
  outline: 1px solid var(--color-grey);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}

:focus {
  outline: none !important;
  box-shadow: none;
}

figure,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}
.js-scroll.scrolled {
  opacity: 1;
}
.js-scroll.scrolled.fade-up {
  -webkit-animation: fade-up 1s ease-in-out both;
          animation: fade-up 1s ease-in-out both;
}
.js-scroll.scrolled.slide-right {
  -webkit-animation: slide-in-right 1s ease-in-out both;
          animation: slide-in-right 1s ease-in-out both;
}

@-webkit-keyframes wave {
  from {
    transform: rotateZ(-2deg);
  }
  to {
    transform: rotateZ(2deg);
  }
}

@keyframes wave {
  from {
    transform: rotateZ(-2deg);
  }
  to {
    transform: rotateZ(2deg);
  }
}
@-webkit-keyframes fading {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}
@keyframes fading {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    transform: translateX(10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ========== Content block styles ========== */
.container {
  padding: 0 5rem;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 85rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 120rem;
  }
}

.sec-block {
  padding: 5rem 0;
}

.title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-black);
}

.subtitle {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-grey);
  margin-top: 1rem;
}

/* ========== Colors styles ========== */
.is-main {
  color: var(--color-main);
}

.is-accent {
  color: var(--color-accent);
}

.is-dimmed {
  color: var(--color-grey);
}

.bg-main {
  background-color: var(--color-main);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-light {
  background-color: var(--color-light) !important;
}

/* ========== Font styles ========== */
.fBold {
  font-weight: 700;
}

.fRegular {
  font-weight: 400;
}

.f14 {
  font-size: 1.4rem;
}

/* ========== SVG styles ========== */
.svg {
  fill: currentColor;
}
.svg-resize-16 {
  width: 1.6rem;
  height: 1.6rem;
}
.svg-resize-35 {
  width: 3.5rem;
  height: 3.5rem;
}

.btn {
  width: 14rem;
  height: 5rem;
  border-radius: 4rem;
  font-size: 1.4rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
}
.btn svg {
  -webkit-margin-end: 0.8rem;
          margin-inline-end: 0.8rem;
}
.btn span {
  font-weight: 700;
  line-height: 1;
}
.btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  width: 16.3rem;
  border-radius: 4rem;
  color: var(--color-accent);
  border-color: var(--color-accent);
  background-color: var(--color-white);
}
.btn-outline:hover, .btn-outline:focus {
  color: var(--color-white);
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.btn-accent {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}
.btn-accent:hover, .btn-accent:focus {
  color: var(--color-white);
  border-color: var(--color-main);
  background-color: var(--color-main);
}

.download-btn {
  color: #2c2460;
  border-color: var(--color-white);
  background-color: var(--color-white);
}
.download-btn:hover, .download-btn:focus {
  color: var(--color-white);
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.navbar {
  padding: 1.5rem 0;
  background-color: var(--color-white);
}
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 0.5rem 1rem rgba(0, 11, 20, 0.07);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  height: 6.6rem;
}
.navbar-brand img {
  height: 100%;
}
.navbar-wrapper {
  display: none;
}
@media only screen and (min-width: 768px) {
  .navbar-wrapper {
    display: block;
    width: 100%;
    max-width: 50rem;
    margin: 0 2rem;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media only screen and (min-width: 992px) {
  .navbar-nav {
    justify-content: space-between;
  }
}
.navbar-nav .nav-link {
  display: block;
  color: var(--color-black);
  font-size: 1.6rem;
  font-weight: 400;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: var(--color-accent);
}
.navbar-nav .nav-link.active {
  font-size: 1.7rem;
  color: var(--color-accent);
  font-weight: 700;
}

.app-btns {
  display: flex;
  align-items: center;
}
.app-btns .btn {
  -webkit-margin-end: 1.8rem;
          margin-inline-end: 1.8rem;
}
.app-btns .btn:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

.grid-2-cols {
  padding: 2.5rem 0;
  display: grid;
  grid-gap: 5rem;
}
@media only screen and (min-width: 768px) {
  .grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-2-cols > div {
  align-self: center;
}

.how-img {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.how-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.how-img::before {
  overflow: hidden;
  content: "";
  position: absolute;
  z-index: -1;
  width: 17.2rem;
  height: 18.6rem;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='172.236' height='186.674' viewBox='0 0 172.236 186.674'%3E%3Cpath id='Path_4' data-name='Path 4' d='M138.737,523.874a93.337,93.337,0,1,1,76.208-147.182,14.565,14.565,0,1,1-23.79,16.812,64.209,64.209,0,1,0-.476,74.781,14.529,14.529,0,1,1,23.473,17.129A93.133,93.133,0,0,1,138.737,523.874Z' transform='translate(-45.4 -337.2)' fill='%2305a0cf'/%3E%3C/svg%3E%0A");
  top: 7rem;
  left: -1rem;
  -webkit-animation: fading 3s linear infinite alternate;
          animation: fading 3s linear infinite alternate;
}
.how-2 {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .how-2 {
    display: grid;
    flex-direction: unset;
    align-items: unset;
  }
}
.how-content__title {
  font-weight: 700;
  font-size: 2.2rem;
}
.how-content__title span {
  font-weight: 700;
}
.how-content__text {
  color: var(--color-grey);
  margin-top: 3rem;
}
.how-content .btn {
  margin-top: 2rem;
}

.services {
  margin: 5rem 0 2rem 0;
  display: grid;
  grid-gap: 5rem;
}
@media only screen and (min-width: 768px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services .service-item__icon {
  display: grid;
  place-items: center;
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 100%;
  background-color: var(--color-white);
}
.services .service-item__title {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 1rem 0;
}
.services .service-item:hover, .services .service-item:focus {
  transform: translateY(-1rem);
}
.services .service-item:hover .service-item__icon, .services .service-item:focus .service-item__icon {
  box-shadow: 0 0 2rem rgba(0, 11, 20, 0.1);
}

.owl-stage {
  padding: 8rem 0;
}
.owl-item {
  max-width: 25rem;
  border-radius: 2.5rem;
  box-shadow: 0 0.3rem 5rem rgba(0, 0, 0, 0.3);
}
.owl-item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.owl-item.center {
  transform: scale(1.125);
}
.owl-dots {
  display: none;
}
.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-nav button {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 100%;
  background-color: #f3f3f3;
  border: none;
  display: grid;
  place-items: center;
  margin: 0 0.5rem;
}
.owl-nav button .svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--color-accent);
}
.owl-nav button:hover, .owl-nav button:focus {
  background-color: var(--color-accent);
}
.owl-nav button:hover .svg, .owl-nav button:focus .svg {
  fill: var(--color-white);
}

@media screen and (min-width: 768px) {
  header .bg-main {
    border-radius: 4rem;
  }
}
header .header-wrapper {
  position: relative;
  z-index: 0;
  color: rgba(255, 255, 255, 0.7);
}
header .header-wrapper .header-content {
  padding: 10rem 0;
  max-width: 50rem;
  width: 100%;
}
header .header-wrapper .title {
  text-align: start;
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}
header .app-btns {
  margin-top: 2.5rem;
}
header .header-img {
  position: absolute;
  z-index: -1;
  height: 60rem;
  bottom: -13.5rem;
  width: auto;
  -webkit-clip-path: inset(0rem 0 13.5rem 0rem);
          clip-path: inset(0rem 0 13.5rem 0rem);
  opacity: 0.15 !important;
}
@media screen and (min-width: 450px) {
  header .header-img {
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  header .header-img {
    opacity: 1 !important;
  }
}
header .header-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: bottom;
}

.inner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 25rem;
    margin-bottom: 2rem;
}

.inner-header .title{
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
}

footer #download {
  position: relative;
  z-index: 0;
  text-align: center;
}
footer #download::before {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: -12rem;
  width: 25.6rem;
  height: 27.7rem;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='255.528' height='276.948' viewBox='0 0 255.528 276.948'%3E%3Cpath id='Path_4' data-name='Path 4' d='M183.874,614.148c-76.355,0-138.474-62.119-138.474-138.474S107.519,337.2,183.874,337.2a138.6,138.6,0,0,1,113.062,58.59,21.609,21.609,0,1,1-35.3,24.942,95.26,95.26,0,1,0-.706,110.944,21.555,21.555,0,1,1,34.824,25.412A138.172,138.172,0,0,1,183.874,614.148Z' transform='translate(-45.4 -337.2)' fill='%23fff'/%3E%3C/svg%3E%0A");
  transform-origin: center;
  -webkit-animation: fading 3s linear infinite alternate;
          animation: fading 3s linear infinite alternate;
}
footer #download .title {
  color: var(--color-white);
}
footer #download .subtitle {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: var(--color-white);
}
footer #download .app-btns {
  margin-top: 4rem;
  justify-content: center;
}
footer #download .app-btns .download-btn:hover,
footer #download .app-btns .download-btn:focus {
  border-color: var(--color-main);
  background-color: var(--color-main);
}

.footer {
  text-align: center;
}
.footer .container {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.footer .logo {
  width: 8.5rem;
  height: 10.4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
}
.social-link {
  display: grid;
  place-items: center;
  margin: 0 0.3rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
}
.social-link:hover, .social-link:focus {
  transform: translateY(-0.5rem);
  box-shadow: 0 0 1rem rgba(0, 11, 20, 0.25);
}
.social-link:hover .svg, .social-link:focus .svg {
  transform: rotate(360deg);
}

.contacts {
  padding: 9rem 0;
  border-bottom: 1px solid #e4e4e4;
}
.contacts-grid {
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}
@media (min-width: 992px) {
  .contacts-grid {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }
}
.contacts-grid .title {
  text-align: start;
  font-size: 3rem;
}
.contacts-grid .contact-item {
  display: flex;
  align-items: flex-start;
}
.contacts-grid .contact-item .svg {
  margin-top: 2rem;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  -webkit-margin-end: 1.8rem;
          margin-inline-end: 1.8rem;
}
.contacts-grid .contact-details {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  font-size: 1.8rem;
  font-style: normal;
}

.copyrights {
  border-top: 1px solid #e4e4e4;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyrights img {
  margin: 0 0.5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.static-container {
    padding: 5rem 0;
}

.static-content {
    color: var(--color-main);
    border: 1px solid #f7f7f7;
    padding: 5rem;
}
