@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary: #2563EB;
  --secondary: #D9DBE9;
  --pink: #D38B89 ;
  --filterPrimary: invert(25%) sepia(100%) saturate(2336%) hue-rotate(217deg) brightness(97%) contrast(90%);
  --filterSecondary: invert(94%) sepia(7%) saturate(963%) hue-rotate(191deg) brightness(98%) contrast(86%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--pink);
  color: #fff;
}
*::selection {
  background-color: var(--pink);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: ltr;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021 !important;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.color-pink {
  color: var(--pink);
}

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

.darkBlue {
  color: #170F49 !important;
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  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 {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/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: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  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: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
@keyframes swing {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
.slide_ltr {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.1s;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.1s;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_rtl.no_scale {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    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 {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background-image: unset;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--primary);
  transition: all 0.3s linear;
  position: relative;
  top: 1px;
}
.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: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f053";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f054";
}

.butn {
  position: relative;
  padding: 0.6rem 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-weight: 500;
}
.butn i {
  margin-inline-end: 7px;
}
.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #170F49;
  border: 1px solid #D9DBE9;
}
.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #333;
}
.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}
.butn.darkBlue_butn {
  background-color: #0A0449;
  border: 1px solid #0A0449;
  color: #fff;
}
.butn.pink_butn {
  background-color: var(--pink);
  border: 1px solid var(--pink);
  color: #fff;
}
.butn.gray_butn {
  background-color: #f5f5f5;
  color: #999;
}
.butn:hover {
  background-color: #204667;
  border: 1px solid #204667;
  color: #fff !important;
}
.butn.darkBlue_butn2 {
  background-color: #204667;
  border: 1px solid #204667;
  color: #fff;
}
.butn.darkBlue_butn2:hover {
  background-color: var(--pink);
  border: 1px solid var(--pink);
  color: #fff !important;
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 1.5rem 1rem;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}
.navs-container .navbar .logo {
  width: 200px;
}
.navs-container .navbar .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #170F49;
  margin: 0 10px;
}
.navs-container .navbar .nav-link.active {
  color: var(--primary);
}
.navs-container .navbar .nav_end {
  display: flex;
}
.navs-container .navbar .nav_end .butn {
  font-size: 14px;
}
.navs-container .navbar .dropdown-menu {
  padding: 10px;
  border: 0;
  border-radius: 25px;
  box-shadow: 3px 6px 15px 0 rgba(85, 85, 85, 0.0666666667);
  right: -50%;
}
.navs-container .navbar .dropdown-menu .dropdown-item {
  font-size: 14px;
  border-radius: 25px;
  padding: 0.5rem 1rem;
}
.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 {
  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;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  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);
  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: #09081A;
}
.footer .content {
  margin-bottom: 30px;
}
.footer .content .logo {
  width: 255px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
.footer .content .p {
  color: #DEDEDE;
  font-size: 14px;
  line-height: 1.6;
}
.footer .content .title {
  font-size: 20px;
  color: #fff;
  position: relative;
  margin-bottom: 35px;
}
.footer .content .title::after {
  width: 50px;
  height: 1px;
  content: "";
  background-color: #D38B89;
  display: block;
  margin: 15px 0;
}
.footer .content .links a {
  display: table;
  margin-bottom: 15px;
  color: #fff;
}
.footer .content .links a i {
  color: #D38B89;
  margin-inline-end: 5px;
}
.footer .content .social_links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1843137255);
  margin-bottom: 0px;
  font-size: 15px;
  margin-inline-end: 5px;
}
.footer .content .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}
.footer .logo_pat {
  position: absolute;
  right: 0;
  bottom: 100px;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  overflow: unset;
  padding-top: 130px;
  padding-bottom: 100px;
}
.header .txt_box {
  margin-top: 10px;
}
.header .txt_box .title {
  font-size: 80px;
  font-size: calc(2vw + 35px);
  font-weight: 500;
}
.header .txt_box .arrow {
  animation: swing 1s infinite alternate linear;
}
.header .img_box .secImg {
  transform: scale(1.2);
}
.header .logo_pat {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0px;
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.header .triangle {
  position: absolute;
  top: 0%;
  inset-inline-start: -40%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.3;
}
.header::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-color: rgba(255, 255, 255, 0.666);
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.header::after {
  width: 320px;
  content: "";
  height: 640px;
  position: absolute;
  inset-inline-start: 15%;
  top: 0;
  z-index: 2;
  background-image: linear-gradient(#ECEBFB, #fff);
}

.new_header {
  padding-top: 150px;
  background-image: linear-gradient(to bottom, rgba(211, 139, 137, 0.1725490196), #DEDBF8, #DEDBF8, #fff);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_header .txt_box .title {
  font-size: 80px;
  font-size: calc(3vw + 35px);
  font-weight: 800;
  color: #1F1C1C;
  line-height: 1.4;
}
.new_header .txt_box .title .specialized {
  position: relative;
}
.new_header .txt_box .title .specialized::after {
  content: "";
  width: 100%;
  height: 25px;
  background: url(../images/underline.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  inset-inline-start: 0;
}
.new_header .txt_box .title .specialized::before {
  content: "";
  width: 28px;
  height: 33px;
  background: url(../images/text_lines.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-end: -25px;
  top: 0px;
}
.new_header .txt_box .p {
  line-height: 1.7;
}
.new_header .txt_box .butns .butn {
  box-shadow: 3px 6px 15px 0 rgba(123, 118, 118, 0.067);
}

.about_sec {
  padding-bottom: 250px;
  margin-top: 50px;
  background-image: linear-gradient(to bottom, #EEECFB, #DEDBF8);
}
.about_sec .img_box {
  height: 100%;
  position: relative;
}
.about_sec .img_box .secImg {
  border-radius: 15px;
}
.about_sec .img_box::before {
  content: "";
  z-index: -1;
  height: 625px;
  width: 625px;
  background-color: #EFEEFF;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.about_sec .txt_box .ul {
  counter-reset: counter;
}
.about_sec .txt_box .ul li {
  margin-bottom: 15px;
  display: flex;
}
.about_sec .txt_box .ul li .txt_cont {
  width: calc(100% - 50px);
  margin-top: 5px;
}
.about_sec .txt_box .ul li .txt_cont .title {
  font-size: 16px;
  font-weight: bold;
}
.about_sec .txt_box .ul li .txt_cont .p {
  font-size: 12px;
  color: #464646;
}
.about_sec .txt_box .ul li::before {
  margin-inline-end: 15px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  background-color: #fff;
  counter-increment: counter;
  content: counter(counter);
}
.about_sec .robot {
  position: absolute;
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 150px;
  z-index: 5;
}
.about_sec .plane {
  position: absolute;
  bottom: 22%;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  inset-inline-end: 0;
}
.about_sec::before, .about_sec::after {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}
.about_sec::after {
  top: unset;
  bottom: 0;
}

.gradient_txt {
  font-size: calc(1vw + 35px);
  background: linear-gradient(175deg, #5B53FF, #FC856D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.about_cards {
  background-image: linear-gradient(to bottom, #DEDBF8, rgba(222, 219, 248, 0));
}
.about_cards .item {
  position: relative;
  text-align: center;
  padding: 35px 30px;
  border-radius: 32px;
  border-top: 4px solid #fff;
  background-image: linear-gradient(to bottom, #F0EFFC, #fff);
  margin-bottom: 25px;
  height: calc(100% - 25px);
}
.about_cards .item .content .icon {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}
.about_cards .item .content .title {
  font-size: 22px;
  color: #0A0449;
  margin-bottom: 10px;
}
.about_cards .item .content .p {
  color: #383838;
  font-size: 13px;
  line-height: 1.7;
}

.target_sec .item {
  position: relative;
  height: 280px;
  padding: 35px 25px;
  transition: all 0.3s linear;
}
.target_sec .item .title {
  font-size: 22px;
  font-weight: bold;
  color: #0A0449;
  max-width: 80%;
}
.target_sec .item .num {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  margin-inline-start: auto;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  background-color: var(--primary);
  position: absolute;
  inset-inline-end: 25px;
  bottom: 30px;
}
.target_sec .item::before {
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/border.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.target_sec .item:hover {
  background-color: rgba(37, 100, 235, 0.0431372549);
}

.target_sec .swiper-button-next,
.target_sec .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right : unset;
  margin: 0 5px;
}

.target_sec .swiper-button-next::before, 
.target_sec .swiper-button-prev::before {
        transform: rotateY(180deg);
}

.target_sec .target {
  width: 170px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  inset-inline-end: 18%;
  top: 30px;
}

.works_sec {
  background-image: linear-gradient(to bottom, #F2F2FC, #fff);
}
.works_sec .item {
  padding: 35px 25px;
  position: relative;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.works_sec .item .p {
  font-size: 14px;
  color: #121526;
}
.works_sec .item .p.small {
  font-size: 11px;
  line-height: 1.6;
}
.works_sec .item .num {
  font-size: 30px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-start: auto;
  display: block;
  position: absolute;
  bottom: 35px;
  inset-inline-end: 25px;
}
.works_sec .item .primary_butn {
  font-size: 13px;
  padding: 0.4rem 1.2rem;
}
.works_sec .item .border_line {
  border-right: 1px solid #D38B89;
  border-left: 1px solid #D38B89;
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  right: 0;
  left: 0;
  z-index: -1;
}
.works_sec .item .border_line.border_top {
  top: 0;
  border-top: 1px solid #D38B89;
  border-radius: 25px 25px 0 0;
}
.works_sec .item .border_line.border_bottom {
  bottom: 0;
  border-bottom: 1px solid #D38B89;
  border-radius: 0 0 25px 25px;
}
.works_sec::before {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}

.faq_sec .accordion-item {
  border: 1px dashed transparent;
  border-radius: 20px !important;
  margin-bottom: 25px;
  box-shadow: 0 18px 55px 0 rgba(21, 30, 50, 0.0470588235);
}
.faq_sec .accordion-item .accordion-button {
  color: #1D1D1D;
  background-color: transparent;
  box-shadow: none;
  border-radius: 20px 20px 0 0;
  padding: 25px 30px;
  border: 0;
  display: flex;
  align-items: center;
}
.faq_sec .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f068";
}
.faq_sec .accordion-item .accordion-button h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.faq_sec .accordion-item .accordion-button::after {
  font-size: 14px;
  background-image: none;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  color: var(--primary);
}
.faq_sec .accordion-item .accordion-body {
  padding-inline: 3vw;
  padding-top: 0;
  padding-bottom: 30px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.faq_sec .accordion-item .accordion-body .text {
  font-size: 16px;
  color: #4B4B4B;
  line-height: 1.7;
}
.faq_sec .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--primary);
}
.faq_sec .plane {
  position: absolute;
  top: 30%;
  left: 2%;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.faq_sec .chats {
  position: absolute;
  bottom: 20%;
  right: 2%;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  padding: 20px 0;
  background-color: #DDDAF8;
}
.pg_header .bread .item {
  color: #1D1D1D;
}
.pg_header .bread .item.active {
  color: #204667;
}

/**********************************************
    Start Edit another Page 
**********************************************/
.auth_pg {
  margin-top: 100px;
}
.auth_pg .img_box .secImg {
  height: 500px;
}
.auth_pg .form-group {
  margin-bottom: 18px;
  position: relative;
}
.auth_pg .form-group .form-control {
  border-color: #f8f8f8;
  background-color: #f8f8f8;
  border-radius: 35px;
  padding-inline-start: 45px;
}
.auth_pg .form-group .form-control:focus {
  border-color: var(--primary);
  box-shadow: none !important;
}
.auth_pg .form-group input, .auth_pg .form-group select {
  height: 50px !important;
}
.auth_pg .form-group textarea.form-control {
  padding-top: 18px;
  resize: none;
}
.auth_pg .form-group .icon {
  position: absolute;
  top: 15px;
  inset-inline-start: 18px;
  color: var(--pink);
}
.auth_pg .form-group.show_hide_password {
  position: relative;
}
.auth_pg .form-group.show_hide_password .show_pass {
  position: absolute;
  top: 19px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
  z-index: 10;
  font-size: 13px;
}
.auth_pg .form-group.phone_group .input {
  padding-left: 120px;
  text-align: left;
}
.auth_pg .form-group.phone_group .input::-moz-placeholder {
  text-align: start;
}
.auth_pg .form-group.phone_group .input::placeholder {
  text-align: start;
}
.auth_pg .form-group.phone_group #contryCodeSelect {
  position: absolute;
  background-color: transparent;
  border: none !important;
  left: 0;
  top: 0;
  width: 120px;
}
.auth_pg .form-group .code-group {
  display: flex;
  justify-content: center;
}
.auth_pg .form-group .code-group .form-control {
  border: 1px solid #eee !important;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  text-align: center;
  border-radius: 10px;
  font-size: 25px;
  padding: 0;
}
.auth_pg .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.mt-100 {
  margin-top: 100px;
}

/**********************************************
    Start Edit another Page 
**********************************************/
.blog_pg {
  background-image: linear-gradient(to bottom, #F2F2FC, #fff);
}
.blog_pg .blog_card {
  position: relative;
  margin-bottom: 30px;
  height: 480px;
  border-radius: 25px;
  overflow: hidden;
}
.blog_pg .blog_card .txt_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px 3vw;
  z-index: 3;
  width: 100%;
  transition: all 0.3s linear;
  background-image: linear-gradient(to bottom, transparent, #000);
}
.blog_pg .blog_card .txt_content .categ {
  font-size: 12px;
  color: var(--primary);
  background: var(--secondary);
  margin: 0;
  display: inline-block;
  padding: 5px 10px;
  min-height: 27px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -30px, 0);
  transition: all ease 350ms;
  border-radius: 25px;
}
.blog_pg .blog_card .txt_content .date {
  display: block;
  font-size: 12px;
  color: #eee;
}
.blog_pg .blog_card .txt_content .date i {
  color: var(--pink);
  margin-inline-end: 5px;
}
.blog_pg .blog_card .txt_content .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  height: 63px;
  overflow: hidden;
}
.blog_pg .blog_card .txt_content .p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f5f5f5;
  font-size: 13px;
}
.blog_pg .blog_card .txt_content .more_butn {
  position: relative;
  color: #D38B89;
}
.blog_pg .blog_card .txt_content .more_butn::before {
  content: "";
  width: 20px;
  height: 6px;
  background-color: rgba(211, 139, 137, 0.3176470588);
  position: absolute;
  inset-inline-start: 0;
  transition: all 0.3s linear;
  bottom: 0;
}
.blog_pg .blog_card .txt_content .more_butn:hover {
  color: #fff !important;
}
.blog_pg .blog_card .txt_content .more_butn:hover::before {
  width: 100%;
}
.blog_pg .blog_card::before {
  position: absolute;
  content: "";
  border: 2px solid #D38B89;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  left: 20px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04, 1.08);
  transition: all ease 300ms;
  border-radius: 25px;
}
.blog_pg .blog_card::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(to bottom, transparent, rgba(0, 4, 40, 0.2941176471), #000428);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
  transition: all 0.3s linear;
}
.blog_pg .blog_card:hover::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}
.blog_pg .blog_card:hover .categ {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.blog_pg .blog_card:hover .txt_content {
  background-image: linear-gradient(to bottom, transparent, transparent);
}
.blog_pg .blog_card:hover::after {
  background-image: linear-gradient(to bottom, transparent, #002F35);
  opacity: 1;
}
.blog_pg::before {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}

.blog_det_pg {
  background-image: linear-gradient(to bottom, #F2F2FC, #fff);
}
.blog_det_pg .inner {
  background-color: #fff;
  padding: 25px;
  border-radius: 25px;
}
.blog_det_pg .inner .img_box {
  height: 350px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
.blog_det_pg .inner .img_box .share_box {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  z-index: 5;
}
.blog_det_pg .inner .img_box .share_box .share_butn {
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: var(--pink);
  border-radius: 0px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 25px;
  border: 1px solid var(--pink);
}
.blog_det_pg .inner .img_box .share_box .share_links {
  position: absolute;
  bottom: -50px;
  inset-inline-end: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.blog_det_pg .inner .img_box .share_box .share_links.active a {
  transform: scaleX(1) translateY(0px);
  visibility: visible;
  opacity: 1;
}
.blog_det_pg .inner .img_box .share_box .share_links a {
  width: 30px;
  height: 30px;
  border-radius: 0%;
  margin: 0 5px;
  color: var(--primary);
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  opacity: 0;
  box-shadow: 3px 6px 10px 0 rgba(0, 0, 0, 0.0666666667);
  transform: scaleX(0) translateY(-50px);
  transform-origin: right center;
  perspective: 1000px;
  border-radius: 25px;
}
.blog_det_pg .inner .img_box .share_box .share_links a:nth-child(2) {
  transition-delay: 0.1s;
}
.blog_det_pg .inner .img_box .share_box .share_links a:nth-child(3) {
  transition-delay: 0.2s;
}
.blog_det_pg .inner .img_box .share_box .share_links a:nth-child(4) {
  transition-delay: 0.3s;
}
.blog_det_pg .inner .img_box .share_box .share_links a:nth-child(5) {
  transition-delay: 0.4s;
}
.blog_det_pg .inner .img_box .share_box .share_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.blog_det_pg .inner .img_box .swiper-button-next,
.blog_det_pg .inner .img_box .swiper-button-prev {
  top: 35%;
  transform: rotateY(180deg);
  background-color: #fff;
}
.blog_det_pg .inner .card-body {
  position: relative;
  z-index: 3;
  padding: 35px 2vw;
}
.blog_det_pg .inner .card-body .date {
  color: var(--primary);
  font-size: 15px;
}
.blog_det_pg .inner .card-body .date i {
  color: #11487B;
  margin-inline-end: 10px;
}
.blog_det_pg .inner .card-body .title {
  font-size: 24px;
  line-height: 1.5;
}
.blog_det_pg .inner .card-body .p {
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}
.blog_det_pg .box {
  padding: 45px 3vw;
  background-color: #FFF;
  border-radius: 25px;
}
.blog_det_pg .box .item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}
.blog_det_pg .box .item .img {
  width: 110px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 15px;
  border-radius: 15px;
}
.blog_det_pg .box .item .txt {
  width: calc(100% - 125px);
}
.blog_det_pg .box .item .txt .date {
  color: var(--pink);
  font-size: 11px;
}
.blog_det_pg .box .item .txt .date i {
  color: var(--primary);
  margin-inline-end: 5px;
}
.blog_det_pg .box .item .txt .title {
  height: 39px;
  overflow: hidden;
}
.blog_det_pg .box a:last-child .item {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}
.blog_det_pg::before {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}

/**********************************************
    Start Edit another Page 
**********************************************/
.content_pg {
  background-image: linear-gradient(to bottom, #F2F2FC, #fff);
}
.content_pg .plane {
  position: absolute;
  top: 10px;
  left: unset;
  inset-inline-end: 10px ;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_pg .chats {
  position: absolute;
  bottom: 20%;
  right: 0%;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_pg::before {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg {
  background-image: linear-gradient(to bottom, #F2F2FC, #fff);
}
.contact_pg .contact_links .item {
  margin-bottom: 25px;
  display: flex;
  align-items: end;
}
.contact_pg .contact_links .item .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 15px;
  position: relative;
  bottom: 8px;
  filter: var(--filterWhite);
  opacity: 0.5;
}
.contact_pg .contact_links .item .txt_cont {
  width: calc(100% - 45px);
}
.contact_pg .contact_links .item .txt_cont .label {
  color: var(--pink);
  font-size: 17px;
  margin-bottom: 5px;
}
.contact_pg .contact_links .item .txt_cont .data {
  color: #002F35;
  font-size: 18px;
  font-weight: bold;
}
.contact_pg .contact_links .item .txt_cont .data.dir_ltr {
  text-align: right;
}
.contact_pg .social_box .link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #204667;
  color: #204667;
  margin-inline-end: 10px;
  font-size: 15px;
}
.contact_pg .social_box .link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}
.contact_pg .inner {
  background-color: #fff;
  border-radius: 25px;
  padding: 45px 3vw;
  box-shadow: 3px 15px 15px 0 rgba(140, 136, 136, 0.067);
}
.contact_pg .inner .form-group {
  margin-bottom: 18px;
  position: relative;
}
.contact_pg .inner .form-group .form-control {
  border-color: #F9F9FD;
  background-color: #F9F9FD;
  border-radius: 35px;
  padding-inline-start: 45px;
}
.contact_pg .inner .form-group .form-control:focus {
  border-color: var(--primary);
  box-shadow: none !important;
}
.contact_pg .inner .form-group input, .contact_pg .inner .form-group select {
  height: 50px !important;
}
.contact_pg .inner .form-group textarea.form-control {
  padding-top: 18px;
  resize: none;
}
.contact_pg .inner .form-group .icon {
  position: absolute;
  top: 15px;
  inset-inline-start: 18px;
  color: var(--pink);
}
.contact_pg .inner .form-group.show_hide_password {
  position: relative;
}
.contact_pg .inner .form-group.show_hide_password .show_pass {
  position: absolute;
  top: 19px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
  z-index: 10;
  font-size: 13px;
}
.contact_pg .inner .form-group.phone_group .input {
  padding-left: 120px;
  text-align: left;
}
.contact_pg .inner .form-group.phone_group .input::-moz-placeholder {
  text-align: start;
}
.contact_pg .inner .form-group.phone_group .input::placeholder {
  text-align: start;
}
.contact_pg .inner .form-group.phone_group #contryCodeSelect {
  position: absolute;
  background-color: transparent;
  border: none !important;
  left: 0;
  top: 0;
  width: 120px;
}
.contact_pg::before {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}

/**********************************************
    Start Edit assessment Page 
**********************************************/
.asses_pg .img_box {
  position: relative;
}
.asses_pg .img_box .secImg {
  max-width: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  margin-bottom: 25px;
}
.asses_pg .img_box .text_box .title {
  font-size: 55px;
  color: #1A1919;
  margin-bottom: 10px;
}
.asses_pg .img_box .text_box .p {
  font-size: 19px;
  color: #626262;
}
.asses_pg .img_box .arrows {
  position: absolute;
  inset-inline-end: 0%;
  top: 35%;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.asses_pg .img_box .arrow {
  position: absolute;
  inset-inline-end: -10%;
  top: 65%;
}
.asses_pg .data_box .title {
  font-size: 45px;
}
.asses_pg .data_box .form-group {
  margin-bottom: 20px;
}
.asses_pg .data_box .form-group .label {
  color: #fff;
  font-size: 18px;
  display: block;
  margin-bottom: 0.5rem;
}
.asses_pg .data_box .form-group .form-control {
  background-color: #fff !important;
  border-radius: 15px !important;
}
.asses_pg .data_box .date_group .input-group-text {
  width: 50px;
  border-radius: 15px 0 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #204667;
  background: transparent;
  pointer-events: none;
  position: absolute;
  border: none;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  z-index: 8 !important;
  border-right: 1px solid #ccc !important;
}
.asses_pg .data_box .date_group .form-control {
  padding-inline-start: 60px;
}
.asses_pg .data_box .name_group .form-control {
  padding-inline-start: 60px;
}
.asses_pg .data_box .name_group .icon {
  position: absolute;
  bottom: 15px;
  inset-inline-start: 18px;
  color: #204667;
}
.asses_pg .data_box .submit_butn:hover {
  background-color: var(--pink);
  border-color: var(--pink);
}
.asses_pg::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-color: #191212;
  width: 50%;
  left: unset;
}

.asses_pg2::before {
  display: none;
}
.asses_pg2::after {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}
.asses_pg2 .shape {
  position: absolute;
  top: 0;
  width: 50%;
  inset-inline-start: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**********************************************
    Start Edit starc Page 
**********************************************/
.starc_pg {
  background-image: linear-gradient(to bottom, #F2F2FC, #fff);
}
.starc_pg .head_pg .prog_box {
  max-width: 170px;
  width: 100%;
}
.starc_pg .head_pg .prog_box .txt {
  font-size: 12px;
  color: #555;
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}
.starc_pg .head_pg .prog_box .progress {
  background-color: #C9C9C9;
  border-radius: 25px;
  height: 7px;
}
.starc_pg .head_pg .prog_box .progress .progress-bar {
  background-color: #204667;
  border-radius: 25px;
  transition: all 0.3s linear;
}
.starc_pg .ques_box {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 15px;
  background-color: #FFFFFF;
  margin-bottom: 35px;
  position: relative;
  box-shadow: 3px 15px 30px 0 rgba(138, 138, 138, 0.067);
}
.starc_pg .ques_box .label {
  padding: 15px 25px;
  border-radius: 20px;
  background-color: #F8F8F8;
  font-size: 20px;
  color: #0C0C0C;
  margin-bottom: 15px;
}
.starc_pg .ques_box .form-check {
  margin-inline-start: 2vw;
  margin-bottom: 12px;
}
.starc_pg .ques_box .form-check .form-check-label {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}
.starc_pg .ques_box .form-check-input:checked {
  background-color: var(--pink);
  border-color: var(--pink);
}
.starc_pg .ques_box .form-check-input:checked ~ .form-check-label {
  color: #11487B;
}
.starc_pg .ques_box .form-control {
  border-radius: 20px;
}
.starc_pg .submit_butn:hover {
  background-color: var(--pink);
  border-color: var(--pink);
}
.starc_pg::after {
  height: 150px;
  width: 100%;
  content: "";
  background: url(../images/divider-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -64px;
}

/**********************************************
    Start Edit another Page 
**********************************************/
.ass_result_pg {
  padding-top: 0;
  background-color: #FEFEFE;
}
.ass_result_pg .pg_head {
  padding: 60px 0;
  text-align: center;
  margin-bottom: 70px;
}
.ass_result_pg .pg_head.green_bg {
  background-image: linear-gradient(to top, #34C759, #00C8B3);
}
.ass_result_pg .pg_head.orange_bg {
  background-image: linear-gradient(to top, #FF8D28, #FFCC00);
}
.ass_result_pg .pg_head.red_bg {
  background-image: linear-gradient(to top, #FF383C, #f84a6a);
}
.ass_result_pg .main_box {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 25px;
  box-shadow: 3px 15px 20px rgba(205, 203, 203, 0.1294117647);
  border: 1px solid #f5f5f5;
}
.ass_result_pg .main_box .prog_circle_box .percent {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.ass_result_pg .main_box .prog_circle_box .percent svg {
  position: relative;
  width: 300px;
  height: 300px;
  transform: rotate(-90deg);
}
.ass_result_pg .main_box .prog_circle_box .percent svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 879px;
  stroke-dashoffset: calc(879px - 879px * var(--percent) / 100);
}
.ass_result_pg .main_box .prog_circle_box .percent .txt_cont {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ass_result_pg .main_box .prog_circle_box .percent .txt_cont .num {
  font-weight: 800;
  font-size: 55px;
}
.ass_result_pg .main_box .prog_circle_box .percent .txt_cont .state {
  font-size: 17px;
  color: #777777;
}
.ass_result_pg .main_box .prog_circle_box .percent::before {
  content: "";
  border: 2px dashed #eee;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ass_result_pg .main_box .txt_box .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.5;
}
.ass_result_pg .data_box {
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 3px 15px 20px rgba(205, 203, 203, 0.1294117647);
  border: 1px solid #f8f8f8;
}
.ass_result_pg .data_box .table {
  margin-bottom: 0;
}
.ass_result_pg .data_box .table thead, .ass_result_pg .data_box .table tbody, .ass_result_pg .data_box .table tfoot, .ass_result_pg .data_box .table tr, .ass_result_pg .data_box .table td, .ass_result_pg .data_box .table th {
  border-color: unset;
  border-style: unset;
  border-width: unset;
}
.ass_result_pg .data_box .table thead th {
  font-size: 18px;
  padding: 15px 10px;
  background-color: #f5f5f5;
}
.ass_result_pg .data_box .table thead th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.ass_result_pg .data_box .table thead th:last-child {
  font-weight: 400;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.ass_result_pg .data_box .table tbody th, .ass_result_pg .data_box .table tbody td {
  padding: 0.6rem 1rem;
}
.ass_result_pg .data_box .table tbody th {
  font-weight: 500;
  font-size: 14px;
}
.ass_result_pg .data_box .table tbody td {
  font-size: 13px;
  color: #525252;
}
.ass_result_pg .data_box .table tbody tr:first-child th, .ass_result_pg .data_box .table tbody tr:first-child td {
  padding-top: 1.2rem;
}

.text-green {
  color: #34C759;
}

.text-orange {
  color: #FFCC00;
}

.text-red {
  color: #FF383C;
}

/**********************************************
    Start Edit another Page 
**********************************************/
.profile_pg {
  background-color: #FEFEFE;
}
.profile_pg .prof_side {
  padding: 20px 0;
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 3px 6px 25px 0 rgba(117, 114, 114, 0.067);
}
.profile_pg .prof_side .nav-link {
  text-align: start !important;
  font-size: 14px;
  color: #1A1919;
  border-radius: 0;
  border-inline-end: 2px solid transparent;
  padding: 0.7rem 1.7rem;
  transition: all 0.3s linear;
  margin: 5px 0;
}
.profile_pg .prof_side .nav-link .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 15px;
  filter: invert(53%) sepia(26%) saturate(168%) hue-rotate(165deg) brightness(90%) contrast(85%);
}
.profile_pg .prof_side .nav-link.active {
  color: #204667;
  border-inline-end-color: #204667;
  background-color: #EDF0F3;
}
.profile_pg .prof_side .nav-link.active .icon {
  filter: invert(21%) sepia(8%) saturate(4467%) hue-rotate(167deg) brightness(100%) contrast(88%);
}
.profile_pg .tab_box {
  padding: 50px 3vw;
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 3px 6px 25px 0 rgba(117, 114, 114, 0.067);
}
.profile_pg .tab_box .tab_title {
  font-size: 20px;
  font-weight: bold;
  color: #204667;
}
.profile_pg .tab_box.info_tab .data_group {
  margin-bottom: 30px;
}
.profile_pg .tab_box.info_tab .data_group .label {
  color: #1A1919;
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.profile_pg .tab_box.info_tab .data_group .box_ineer {
  border-radius: 10px;
  border: 1px solid #E9E9E9;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #525252;
  position: relative;
}
.profile_pg .tab_box.info_tab .data_group .box_ineer i {
  color: #204667;
  margin-inline-end: 20px;
}
.profile_pg .tab_box.info_tab .data_group .box_ineer .edit_butn {
  position: absolute;
  inset-inline-end: 15px;
  color: #204667;
}
.profile_pg .tab_box.casses_tab .table {
  margin-bottom: 0;
}
.profile_pg .tab_box.casses_tab .table thead, .profile_pg .tab_box.casses_tab .table tbody, .profile_pg .tab_box.casses_tab .table tfoot, .profile_pg .tab_box.casses_tab .table tr, .profile_pg .tab_box.casses_tab .table td, .profile_pg .tab_box.casses_tab .table th {
  border-color: unset;
  border-style: unset;
  border-width: unset;
}
.profile_pg .tab_box.casses_tab .table thead th {
  font-size: 18px;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
}
.profile_pg .tab_box.casses_tab .table thead th span {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.profile_pg .tab_box.casses_tab .table thead th span::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #204667;
  position: absolute;
  bottom: -19px;
  inset-inline-start: 0;
}
.profile_pg .tab_box.casses_tab .table thead th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.profile_pg .tab_box.casses_tab .table thead th:last-child {
  font-weight: 400;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.profile_pg .tab_box.casses_tab .table tbody td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  color: #525252;
}
.profile_pg .tab_box.casses_tab .table tbody .link {
  color: #204667;
}
.profile_pg .tab_box.casses_tab .table tbody tr:first-child th, .profile_pg .tab_box.casses_tab .table tbody tr:first-child td {
  padding-top: 2rem;
}

.modal {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(42, 70, 93, 0.3215686275);
}
.modal .btn-close {
  width: 45px;
  height: 45px;
  position: absolute;
  left: -15px;
  top: -15px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 3px 6px 15px 0 rgba(159, 155, 155, 0.067);
  opacity: 1;
}
.modal .modal-content {
  padding: 40px;
  border-radius: 20px;
}
.modal .modal-content .form-control {
  border-radius: 35px;
}
.modal .modal-content .butn {
  min-width: 100px;
}

.logoutModal .icon_box {
  margin: 0 auto 25px auto;
}
.logoutModal .icon_box .icon {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.formModal .form-group {
  margin-bottom: 18px;
  position: relative;
}
.formModal .form-group .form-control {
  border-color: #eee;
  border-radius: 35px;
  padding-inline-start: 45px;
}
.formModal .form-group .form-control:focus {
  border-color: var(--primary);
  box-shadow: none !important;
}
.formModal .form-group input, .formModal .form-group select {
  height: 50px !important;
}
.formModal .form-group textarea.form-control {
  padding-top: 18px;
  resize: none;
}
.formModal .form-group .icon {
  position: absolute;
  top: 15px;
  inset-inline-start: 18px;
  color: var(--pink);
}
.formModal .form-group.show_hide_password {
  position: relative;
}
.formModal .form-group.show_hide_password .show_pass {
  position: absolute;
  top: 19px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
  z-index: 10;
  font-size: 13px;
}
.formModal .form-group.phone_group .input {
  padding-left: 120px;
  text-align: left;
}
.formModal .form-group.phone_group .input::-moz-placeholder {
  text-align: start;
}
.formModal .form-group.phone_group .input::placeholder {
  text-align: start;
}
.formModal .form-group.phone_group #contryCodeSelect {
  position: absolute;
  background-color: transparent;
  border: none !important;
  left: 0;
  top: 0;
  width: 120px;
}
.formModal .form-group .code-group {
  display: flex;
  justify-content: center;
}
.formModal .form-group .code-group .form-control {
  border: 1px solid #eee !important;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  text-align: center;
  border-radius: 10px;
  font-size: 25px;
  padding: 0;
}

/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  .d_mob_none {
    display: none !important;
  }
  .navs-container .navbar {
    position: relative;
  }
  .navs-container .navbar .logo {
    width: 150px;
  }
  .header .txt_box {
    margin-bottom: 25px;
  }
  .header .txt_box .title {
    font-size: 35px;
  }
  .header .img_box .secImg {
    transform: scale(1) !important;
  }
  .header::after {
    display: none;
  }
  .new_header {
    padding-top: 70px;
  }
  .new_header .txt_box .title {
    font-size: calc(1vw + 35px);
  }
  .new_header .txt_box .p {
        font-size: 15px !important;
    }

  .about_sec .txt_box {
    margin-top: 35px;
  }
  .about_sec .robot {
    width: 50px;
    bottom: unset;
    top: 285px;
  }
  .about_sec .plane {
    bottom: 10%;
    width: 100px;
  }
  .sec_head .gradient_txt {
    font-size: 36px;
  }
  
  .auth_pg .img_box .secImg {
        height: 300px !important;
    }

  .auth_pg   .robot {
        width: 50px;
        bottom: unset;
        top: 310px;
        inset-inline-end: 0;
  }
  .sec_head .p {
    font-size: 14px !important;
  }
  .target_sec .item {
    padding-bottom: 40px;
    border: 1px solid var(--secondary);
    height: 180px;
  }
  .target_sec .item::before {
      display: none ;
  }
  .target_sec .item .num {
    width: 30px;
    height: 30px;
    font-size: 12px;
    inset-inline-end: 15px;
    bottom: 15px;
  }
  .target_sec .target {
    width: 50px;
    inset-inline-end: 20px;
    top: 66px;
  }
  .works_sec {
    padding-bottom: 0;
  }
  .works_sec .item {
    padding-bottom: 50px;
  }
  .works_sec .item .border_line.border_top {
    top: unset;
    bottom: 0;
    border-top: unset;
    border-radius: 0 0 25px 25px;
    border-bottom: 1px solid #D38B89;
  }
  .works_sec .item .num {
    font-size: 25px;
    bottom: 8px;
  }
  .faq_sec .sec_head .p {
    font-size: 10px !important;
  }
  .faq_sec .accordion-item .accordion-button h3 {
    font-size: 16px;
  }
  .faq_sec .plane {
    width: 50px;
    top: 39px;
    left: 0;
  }
  .faq_sec .chats {
    bottom: 3%;
    right: 2%;
    width: 50px;
  }
  .footer .content .logo {
    width: 180px;
  }
  .footer .copyright_p {
    font-size: 10px;
  }
  .footer .copyright_p .alyom_logo {
    width: 40px;
  }
  .content_pg .plane {
    position: absolute;
    top: 52px !important;
    left: unset !important;
    right: unset !important;
    inset-inline-end: 30px !important;
    width: 40px !important;
  }
  .content_pg .chats {
    bottom: 3%;
    right: 2%;
    width: 50px;
  }
    .contact_pg .inner {
        margin-top: 35px;
    }
    .form-control {
        font-size: 16px !important ;
    }

    .navs-container .navbar .nav_end .butn {
        font-size: 13px;
        padding: 0.6rem 1rem;
    }
    
    .asses_pg2 .shape {
        display: none ;
    }
    
    .asses_pg .img_box  {
        margin-bottom: 50px;
    }

    .asses_pg .img_box .arrow {
        inset-inline-end: 0;
        top: 144px;
        width: 30px;
    }
    .asses_pg .data_box .title {
        font-size: 30px;
    }
    
    .starc_pg .head_pg {
        flex-wrap: wrap ;
        text-align: center;
        justify-content: center !important;
    }
    .starc_pg .head_pg .prog_box {
        margin: 15px 0 20px 0;
    }
    .starc_pg .ques_box .label {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .blog_pg .blog_card .txt_content {
        padding: 40px 40px;
    }

}
/**********************************************
    Start Edit EN direction 
**********************************************/
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 */