:root {
  --primary: #7861A9;
  --secondary: #39276C;
  --filterPrimary: invert(43%) sepia(12%) saturate(2101%) hue-rotate(218deg) brightness(91%) contrast(82%);
  --filterSecondary: invert(19%) sepia(64%) saturate(1028%) hue-rotate(224deg) brightness(87%) contrast(101%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  direction: rtl;
  overflow-x: hidden;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #030A19;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@-webkit-keyframes floating_y2 {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes floating_y2 {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@-webkit-keyframes floating_x2 {
  0% {
    -webkit-transform: rotate(15deg) translateX(5px);
            transform: rotate(15deg) translateX(5px);
  }
  100% {
    -webkit-transform: rotate(10deg) translateX(-5px);
            transform: rotate(10deg) translateX(-5px);
  }
}

@keyframes floating_x2 {
  0% {
    -webkit-transform: rotate(15deg) translateX(5px);
            transform: rotate(15deg) translateX(5px);
  }
  100% {
    -webkit-transform: rotate(10deg) translateX(-5px);
            transform: rotate(10deg) translateX(-5px);
  }
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 0px;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 5%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 5%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .7rem 1.5rem;
  border-radius: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.white_butn {
  background-color: #fff;
}

.butn.dark_butn {
  background-color: #555;
}

.butn:hover {
  background-color: #342362;
  border: 1px solid #342362;
  color: #fff !important;
}

.butn:hover i {
  animation: floatingX .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.download_app2 .butn {
  -webkit-box-shadow: 3px 6px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 3px 6px 10px 0 rgba(0, 0, 0, 0.1);
}

.download_app2 .butn .down_img {
  width: 25px;
  height: 25px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.download_app2 .butn:hover small {
  color: #ccc;
}

.download_app2 .butn:hover p {
  color: #fff;
}

/* submit_butn */
.down_butn {
  position: relative;
  background-color: transparent;
  border: solid 1px var(--primary) !important;
  color: var(--primary);
  width: 150px;
  height: 45.4px;
  font-size: 13px;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.down_butn:focus {
  outline: none;
}

.down_butn::-moz-focus-inner {
  border: none;
  outline: none;
}

.down_butn:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary);
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.down_butn:after {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 8px;
  border-left: solid 5px white;
  border-bottom: solid 5px white;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.circle {
  -webkit-animation-delay: 500ms, 3000ms;
          animation-delay: 500ms, 3000ms;
  -webkit-animation-duration: 300ms, 800ms;
          animation-duration: 300ms, 800ms;
  -webkit-animation-timing-function: ease-out, ease-in;
          animation-timing-function: ease-out, ease-in;
  -webkit-animation-fill-mode: forwards, forwards;
          animation-fill-mode: forwards, forwards;
  -webkit-animation-name: circle, button_grow;
          animation-name: circle, button_grow;
}

.circle:before {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
  -webkit-animation-duration: 2500ms;
          animation-duration: 2500ms;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: grow;
          animation-name: grow;
}

.circle:after {
  -webkit-animation-delay: 4500ms;
          animation-delay: 4500ms;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: check;
          animation-name: check;
}

.click {
  -webkit-animation-delay: 0s, 600ms;
          animation-delay: 0s, 600ms;
  -webkit-animation-duration: 300ms, 100ms;
          animation-duration: 300ms, 100ms;
  -webkit-animation-timing-function: ease-in-out, linear;
          animation-timing-function: ease-in-out, linear;
  -webkit-animation-fill-mode: none, forwards;
          animation-fill-mode: none, forwards;
  -webkit-animation-name: bounce, disapear;
          animation-name: bounce, disapear;
}

@-webkit-keyframes bounce {
  30% {
    font-size: 20px;
  }
}

@keyframes bounce {
  30% {
    font-size: 20px;
  }
}

@-webkit-keyframes circle {
  100% {
    width: 45.4px;
    border: solid 3px #ccc;
  }
}

@keyframes circle {
  100% {
    width: 45.4px;
    border: solid 3px #ccc;
  }
}

@-webkit-keyframes disapear {
  100% {
    opacity: 0;
  }
}

@keyframes disapear {
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes grow {
  99.9% {
    width: 45.4px;
    height: 45.4px;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes grow {
  99.9% {
    width: 45.4px;
    height: 45.4px;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes button_grow {
  0% {
    border: solid 1px var(--secondary);
    background-color: var(--secondary);
    width: 45.4px;
  }
  100% {
    border: solid 1px var(--secondary);
    background-color: var(--secondary);
    width: 150px;
  }
}

@keyframes button_grow {
  0% {
    border: solid 1px var(--secondary);
    background-color: var(--secondary);
    width: 45.4px;
  }
  100% {
    border: solid 1px var(--secondary);
    background-color: var(--secondary);
    width: 150px;
  }
}

@-webkit-keyframes check {
  25% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.3) rotate(-45deg);
            transform: scale(1.3) rotate(-45deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-45deg);
            transform: scale(1) rotate(-45deg);
  }
}

@keyframes check {
  25% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.3) rotate(-45deg);
            transform: scale(1.3) rotate(-45deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-45deg);
            transform: scale(1) rotate(-45deg);
  }
}

/* submit_butn */
.submit_butn {
  font-size: 14px;
  font-weight: bold;
  overflow: visible;
  border-radius: 15px;
  position: relative;
  padding-right: 30px;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  display: block;
  margin: 0 auto;
  height: 60px;
  width: 170px;
  cursor: pointer;
}

.submit_butn svg {
  position: absolute;
  top: 15px;
  right: 40px;
  height: 25px;
  width: auto;
  -webkit-transition: -webkit-transform .15s;
  transition: -webkit-transform .15s;
  transition: transform .15s;
  transition: transform .15s, -webkit-transform .15s;
}

.submit_butn svg path {
  fill: #eee;
}

.submit_butn:hover {
  background-color: #190f34;
}

.submit_butn:hover svg {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: -webkit-transform .15s;
  transition: -webkit-transform .15s;
  transition: transform .15s;
  transition: transform .15s, -webkit-transform .15s;
}

.submit_butn.clicked {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  color: #fff;
  padding-right: 6px;
  -webkit-animation: bounce-in .3s;
          animation: bounce-in .3s;
  cursor: default;
}

.submit_butn.clicked svg {
  -webkit-animation: flyaway 1.3s linear;
          animation: flyaway 1.3s linear;
  top: -80px;
  right: -1000px;
}

.submit_butn.clicked svg path {
  fill: var(--primary);
}

@-webkit-keyframes flyaway {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    top: 13px;
    right: 25px;
    height: 30px;
  }
  5% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    top: 13px;
    right: 0px;
    height: 30px;
  }
  20% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    top: 13px;
    right: -130px;
    height: 45px;
  }
  40% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    top: -40px;
    right: -280px;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    top: -200px;
    right: -1000px;
    height: 0;
    opacity: 0;
  }
}

@keyframes flyaway {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    top: 13px;
    right: 25px;
    height: 30px;
  }
  5% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    top: 13px;
    right: 0px;
    height: 30px;
  }
  20% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    top: 13px;
    right: -130px;
    height: 45px;
  }
  40% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    top: -40px;
    right: -280px;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    top: -200px;
    right: -1000px;
    height: 0;
    opacity: 0;
  }
}

@-webkit-keyframes bounce-in {
  0% {
    padding-right: 30px;
  }
  40% {
    padding-right: 6px;
  }
  50% {
    padding-left: 30px;
  }
  100% {
    padding-left: 6px;
  }
}

@keyframes bounce-in {
  0% {
    padding-right: 30px;
  }
  40% {
    padding-right: 6px;
  }
  50% {
    padding-left: 30px;
  }
  100% {
    padding-left: 6px;
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar.navbar-fixed-top {
  background-color: #FAF9FC;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.navs-container .navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: -20px;
  opacity: .99;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-box-shadow: 3px 10px 30px #0002;
          box-shadow: 3px 10px 30px #0002;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.navs-container .navbar.navbar-fixed-top.scrolled .logo {
  width: 80px;
}

.navs-container .navbar.navbar-fixed-top.scrolled .text-white {
  color: unset !important;
}

.navs-container .navbar .logo {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  position: relative;
  margin: 0 10px;
}

.navs-container .navbar .nav-link.active {
  font-weight: bold;
  color: var(--primary);
}

.navs-container .navbar .nav-link:hover {
  color: var(--secondary) !important;
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background-color: #fff;
}

.footer .content {
  margin-bottom: 25px;
}

.footer .content .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .content .social_links a {
  width: 40px;
  height: 40px;
  color: #888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 14px;
}

.footer .content .social_links a:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff !important;
}

.footer .content .links a {
  display: block;
  margin: 20px 0;
  font-size: 14px;
  color: #888;
}

.footer .content .links a:hover {
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
  font-weight: bold;
}

.footer .foot {
  background: #EBE8F2 !important;
  padding: 20px 0;
}

.footer .foot .foot_links a {
  margin: 0 5px;
  font-size: 12px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
  overflow: hidden;
  background-color: #FAF9FC;
}

.header .text-box .title {
  font-size: calc(1.8vw + 35px);
}

.header .img-box {
  height: 600px;
  position: relative;
  width: 85%;
  display: block;
  margin: auto;
}

.header .img-box .img-1 {
  border-radius: 50px;
  width: 70%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: auto;
  -webkit-box-shadow: 38px -12px 99px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 38px -12px 99px 0 rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  position: relative;
  height: 100%;
  -o-object-position: top;
     object-position: top;
  animation: floating_y2 2s both infinite alternate-reverse;
}

.header .img-box .img-2 {
  -webkit-box-shadow: 65px -87px 99px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 65px -87px 99px 0 rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  position: absolute;
  z-index: -1;
  top: -50px;
  border-radius: 50px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  width: 70%;
  right: 50px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  animation: floating_x2 2s both infinite alternate-reverse;
}

.header .shape {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: -70%;
  right: -51%;
  width: 100%;
  object-fit: contain;
  opacity: .1;
}

.download_app .down_img {
  width: 150px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  -webkit-box-shadow: -10px 6px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: -10px 6px 15px 0 rgba(0, 0, 0, 0.1);
}

.download_app .down_img:hover {
  animation: pulse 1s infinite alternate-reverse;
}

.provide-sec .service_card {
  background-color: #FCF9F9;
  padding: 30px 20px;
  margin-bottom: 25px;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.06);
}

.provide-sec .service_card .title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.provide-sec .service_card .title .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.provide-sec .service_card .det {
  margin-bottom: 0;
  font-size: 13px;
}

.provide-sec .service_card:hover .title {
  color: var(--primary);
}

.provide-sec .service_card:hover .icon {
  animation: pulse 1s infinite alternate-reverse;
}

.provide-sec .sec-img {
  height: 590px;
  width: 300px;
  border-radius: 50px;
  display: block;
  margin: auto;
  -webkit-box-shadow: 38px -12px 100px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 38px -12px 100px 0 rgba(0, 0, 0, 0.05);
}

.provide-sec .shape {
  position: absolute;
  left: -55%;
  height: 100%;
  top: 0;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.downloading-sec .inner {
  background-color: var(--primary);
  border-radius: 55px;
}

.downloading-sec .inner .img-box {
  position: relative;
  height: 350px;
}

.downloading-sec .inner .img-box .sec-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.downloading-sec .inner .img-box .screen {
  -webkit-animation: heartbeat 5s ease-in-out infinite both;
          animation: heartbeat 5s ease-in-out infinite both;
  height: 335px;
  position: absolute;
  left: 41.5%;
  top: 6px;
}

.downloading-sec .inner .statics_item {
  text-align: center;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

.downloading-sec .inner .statics_item .icon-box {
  width: 100px;
  height: 82px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.downloading-sec .inner .statics_item .icon-box .num {
  font-weight: bold;
  font-size: .9rem;
  position: relative;
  top: 7px;
}

.downloading-sec .inner .statics_item .label {
  font-size: .9rem;
  font-weight: 500;
  margin-top: 10px;
}

.downloading-sec .inner .pattern {
  position: absolute;
  top: 60px;
  left: -4%;
  animation: heartbeat 1.5s ease-in-out infinite alternate-reverse both;
}

.features-sec .feature_card {
  position: relative;
  text-align: center;
  padding: 50px 30px;
  margin: 10px 0;
  border-radius: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border: 1px solid transparent;
}

.features-sec .feature_card .icon {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.features-sec .feature_card .p {
  font-size: 14px;
  color: #888;
}

.features-sec .feature_card:hover {
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
}

.features-sec .feature_card:hover .icon {
  animation: pulse 1s infinite alternate-reverse;
}

.features-sec .feature_card:hover .title {
  color: var(--primary);
}

.methodology-sec .method_card {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.methodology-sec .method_card .icon_box {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F5F4F7;
  border: 3px solid #E0DBEB;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.methodology-sec .method_card .icon_box .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.methodology-sec .method_card .title {
  font-size: 1.1rem;
}

.methodology-sec .method_card::after {
  content: '';
  width: 1px;
  height: 50px;
  border: 0.2px dashed #ddd;
  position: absolute;
}

.methodology-sec .method_card:nth-child(3)::after {
  display: none;
}

.methodology-sec .method_img {
  position: absolute;
  left: -15%;
  bottom: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 65%;
}

.feedback-sec .inner {
  padding: 50px 0;
  background-color: var(--primary);
  border-radius: 55px;
}

.feedback-sec .inner .quote_icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.feedback-sec .inner .item {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feedback-sec .inner .item .feedback_img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px auto;
  opacity: .5;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.feedback-sec .inner .item .content {
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.feedback-sec .inner .feedback_p {
  font-size: 17px;
  text-align: center;
}

.feedback-sec .inner .swiper-slide-active .feedback_img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.feedback-sec .inner .swiper-slide-active .content {
  opacity: 1;
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}

.feedback-sec .inner .swiper-container .swiper-pagination .swiper-pagination-bullet {
  color: #fff;
}

.feedback-sec .inner .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
}

.feedback-sec .inner .pattern {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.contact-sec .contact-box {
  padding: 0 4vw;
}

.contact-sec .contact-box .contact_card {
  background-color: #F9F9FF;
  border-radius: 20px;
  -webkit-box-shadow: 0 50px 75px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 50px 75px 0 rgba(0, 0, 0, 0.05);
  padding: 25px 30px;
  position: relative;
  margin-bottom: 20px;
}

.contact-sec .contact-box .contact_card .icon_box {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  background-color: #7861A9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 35px;
          margin-inline-end: 35px;
}

.contact-sec .contact-box .contact_card .icon_box .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .contact-box .contact_card .data {
  color: #9C9CA8;
}

.contact-sec .contact-box .contact_card::before {
  content: '';
  width: 100px;
  height: 45px;
  background: url(../images/pattern-3.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 50px;
  top: 50px;
}

.contact-sec .contact-box .contact_card:hover .label {
  color: var(--primary);
}

.contact-sec .contact-box .contact_card:hover .icon {
  animation: pulse 1s infinite alternate-reverse;
}

.contact-sec .form-control {
  border-radius: 20px;
}

.contact-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#F2F4FF));
  background-image: linear-gradient(to bottom, #fff, #F2F4FF);
  width: 48%;
  right: unset;
}

.newsletter-sec .form-group .form-control {
  background-color: #f8f8f8;
  border: 1px solid #fff !important;
  -webkit-box-shadow: 10px 25px 45px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 25px 45px 0 rgba(0, 0, 0, 0.1);
}

.newsletter-sec .form-group .form-control:focus {
  border: 1px solid var(--primary) !important;
}

.newsletter-sec .form-group .butn {
  position: absolute;
  left: 5px;
  top: 5px;
}
/*# sourceMappingURL=style.css.map */