*,
* button:focus {
  outline: 0;
}

:root {
  --mainColor: #564299;
  --subColor: #C8C5C7;
  /* --subColor2: #77643d; */
}

.mainColor {
  color: var(--mainColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Alexandria", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #999;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 2.5;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 120px 0;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.butn {
  position: relative;
  padding: 12px 40px;
  border-radius: 50px;
  background-image: linear-gradient(-45deg, #564299, #35BFD5);
  overflow: hidden;
  color: #fff;
}
.butn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 150%;
  background-image: linear-gradient(-45deg, #564299, #35BFD5);
  transition: all 0.3s ease;
}
.butn * {
  color: #fff;
  position: relative;
  z-index: 10;
}
.butn:hover {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
}
.butn:hover::after {
  left: -50%;
}

.lin_text {
  background: -webkit-linear-gradient(#564299, #35BFD5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* --------------- navbar --------------- */
.navbar {
  position: absolute;
  padding: 30px 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.navbar .navbar-brand {
  height: 100px;
  max-width: 300px;
  display: block;
  text-align: center;
}
.navbar .navbar-brand .logo {
  display: block;
  margin: auto;
}
.navbar .navbar-brand small {
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  display: block;
  padding: 20px;
  border-radius: 0 0 15px 15px;
      display: none;

}
.navbar .navbar-nav .nav-link {
  margin: 0 15px;
  font-size: 16px;
}

.nav-scroll {
  background: #fff;
  filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.0666666667));
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  transition: transform 0.5s;
  transform: translateY(100px);
  padding: 15px 0;
}
.nav-scroll .navbar-brand {
  height: 80px;
}
.nav-scroll .navbar-brand small {
  background-color: #fff;
}

/* --------------- header --------------- */
header {
  position: relative;
  background-image: url(../images/head_bg.png);
  background-size: cover;
  padding-top: 250px;
}
header .info h1 {
  font-size: 60px;
}
header .info .text {
  font-size: 15px;
  margin-top: 30px;
  line-height: 2.2;
  color: #444;
}
header .info .btns {
  position: relative;
  padding-top: 80px;
}
header .info .btns .arrow {
  position: absolute;
  top: 0;
  left: 0;
}

/* --------------- features --------------- */
.features .feat_card {
  position: relative;
  margin-top: 20px;
  padding: 20px 60px;
  text-align: center;
}
.features .feat_card .icon {
  position: relative;
  font-size: 40px;
  margin-bottom: 20px;
}
.features .feat_card .icon::after {
  position: absolute;
  content: "";
  right: -7px;
  top: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(86, 66, 153, 0.2);
}
.features .feat_card .info h5 {
  font-size: 20px;
  margin-bottom: 10px;
}
.features .feat_card .info .text {
  font-size: 14px;
  color: #666;
}

/* --------------- about --------------- */
.about {
  position: relative;
  padding-top: 50px;
}
.about .container {
  position: relative;
  z-index: 10;
}
.about .color_cir {
  position: absolute;
  top: 0;
  left: 0;
  max-height: inherit;
  width: 50%;
}
.about .color_cir2 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: inherit;
  width: 50%;
  transform: rotate(180deg) translateY(50%);
}
.about .content .info h4 {
  font-size: 35px;
  margin-bottom: 40px;
}
.about .content .info ul {
  display: flex;
  flex-wrap: wrap;
}
.about .content .info ul li {
  font-size: 14px;
  margin: 15px 0;
  width: 50%;
}

/* --------------- download --------------- */
.download {
  position: relative;
  padding: 120px 0;
  background-image: url(../images/download_bg.png);
  background-size: cover;
  background-position: top;
}
.download .container {
  position: relative;
  z-index: 10;
}
.download .content {
  text-align: center;
}
.download .content .arrow {
  height: 50px;
  margin: 30px 0;
}
.download .downlaod_cards .d_card {
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.0666666667), rgba(255, 255, 255, 0.7803921569));
  color: var(--mainColor);
}
.download .text {
  font-size: 15px;
  font-weight: 300;
}
.download .icons {
  position: absolute;
  left: 5%;
  top: 50px;
  width: 90%;
  height: 35%;
  -o-object-fit: contain;
     object-fit: contain;
}
.download .icons2 {
  position: absolute;
  left: 5%;
  bottom: 50px;
  width: 90%;
  height: 35%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------- clients --------------- */
.clients {
  position: relative;
  background-color: #FBF4FF;
  padding-bottom: 70px;
}
.clients .container {
  position: relative;
  z-index: 10;
}
.clients .sec_title .main_side {
  position: relative;
  padding-bottom: 80px;
}
.clients .sec_title .main_side .arrow {
  position: absolute;
  height: 90px;
  bottom: 0;
  left: 0;
  max-height: inherit;
}
.clients .sec_title .swiper-controls {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  bottom: -50px;
}
.clients .sec_title .swiper-controls .swiper-button-next,
.clients .sec_title .swiper-controls .swiper-button-prev {
  position: static;
  margin: 5px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.clients .sec_title .swiper-controls .swiper-button-next::after,
.clients .sec_title .swiper-controls .swiper-button-prev::after {
  font-size: 16px;
  color: var(--mainColor);
}
.clients .sec_title .swiper-controls .swiper-button-next:hover,
.clients .sec_title .swiper-controls .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.clients .sec_title .swiper-controls .swiper-button-next:hover::after,
.clients .sec_title .swiper-controls .swiper-button-prev:hover::after {
  color: #fff;
}
.clients .client_card {
  background: #fff;
  margin-top: 0;
  border-radius: 15px;
  padding: 50px 30px;
  transition: all 0.5s linear;
  min-height: 290px;
}
.clients .client_card small {
  font-size: 12px;
  color: #999;
}
.clients .client_card .text {
  font-size: 15px;
  margin-top: 20px;
}
.clients .clients_slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
.clients .clients_slider .swiper-slide-active .client_card {
  transform: scale(0.9) translateX(-10%);
  box-shadow: none;
  opacity: 0.8;
  margin-top: 15px;
}
.clients .clients_slider .swiper-slide-prev .client_card {
  transform: scale(1);
  box-shadow: -40px 30px 20px rgba(0, 0, 0, 0.05);
}
.clients .clients_slider .swiper-slide-next .client_card {
  transform: scale(0.8) translateX(-10%);
  box-shadow: none;
  opacity: 0.7;
  margin-top: 30px;
}

/* --------------- contact --------------- */
.contact {
  position: relative;
  margin-bottom: 100px;
}
.contact::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: #FBF4FF;
}
.contact .contact_card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 4vw;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0274509804);
  z-index: 10;
}
.contact .contact_card .form-group {
  margin-top: 40px;
}
.contact .contact_card .form-control {
  min-height: 55px;
  border-radius: 10px;
  border: 0;
  background-color: #f9f9f9;
  margin-top: 15px;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  padding-top: 80px;
}
.footer * {
  font-size: 13px;
}
.footer .color_cir {
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: inherit;
  width: 50%;
}
.footer .container {
  position: relative;
  z-index: 10;
}
.footer .foot_info .logo {
  height: 100px;
  margin-bottom: 30px;
}
.footer .links_group ul li a {
  margin: 12px 0;
}
.footer .links_group ul li a:hover {
  color: var(--mainColor);
}
.footer .foot {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
  margin-top: 80px;
}
.footer .sub_title {
  font-size: 17px;
}

/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar {
    position: relative;
    background-color: #D6D4EE;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /*padding-bottom: 55px;*/
  }
  /*.navbar .navbar-collapse {*/
  /*  margin: 25px 0 15px 0;*/
  /*}*/
  /*.navbar .navbar-brand {*/
  /*  height: 115px;*/
  /*}*/
  /*.navbar .navbar-brand .logo {*/
  /*      height: 85px;*/
  /*  }*/
    /*.navbar .navbar-brand small {*/
    /*    font-size: 9px;*/
    /*    padding: 10px;*/
    /*}*/
  header {
    padding-top: 100px;
  }
  header .info {
    margin-bottom: 30px;
  }
  header .info h1 {
    font-size: 30px;
  }
  .about .content .info ul li {
    width: 100%;
    font-size: 12px;
  }
  .about .img {
    margin: 30px 0;
  }
  .clients .clients_slider .swiper-slide-active .client_card {
    transform: scale(1) translateX(0%) !important;
    margin: 30px 15px 0;
  }
  .download .icons {
    top: 40px;
  }
  .download .icons2 {
    bottom: 100px;
  }
    .contact .select_type .btn {
        min-width: 95px;
        margin-inline-end: 5px;
        margin: 5px;
    }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */

/**** start register pages ****/
.contact::after {
  display: none;
}
.contact .contact_card {
  padding: 40px 3vw;
  border: 1px solid #eee;
  border-radius: 20px;
}

.contact .contact_card .inputLabel {
  font-size: 14px;
  color: #3A3F54;
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.contact .contact_card .form-group input,
.contact .contact_card  .form-group select {
  height: 50px !important;
}

.contact .contact_card .phone_group {
  position: relative;
}

.contact .contact_card  .phone_group .codeSelect {
  position: absolute;
  left: 2px;
  bottom: 0px;
  border: none !important;
  width: 100px;
  height: 45px !important;
  border-radius: 10px;
  background-color: transparent;
}

.contact .contact_card  .phone_group .numInput {
  padding: 0 110px;
  text-align: left;
}

.contact .contact_card  .phone_group .apply_butn {
  position: absolute;
  right: 20px;
  top: 16px;
  color: var(--mainColor);
  font-size: 13px;
  text-decoration: underline;
}

.contact .contact_card  .butn {
  width: fit-content;
  display: block;
  margin: auto;
  border: none;
}

.contact .contact_card .form-group {
  margin-bottom: 2rem;
  margin-top: 0;
}

.contact .contact_card .form-control {
  min-height: 55px;
  border-radius: 10px;
  border: 0;
  background-color: #f9f9f9;
  margin-top: 15px;
}

.contact .contact_card .phone_group .codeSelect {
  position: absolute;
  left: 2px;
  bottom: 0px;
  border: none !important;
  width: 100px;
  height: 45px !important;
  border-radius: 10px;
  background-color: transparent;
}

.contact .contact_card .phone_group .numInput {
  padding: 0 110px;
  text-align: left;
}

.contact .contact_card .phone_group .apply_butn {
  position: absolute;
  right: 20px;
  top: 16px;
  color: var(--mainColor);
  font-size: 13px;
  text-decoration: underline;
}

.contact .contact_card .butn {
  width: fit-content;
  display: block;
  margin: auto;
  border: none;
}

.contact .contact_card .sec_head .p {
  color: #888;
}

.contact .contact_card .box {
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 3rem;

}

.contact .select_type .btn {
  border: 1px solid #9995;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  min-width: 150px;
  margin-inline-end: 15px;
}

.contact .select_type .btn-check:checked~.btn {
  background-color: #564299;
  background-image: linear-gradient(-45deg, #564299, #35BFD5);
  color: #fff;
}

.contact .select_type .form-check {
  display: flex;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
}

.upload_img_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.upload_img_box .imagePreview {
  width: 100%;
  height: 180px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-right: 0;
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
}

.upload_img_box .file-upload {
  display: inline-block;
  margin: 5px;
  width: 100%;
  height: 180px;
}

.upload_img_box .file-select {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.upload_img_box .file-select.file-select-box {
  width: 100%;
  height: 180px;
  display: inline-block;
  border-radius: 14px;
}

.upload_img_box .file-upload-custom-btn {
  width: 100%;
  height: 180px;
  border: none;
  background-color: rgba(170, 176, 207, 0.3333333333);
  color: #AAB0CF;
  font-size: 30px;
  z-index: 1;
  position: relative;
}

.upload_img_box .file-select-name {
  margin-left: 15px;
}

.upload_img_box .file-select input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.upload_img_box .file-select.file-select-box input[type=file] {
  z-index: 2;
}

.upload_img_box .file-upload+.file-upload {
  margin-left: 10px;
}
/**** end register pages ****/
