:root {
  --whiteColor: #fff;
  --darkblueColor: #0a142f;
  --primary1: #1d5375;
  --primary2: #2f6c89;
  --primary3: #184157;
  --lightGray: #efefef;
  --lightBlue: rgba(204, 229, 242, 0.412);
  --aTagsColor: #465567;
  --active: #4386ad;
  --regularFontColor: #1b1f28;
}

/* eslam */
/* nav */
.navbar-nav li a {
  color: var(--aTagsColor);
  font-size: 18px;
  font-weight: 500;
  padding: 18px;
  text-decoration: none;
  position: relative;
  display: flex;
}

.navbar-nav li a i {
  font-size: 20px;
}

.navbar-nav li a:hover,
.navbar-nav li a.active_nav,
.nav-item.active a {
  color: #25B4E5;
}

ul.dropdown-menu {
  background: white;
  position: absolute;
  top: 100%;
  margin-top: -1px;
  border-radius: 0;
  z-index: 9999;
  padding: 0 0;
  transform: none !important;
  border: none;
  min-width: 240px;
}

.navbar-nav ul.dropdown-menu a {
  font-size: 18px;
  padding: 12px 15px;
  display: block;
  line-height: 34px;
  color: var(--whiteColor);
  margin: 0;
  border-bottom: 1px solid #222;
}

.navbar-nav ul.dropdown-menu a:hover {
  color: #ccc;
  border-color: #111;
}

.navbar-toggler {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-light .navbar-toggler {
  border: none;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  margin: 0 auto;
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 8px;
}

.navbar-toggler .open .icon-bar:first-of-type {
  transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
  -webkit-transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0;
}

.navbar-toggler .open .icon-bar:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler .open .icon-bar:nth-of-type(3) {
  transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
  -webkit-transition: top 0.25s ease 0s, transform 0.25s ease 0.3s;
  -webkit-transform: translate(-1px, 3px) rotate(-45deg);
  -ms-transform: translate(-1px, 3px) rotate(-45deg);
  transform: translate(-1px, 3px) rotate(-45deg);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

.navbar-toggler .icon-bar:first-of-type,
.navbar-toggler .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggler .icon-bar:nth-of-type(2) {
  opacity: 1;
}

.navbar-toggler .icon-bar,
.navbar-toggler .open .icon-bar {
  background: var(--whiteColor);
}

.navbar-area {
  padding: 25px 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* .navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(49, 49, 49, 0.9) !important;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: 0.6s;
  transition: 0.6s;
} */

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.top_logo a img {
  display: block;
  margin: 0 auto;
  height: 61.7px;
}

.default-btn {
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  color: #fff;
  background: #25B4E5;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  border-radius: 6px;
  padding: 10px 55px;
  padding-bottom: 15px;
  font-weight: 400;
  font-size: 19px;
}

.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #1785aa;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}

.default-btn:hover {
  color: #fff;
}

.default-btn i {
  margin-top: 5px;
  padding-left: 5px;
}

.default-btn:hover span {
  width: 225%;
  height: 562.5px;
}

.default-btn:focus {
  color: #fff;
}

.footer h2 {
  font-size: 52.43px;
  font-weight: 700;
  line-height: 77.07px;
  text-align: center;
}

.video-background-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.video-background-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-background-wrapper span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.video-background-wrapper a.arrow {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 9;
  width: 40px;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@keyframes bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

/* -----Hero-------- */
.hero-body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1em 0;
}

.shapes {
  position: relative;
}

.shapes:before {
  content: '';
  position: absolute;
  top: -48%;
  left: 56%;
  background: url(../images/shape-r.svg) no-repeat center;
  width: 119px;
  height: 128px;
  background-size: contain;
}

.shapes:after {
  content: '';
  position: absolute;
  bottom: -29%;
  left: 20%;
  background: url(../images/shape-l.svg) no-repeat center;
  width: 61px;
  height: 61px;
}

.hero-title {
  color: #333;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.hero-desc {
  color: #555;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 29.4px; 
  text-transform: capitalize;
}

.download-app {
  display: flex;
  flex-direction: row;
}

.apple a,
.google a {
  padding: 11.85px 17px;
  border: 1px solid black;
  border-radius: 8.49px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: fit-content;
}

.apple a:hover,
.google a:hover {
  background: #eafaff;
}

.apple a p,
.google a p {
  margin: 0;
  padding: 0;
  font-size: 20.05px;
  font-weight: 400;
  line-height: 31.19px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: black;
  padding-left: 11px;
}

.left-hero-body {
  position: relative;
  text-align: end;
}

.circle {
  position: relative;
  display: inline-block;
  /* Ensures `.circle` behaves as a block */
}

.mobiles {
  position: absolute;
  z-index: 10;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Centers it horizontally and vertically */
}

.mobiles img {
  width: 100%;
  /* Maintain original proportions */
}

.icon-up {
  position: absolute;
  top: -95px;
  margin-left: 75px;
  left: 50%;

  transform: translateX(-50%);
  z-index: 2;
}

.icon-down {
  position: absolute;
  bottom: -66px;
  right: 50%;
  transform: translateX(-50%);
  z-index: 12;
}

.separator {
  width: 100%;
}

.separator img {
  width: 100%;
}

/* -------------advantages------ */
.advantages-title {
  color: #316B86;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50.4px; 
  text-transform: capitalize;
  margin-bottom: 1.2em;
}

.active-span {
  color: #25B4E5;
  font-size: 18.9px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.4px;
  text-transform: uppercase;
  display: block;
}

.advantages-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #3e3f66;
  padding-top: 20px;
  max-width: 640px;
  margin: auto;
  text-align: center;
}

.advantage-point {
  margin-bottom: 1.5em;
}

.advantages-body {
  padding: 110px 0px;
  box-shadow: 0px 4px 30px 0px #ede9fe;
  margin-top: 194px;
  position: relative;
  padding-bottom: 145px;
  border-radius: 30px;
}

.advantage-point-title {
  color: #000;
  font-size: 18.9px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.4px;
  text-transform: capitalize;
}

.advantage-point-desc {
  color: #666;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.advantage-point-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1;
  overflow: hidden;
}

.advantage-point-img video {
  overflow: hidden;
  height: 658px;
  box-shadow: 0px 9px 30.5px 0px rgba(0, 0, 0, 0.18);
}

.advantage-point-container.top-right {
  padding-bottom: 110px;
}

.advantages-right {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.advantages-left {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.advantage-point-container.top-left {
  padding-bottom: 110px;
}

.advantage-point-container {
  max-width: 278px;
}

/* desc */
.section-desc {
  /* background: linear-gradient(
    206.89deg,
    #ffffff 42.2%,
    rgba(204, 229, 242, 0.41) 86.97%
  ); */
  padding: 100px 0;
  padding-bottom: 0px;
}

.section-desc h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50.99px;
  color: rgba(26, 26, 26, 1);
  margin-bottom: 0.6em;
  max-width: 600px;
}

.desc-h2-span {
  color: #626EFC;
}

.section-desc h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 47.04px;
  color: rgba(32, 25, 40, 1);
  margin-top: 18px;
}

.section-desc h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 31.32px;
  color: var(--darkblueColor);
}

.section-desc h5 {
  font-weight: 500;
  font-size: 24px;
  leading-trim: Cap height;
  line-height: 40px;
  letter-spacing: 0%;
  color: rgba(27, 31, 40, 1);
  margin: 0;
}

.section-desc p {
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0%;
  color: rgba(27, 31, 40, 1);
  margin: 0;
}

.desc-p-span {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0%;
}

.section-desc p.colored {
  color: var(--primary2);
  margin-top: 15px;
}

.timeline-shape img {
  display: inline-block;
}

.righter {
  text-align: left;
}

.section-desc .timeline-shape h5 {
  font-size: 24px;
  margin: 0;
}

.blocke {
  margin-bottom: 2em;
  position: relative;
}

.blocke.block-right {
  text-align: left;
}

.blocke.block-left {
  margin-top: 3em;
}

.time-line-points {
  height: 83%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 3em;
}

.time-line-points span {
  position: relative;
}

.time-line-points span em {
  font-style: normal;
  width: 100px;
  height: 100px;
  line-height: 77px;
  display: block;
  background: url(../images/icons/timeline-icon.png) center;
  border-radius: 50%;
  font-size: 31.47px;
  font-weight: 700;
  text-align: center;
  color: var(--whiteColor);
  position: relative;
  z-index: 1;
}

.time-line-points span:after {
  content: "";
  position: absolute;
  top: 75%;
  left: 50%;
  width: 4px;
  height: 230px;
  background-color: #97b0c0;
  transform: translateX(-50%);
  z-index: 0;
}

.time-line-points span:last-child:after {
  display: none;
}

/* help */
.section-help {
  padding: 100px 0;
  padding-top: 0px;
}

.section-help h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50.99px;
  text-align: center;
  color: var(--primary1);
}

.section-help h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 25.18px;
  text-align: center;
  color: var(--primary2);
}

.section-help p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30.11px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #585858;
}

.section-help .row .col-lg-4 {
  text-align: center;
  margin-bottom: 3em;
}

.section-help .row .col-lg-4 img {
  border-radius: 17.71px;
  padding: 20px;
  background: var(--primary2);
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}

.section-help .row .col-lg-4:nth-child(1) img {
  background: #626EFC;
}

.section-help .row .col-lg-4:nth-child(2) img {
  background: #A16DFF;
}

.section-help .row .col-lg-4:nth-child(3) img {
  background: #DDBFFF;
}

.section-help .row .col-lg-4:nth-child(4) img {
  background: #BFE4FF;
}

.section-help .row .col-lg-4:nth-child(5) img {
  background: #626EFC;
}

.section-help .row .col-lg-4:hover img {
  background: var(--primary2);
}

/* download */
.section-download {
  padding: 66px;
  border-radius: 9.892px;
  background-color: #3B5164;
  background-image: url(../images/left-back.png) , url(../images/right-back.png) ;
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
}

.d-flexe img {
  background: url(../images/down-shadow.png) no-repeat center;
  background-size: contain;
}

.section-download .main-block {
  background: linear-gradient(0deg, #184157, #184157),
    linear-gradient(225deg, #2f6c89 15.68%, #184157 84.32%);
  padding: 100px 100px 140px;
  border-radius: 30.54px;
}

.section-download .download-app {
  display: flex;
  flex-direction: row;
  padding-top: 45px;
}

.apple {
  padding-left: 22px;
}

.apple a,
.google a {
  padding: 11.85px 17px;
  border: 1px solid black;
  border-radius: 8.49px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: fit-content;
}

.apple a p,
.google a p {
  margin: 0;
  padding: 0;
  font-size: 20.05px;
  font-weight: 400;
  line-height: 31.19px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: black;
  padding-left: 11px;
}

.section-download .apple a,
.section-download .google a {
  background: var(--whiteColor);
}

.section-download .apple a:hover,
.section-download .google a:hover {
  opacity: 0.8;
}

.section-download h2 {
  font-size: 40.72px;
  font-weight: 700;
  line-height: 59.85px;
  color: var(--whiteColor);
  margin-bottom: 30px;
}

.section-download p {
  font-size: 16.29px;
  font-weight: 400;
  line-height: 27.69px;
  color: var(--whiteColor);
  margin: 0;
}

.layer-group {
  position: relative;
  position: relative;
  height: 100%;
}

.layer-group img.layer1 {
  position: absolute;
  top: -130px;
  left: 0;
}

.layer-group img.layer2 {
  position: absolute;
  top: -200px;
  left: 150px;
}

.layer-group img.layer3 {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* footer */
.footer {
  text-align: center;
  padding: 65px 0 100px;
  background: linear-gradient(99.42deg,
      #e5f9ff -1.26%,
      #ffffff 31.9%,
      #ffffff 62.26%,
      #e5f9ff 92.15%);
  border-top: 1px solid rgba(10, 20, 47, 0.039);
}

.footer h2 {
  font-size: 52.43px;
  font-weight: 700;
  line-height: 77.07px;
  text-align: center;
  color: #0A142F;
}

.footer p {
  font-size: 21.22px;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
  color: #0A142F;
}

.footer p.copy-right {
  font-size: 20.75px;
  font-weight: 400;
  line-height: 33.71px;
  color: #000;
}

.footer .foot-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: -5px;
  background-color: #25B4E5;
  padding: 15px 55px;
  padding-bottom: 18px;
  border-radius: 31.46px;
}

.foot-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #1785aa;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}

.foot-btn:hover {
  color: #fff;
}

.foot-btn:hover span {
  width: 225%;
  height: 562.5px;
}

.foot-btn:focus {
  color: #fff;
}

.footer ul,
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer ul.social,
.contact-info ul.social {
  column-gap: 10px;
}

.footer ul.social li a,
.contact-info ul.social li a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 36px;
  text-align: center;
  border: 2.1px solid rgb(219 246 255);
  border-radius: 50%;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
  z-index: 1;
}

.footer ul.social li a:after,
.contact-info ul.social li a:after {
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  position: absolute;
  width: 48.19px;
  height: 48.19px;
  line-height: 38.19px;
  top: 50%;
  left: 50%;
  padding: 0;
  opacity: 0;
  border: 5px dashed #fff;
}

.footer ul.social li a:hover:after,
.contact-info ul.social li a:hover:after {
  opacity: 1;
  -webkit-animation: spinAround 9s linear infinite;
  -moz-animation: spinAround 9s linear infinite;
  animation: spinAround 9s linear infinite;
}

.footer ul.social li a:hover {
  border: 2.1px solid #25B4E5;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-moz-keyframes spinAround {
  from {
    -moz-transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinAround {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.footer ul.links {
  justify-content: space-around;
}

.footer ul.links li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 24.66px;
  color: #0A142F;
}

.footer ul.links li a:hover {
  color: #25B4E5;
}

.foot-bottom {
  border-top: 1px solid rgba(10, 20, 47, 0.059);
}

.footer svg:hover path {
  stroke-dasharray: 870;
  stroke-dashoffset: 870;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke: #202d41;
  transition: all 0.5s ease-in-out;
  animation: draw 3s linear;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 767px) {
  .footer h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 47px;
  }

  .my-3 {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .footer p {
    font-size: 16px;
    font-weight: 500;
  }

  .footer p.copy-right {
    font-size: 16px;
    font-weight: 500;
  }

  .section-help h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .section-help .row .col-lg-4 {
    margin-bottom: 1em;
  }

  .footer ul {
    justify-content: center;
    margin-bottom: 1em;
  }

  .footer .d-flex.justify-content-end {
    margin-top: 10px;
    justify-content: center !important;
  }

  .mt-5 {
    margin-top: 2rem !important;
  }

  .pt-5 {
    padding-top: 2rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .footer {
    text-align: center;
    padding: 50px 0 50px;
  }

  .mt-4 {
    margin-top: 1rem !important;
  }

  .section-download .main-block {
    padding: 30px;
  }

  .layer-group {
    height: 400px;
    margin-top: 2em;
  }

  .layer-group img.layer1 {
    top: 22px;
    height: 80%;
  }

  .layer-group img.layer2 {
    position: absolute;
    top: -20px;
    left: 65px;
    height: 100%;
  }

  .layer-group img.layer3 {
    position: absolute;
    bottom: 20%;
    right: 0;
    height: 50%;
  }

  .apple a p,
  .google a p {
    font-size: 13px;
    line-height: 17.19px;
    font-weight: 500;
    padding-left: 8px;
  }

  .apple a img,
  .google a img {
    width: 26px;
  }

  .section-download .download-app {
    padding-top: 29px;
    justify-content: center;
  }

  .apple a,
  .google a {
    padding: 11.85px 12px;
  }

  .apple {
    padding-left: 14px;
  }

  .section-download h2 {
    font-size: 28px;
    line-height: 47px;
    margin-bottom: 21px;
  }

  .section-help h2,
  .section-desc h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .section-help p,
  .section-desc p {
    font-size: 16px;
    font-weight: 500;
  }

  .section-desc h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
  }

  .righter,
  .blocke.block-right {
    text-align: inherit;
  }

  .section-help {
    padding: 50px 0 0;
  }

  .section-download,
  .section-desc,
  .section-help {
    padding: 0px 0;
    overflow: hidden;
  }

  .timeline-shape .col-lg-2 {
    display: none;
  }

  .section-desc .timeline-shape h5 {
    font-size: 18px;
  }

  .section-desc p.colored {
    margin-top: 5px;
  }

  .timeline-shape img {
    max-width: 80%;
    display: block;
    margin: 0 auto;
  }

  .timeline-shape .row .col-lg-4 .blocke {
    position: relative;
    padding-right: 80px;
  }

  .timeline-shape .row .col-lg-4 .blocke:after {
    content: "01";
    position: absolute;
    right: 0;
    top: 25px;
    font-style: normal;
    width: 70px;
    height: 70px;
    line-height: 61px;
    display: block;
    background: url(../images/icons/timeline-icon.png) center;
    background-size: cover;
    border-radius: 50%;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    color: var(--whiteColor);
    z-index: 1;
  }

  .blocke.block-left {
    margin-top: 1em;
  }

  .blocke {
    margin-bottom: 1em;
  }

  .timeline-shape .row .col-lg-4:last-child .blocke:first-child:after {
    content: "02";
  }

  .timeline-shape .row .col-lg-4:last-child .blocke:last-child:after {
    content: "03";
  }

  .d-flexe {
    justify-content: center;
  }
}

.hidden {
  display: none;
}

.d-flexe {
  display: flex;
  justify-content: end;
}

.contact-section {
  padding: 4em 0;
}

.contact-section h2 {
  color: #161616;
  font-size: 31.5px;
  font-style: normal;
  font-weight: 900;
  line-height: 39.9px;
}

.contact-section p {
  color: #161616;
  font-size: 16.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 30px;
}

.contact-section p.hint {
  color: var(--text-text-tertiary, #64748b);
  font-size: 12.6px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

html[lang="ar"] .iti__country-container {
  left: auto !important;
  right: 0 !important;
}

html[lang="ar"] .iti__arrow {
  margin-left: 0 !important;
  margin-right: 5px;
}

html[lang="ar"] .iti input.iti__tel-input {
  padding-right: 48px;
  padding-left: 20px !important;
  text-align: right;
}

.CellPhone {
  background: #fff;
}

.contact-section .input-group.custom-phone .form-control {
  width: 1%;
  border-radius: 4px 0 0 4px !important;
}

html[lang="en"] .contact-section .input-group.custom-phone .form-control {
  border-radius: 0 4px 4px 0 !important;
}

.contact-section .input-group.custom-phone .input-group-prepend .btn {
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 0 4px 4px 0 !important;
}

.contact-section .input-group.custom-phone .input-group-prepend .btn {
  color: #444;
}

.contact-section .input-group.custom-phone .input-group-prepend .btn img {
  width: 24px;
}

html[lang="en"] .contact-section .input-group.custom-phone .input-group-prepend .btn {
  border-radius: 4px 0 0 4px !important;
  height: auto;
  padding: 11px;
}

.contact-section .input-group.custom-phone .input-group-prepend .btn i {
  color: #465567 !important;
}

.contact-section .input-group.custom-phone .dropdown-item img {
  width: 24px;
  margin: 0 5px;
}

.contact-section .input-group.custom-phone .dropdown-item {
  border-bottom: 1px solid #eee;
  padding: 10px 5px;
  font-size: 14px;
}

.contact-section .input-group.custom-phone .dropdown-menu {
  padding: 0;
  min-width: 100%;
  height: 300px;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 10px;
  display: block;
  color: var(--Form-field-text-label, #161616);
  font-size: 14.7px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.iti {
  width: 100%;
}

.iti__search-input {
  font-size: 14px;
  padding: 10px;
  background: #f7f7f7;
}

.form-control {
  height: auto;
  font-size: 14px;
  padding: 12px;
  border-radius: 4px;
  background: var(--Form-field-background-darker, #f3f4f6);
}

select.form-control {
  background: #f3f4f6 url(../images/icons/arrow-down.svg) no-repeat right center !important;
  background-position-x: 97% !important;
}

html[lang="ar"] select.form-control {
  background: #f3f4f6 url(../images/icons/arrow-down.svg) no-repeat right center !important;
  background-position-x: 3% !important;
}

html[lang="ar"] .navbar-nav li a {
  font-size: 18px;
  font-weight: 600;
}

input#upload {
  display: none;
}

html[lang="ar"] [type="email"],
html[lang="ar"] [type="number"],
html[lang="ar"] [type="tel"],
html[lang="ar"] [type="url"] {
  direction: rtl;
}

a.upload {
  border-radius: 4px;
  border: 1.05px dashed #626EFC;
  color: #161616;
  font-size: 14.7px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  padding: 20px 48px;
  padding-right: 10px;
}

a.upload:hover {
  background: #f3f4f6;
}

.file-name {
  color: #fff;
  font-size: 14.7px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  padding: 10px 20px;
}

.contact-info {
  border-radius: 16.8px;
  border: 1.05px solid var(--Border-border-background-neutral, #d2d6db);
  background: var(--Form-field-background-darker, #f3f4f6);
  padding: 25px;
}

.contact-info h3 {
  color: rgba(51, 51, 51, 1);
  font-size: 18.9px;
  font-style: normal;
  font-weight: 900;
  line-height: 29.4px;
}

.contact-info h3:first-child {
  margin-bottom: 30px;
}

ul.social-contact {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.contact-info h4 {
  color: rgba(51, 51, 51, 1);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 25.2px;
  margin-bottom: 0;
}

.contact-info p,
.contact-info a {
  color: rgba(51, 51, 51, 1);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 25px;
  display: block;
}

.contact-info a:hover {
  color: #626EFC;
}

.footer .social li a img {
  fill: #000;
}

.navbar-toggler {
  position: absolute;
  left: 10px;
  top: 0;
  transform: translateY(0%);
  z-index: 10;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(98, 110, 252, 0.5);
    border-radius: 8px;
  }

  .default-btn {
    margin-top: 30px;
  }

  .navbar-nav li {
    border-bottom: 1px solid rgba(98, 110, 252, 0.5);
  }

  html[lang="ar"] .navbar-nav li a {
    font-size: 16px;
  }
}

.navbar-toggler {
  border: none;
  background: none;
  outline: none;
}

.navbar-toggler .toggler-icon {
  width: 25px;
  height: 2px;
  background-color: black;
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler.open .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.open .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.open .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler .toggler-icon {
  background-color: #25B4E5;
}

.toast {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  max-width: fit-content;
  max-height: fit-content;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
}

.toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.privacy-section img {
  /* margin: 0 auto; */
  /* display: block; */
}

.privacy-section h2 {
  color: var(--Dark, #201928);
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
  margin-bottom: 25px;
}

.privacy-section h3 {
  color: var(--Dark, #201928);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-section ul {
  padding: 0;
  list-style: none;
}

.privacy-section p,
.privacy-section li {
  color: #59565C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.privacy-section li {
  list-style: inside;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
  column-gap: 10px;
}

.privacy-section li span {
  line-height: 26px;
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #59565C;
  margin-top: 9px;
}