/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('../fonts/stylesheet.css');

/* Theme Color */
:root {
  --clr-primary-rgb: 255, 0, 0;
  --clr-secondary-rgb: 5, 0, 107;
  --clr-blue-700-rgb: 38, 45, 51;
  --clr-black-rgb: 30, 30, 30;
  --clr-white-rgb: 255, 255, 255;

  --clr-primary: rgba(var(--clr-primary-rgb), 1);
  --clr-secondary: rgba(var(--clr-secondary-rgb), 1);
  --clr-blue-700: rgba(var(--clr-blue-700-rgb), 1);
  --clr-black: rgba(var(--clr-black-rgb), 1);
  --clr-white: rgba(var(--clr-white-rgb), 1);


  --clr-white-600: #fcfcfc;

  --ff-primary: "Prosols Title Font", serif;
  --ff-body: "Prosols Body Font", sans-serif;

  --swiper-scrollbar-bottom: 0px;
  --swiper-scrollbar-size: 2px;
  --swiper-scrollbar-drag-bg-color: var(--clr-primary);
  --swiper-pagination-color: var(--clr-primary);
  --swiper-pagination-progressbar-size: 3px;
  --swiper-pagination-progressbar-bg-color: #D6D6D6;
}

/* Browser Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  /* font-size: 1rem; */
  font-weight: 400;
  line-height: 1.5;
  margin: 10px 1.2em;
  color: #898989
}

.error404 .site {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

p {
  margin-bottom: 0;
  font-size: 1.5em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
  font-weight: 400;
  /* color: var(--clr-black); */
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 0;
  top: 0;
  left: 0;
}

.pros__bgImg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.pros__bgImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: -1;
  scale: 1.1;
}

.pros__bgMask {
  mask-mode: alpha;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}


section[class^="pros__"] {
  position: relative;
  z-index: 3;
}

/* Theme Classes */
.pros__bg-light {
  background-color: #F9F9F9;
}

.pros__bg-grey {
  background-color: var(--clr-grey);
  color: #6A6A6A;
}

.pros__bg-blue {
  background-color: var(--clr-blue-700);
  color: var(--clr-white);
}

.pros__bg-dark {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

.pros__texture__bg::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('../images/texture_bg.png');
  top: 0;
  left: 0;
  background-repeat: repeat;
  background-size: 100%;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.3;
}

/* Custom Properties */
.custom-pad {
  padding: 70px 0;
}

/* component: buttons */
.pros__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  color: rgba(var(--btn-color-rgb), 1);
  text-transform: uppercase;
  font-size: 1.375em;
  padding: 0px 25px 0px 25px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  min-height: 55px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  transition: all 0.25s ease-in-out;
  --btn-color-rgb: 5, 0, 107;
  --btn-transition: all 0.25s ease-in-out;
}

.pros__btn-full:hover {
  background: transparent;
  border-color: #05006b;
  color: #05006b !important;
}

.pros__btn:has(.icon) {
  gap: 12px;
}

.pros__btn:has(.icon):hover {
  gap: 20px;
}

.pros__btn:hover {
  color: rgba(var(--btn-color-rgb), 1);
  background-position: 100% 0;
  transition: var(--btn-transition);
}

.pros__btn::before {
  position: absolute;
  content: '';
  width: 55px;
  height: 55px;
  left: 0;
  top: 0;
  border: 1px solid rgba(var(--btn-color-rgb), 0.5);
  border-radius: 40px;
  transition: var(--btn-transition);
}

.pros__btn:hover::before {
  width: 100%;
  border-color: rgba(var(--btn-color-rgb), 1);
  transition: var(--btn-transition);
}

.pros__btn.pros__btn-white {
  --btn-color-rgb: 255, 255, 255;
}

.pros__btn.pros__btn-red {
  --btn-color-rgb: 255, 0, 0;
}

/* component: headings */
h6 {
  font-size: 1.625em;
  line-height: 1.3em;
}

.pros__heading {
  position: relative;
  --heading-color-rgb: 30, 30, 30;
}

.pros__heading.pros__heading-blue {
  --heading-color-rgb: 5, 0, 107;
}

.pros__heading.pros__heading-red {
  --heading-color-rgb: 255, 0, 0;
}

.pros__heading.pros__heading-white {
  --heading-color-rgb: 255, 255, 255;
}

.pros__heading:has(+ *) {
  margin-bottom: 2em;
}

.pros__heading>* {
  color: rgba(var(--heading-color-rgb), 1);
}

.pros__heading h2 {
  font-size: 55px;
  line-height: 1.133;
}

.pros__heading h3 {
  font-weight: 500;
  font-size: 50px;
  line-height: 1.4;
}

.pros__heading h4 {
  font-size: 30px;
  line-height: 1.4;
}

.pros__heading h5,
h5 {
  font-size: 25px;
  line-height: 1.4;
}

.pros__heading h6 {
  font-family: var(--ff-body);
  font-size: 1.375em;
  line-height: 1.1em;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(var(--heading-color-rgb), 1);
  position: relative;
  padding-left: 48px;
  z-index: 2;
}

.pros__heading h6::before {
  position: absolute;
  content: '';
  background-color: rgba(var(--heading-color-rgb), 0.9);
  width: 71px;
  height: 2px;
  left: -1.5em;
  transform: translateY(-50%);
  top: 50%;
  z-index: -1;
}

/* components: copy */
.pros__widget-content> :not(:last-child) {
  margin-bottom: 2em;
}

.pros__title:has(+ *) {
  margin-bottom: 12px;
}

.pros__content:has(+ *) {
  margin-bottom: 2em;
}

.pros__content p {
  font-size: 1.25em;
  /* 20px */
  line-height: 1.6;
  color: rgba(var(--heading-color-rgb), 0.8);
}

.text-content-justify p {
  text-align: justify;
}



.pros__heading.light::before {
  background-color: rgba(255, 255, 255, 0.18);
}

.pros__heading:has(h3) {
  /* border: 1px solid rgba(30, 30, 30, 0.09);
  width: fit-content;
  padding: 10px 5%; */
}

.pros__heading h3 {
  border: 1px solid rgba(30, 30, 30, 0.09);
  width: fit-content;
  padding: 10px 5%;
  background-color: var(--clr-white);
}

.pros__heading-center h3 {
  margin-inline: auto;
}

.pros__heading-white {
  --bs-heading-color: var(--clr-white) !important;
}

.pros__desc> :not(:last-child) {
  margin-bottom: 16px;
}

[class^="swiper-button-"]::after {
  content: "";
  display: none;
}

[class^="swiper-button-"] {
  position: absolute;
  background-color: transparent;
  font-size: 18px;
  z-index: 2;
  top: unset;
  left: 0;
  bottom: 15px;
  /* transform: translateY(-50%); */
  width: 90px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-radius: 50px;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
  transition: all 0.3s ease-in-out;
  z-index: 4;
}

[class^="swiper-button-"]:hover {
  background-color: var(--clr-white);
  color: var(--clr-black);
  transition: all 0.3s ease-in-out;
}

[class^="swiper-button-next"] {
  left: 100px;
}

/* .swiper-button-next, .swiper-button-prev {
  width: 35px;
  height: 35px;
  color: #fff;
  background-color: var(--clr-purple);
  border-radius: 50%;
} */
/* .swiper-wrapper {
  padding-bottom: 15px;
} */
.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: 0px;
}





.form-group:not(.form-button) {
  margin-bottom: 16px;
}

.form-control::placeholder {
  color: var(--clr-grey);
}

textarea.form-control {
  min-height: 160px;
  resize: none;
}

/* keyframes */
.kenburns-bottom {
  -webkit-animation: kenburns-bottom 5s ease-out reverse both;
  animation: kenburns-bottom 5s ease-out reverse both;
}

@-webkit-keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

@keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

@keyframes cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


/* keyframes */
/** =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ HOMEPAGE START =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ */

/** ----------------------------
*      Section: Header Start
**  --------------------------*/
.pros__header {
  position: absolute;
  width: calc(100% - 2.4em);
  top: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile_view .pros__socials {
  display: none;
}

.pros__header-nav .navbar-brand.mobile__logo {
  display: none;
}

.pros__header-nav .navbar-brand {
  display: block;
  padding: 10px 16px;
  max-width: 55%;
  background-color: #fff;
  border-radius: 12px;
  margin: 0 auto;
}

.pros__header-nav .navbar-nav .nav-item {
  flex-grow: 1;
  position: relative;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #fff;
  color: var(--clr-black);
}
.pros__header-nav .dropdown-item.active a{
color: rgb(255 0 0) !important;
}

.pros__header-nav .navbar-nav .nav-item::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  bottom: -1px;
  right: 0;
  left: unset;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}

.pros__header-nav .navbar-nav .nav-item:hover::before,
.pros__header-nav .navbar-nav .nav-item:active::before {
  width: 100%;
  left: 0;
  right: unset;
  transition: width 0.3s ease-in-out;
}

.pros__header-nav .navbar-nav .nav-item .nav-link {
  --bs-nav-link-color: var(--clr-white);
  line-height: 4.5em;
  padding: 0px 20px;
  font-size: 20px;
  text-align: center;
  position: relative;
}

.pros__header-nav .navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: '';
  top: 23px;
  right: 18px;
  left: 18px;
  bottom: 18px;
  background: transparent;
  border-radius: 10px;
  z-index: -1;
}

.pros__header-nav .nav-item.active .nav-link::before {
  background: #fff;
}

.pros__header-nav .nav-item.active .nav-link {
  /* color: #fff; */
  color: var(--clr-primary);
  /* background-color: #f0f1f1; */
}

.pros__socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pros__header-right .pros__socials {
  justify-content: center;
}

.pros__socials li a {
  display: inline-flex;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  font-size: 1.25em;
  background-color: rgba(255 255 255/ 0.4);
  border: 1px solid var(--clr-white);
  color: var(--clr-white);
  border-radius: 50%;
  transition: 0.4s all ease-in-out;
}

.pros__socials li a:hover {
  background: #fff;
  color: #262d33;
}




/* .pros__header-nav .navbar-nav .nav-item.dropdown {
  position: static;
} */
.pros__header-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu__content {
  width: 25%;
  flex: 1 0 auto;
}

.dropdown-menu__content h4 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 8px;
}

.dropdown-menu__content p {
  font-size: 18px;
  line-height: 32px;
  color: #4A4A4A;
}

.pros__header-nav .navbar-nav .nav-item.dropdown .dropdown-menu {
  padding: 0;
  background-color: #F0F1F14F;
  border-radius: 0;
  border: none;
  backdrop-filter: blur(10px);
}

.pros__header-nav .navbar-nav .nav-item.dropdown .dropdown-menu ul {
  flex: 0 0 auto;
  width: 20%;
}

.pros__header-nav .navbar-nav .nav-item.dropdown .dropdown-menu li a {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 15px;
  color: var(--clr-white);
  width: 100%;
  display: inline-block;
}

.pros__header-nav .navbar-nav .nav-item.dropdown li:not(:last-child) .dropdown-item {
  border-bottom: 1px solid #FFF3;
}

.pros__header-nav .navbar-nav .nav-item.dropdown .dropdown-item:hover {
  background-color: #262d33;
  color: var(--clr-black);
}


.navbar-toggler {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  outline: none;
  box-shadow: unset !important;
  border: none;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 50px;
  background-color: var(--clr-primary);
}

.pros__header-top {
  background-color: #FBEADE;
  padding: 11px 0;
}

.pros__header-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pros__header-list li a {
  display: flex;
  align-items: center;
  color: var(--clr-black);
}

.pros__header-list li a img {
  height: 25px;
  object-fit: contain;
}

.pros__header-list li a .icon {
  font-size: 13px;
  margin-right: 5px;
}

.pros__header-list li a p {
  font-size: 14px;
}

.pros__header-socials {
  display: flex;
  justify-content: flex-end;
}

.pros__header-socials li a {
  font-size: 14px;
  color: var(--bs-black);
}

.pros__header-socials li+li {
  margin-left: 12px;
}

.pros__offer-marquee p {
  font-size: 14px;
  text-align: center;
}

.pros__header-nav .navbar-nav {
  flex: 0 0 auto;
  width: 43%;
}

.pros__header-account {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.pros__header-account li a {
  font-size: 20px;
  color: var(--clr-black);
  display: inline-block;
}

.pros__header-account li a img {
  height: 25px;
  object-fit: contain;
}

.pros__header-wrap {
  border-top: 1px solid #0000000d;
}


.pros__header-nav {
  padding: 0;
}

.dropdown .dropdown-menu {
  right: 0;
  left: 0;
  transform: translateY(20px);
  transition: 0.4s all;
  display: block;
  opacity: 0;
  visibility: hidden;
}

.dropdown-menu .dropdown-item {
  padding: 0px;
  transition: var(--btn-transition);
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 9px;
  vertical-align: 1px;
  content: "\f107 ";
  border: none;
  font-family: "fontawesome";
  font-size: 16px;
}

.hamburger_logo {
  max-width: 160px;
}

/** ----------------------------
*      Section: Header End
**  --------------------------*/
/** ----------------------------
*      Section: Hero Start
**  --------------------------*/
.pros__hero {
  min-height: 100vh;
}

.pros__hero::after {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 75%;
  top: 0;
  z-index: 3;
}

.pros__hero::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 25%;
  top: 0;
  z-index: 3;
}

.pros__hero {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2))25%, linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2))75%;
}


.pros__hero .pros__bgImg img {
  -webkit-animation: kenburns-bottom 5s ease-out reverse both;
  animation: kenburns-bottom 5s ease-out reverse both;
}

.pros__hero-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros__hero-content.pros__hero-left {
  align-items: flex-end;
}

.pros__hero-content.pros__hero-center {
  justify-content: center;
  align-items: flex-start;
  padding-top: 24%;
}

.pros__hero-content.pros__hero-left .pros__content {
  padding: 0 0 15% 2em;
}

.pros__hero-content.pros__hero-left .pros__content p {
  margin-bottom: 1.25em;
  max-width: 230px;
}

.pros__hero-title {
  text-align: center;
  max-width: 90%;
}

.pros__hero-title h1 {
  font-size: 4em;
  line-height: 1.13;
  font-weight: 400;
}

.pros__hero-inner .pros__hero-title h1 {
  font-size: 50px;
}

#typing-wrapper {
  display: inline-flex;
  position: relative;
  width: fit-content;
  min-width: 8ch;
}

#typing-word {
  padding-right: 15px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  text-align: left;
  position: relative;
}

#typing-word::after {
  content: '';
  position: absolute;
  right: 0px;
  animation: cursor-blink 0.8s steps(1) infinite;
  color: currentColor;
  font-weight: 400;
  width: 4px;
  height: 60px;
  background-color: white;
  z-index: 3;
  top: 10px;
}



/** ----------------------------
*      Section: Hero End
**  --------------------------*/
/** ----------------------------
*      Section: About Start
**  --------------------------*/

.pros__about {
  position: relative;
  /* padding: 70px 0; */
  /* height: 100vh; */
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}



.pros__about-wrap .company__overview .pros__media.pros__bgMask img {
  object-position: top;
}

.pros__vitals-wrap .row {
  padding-bottom: 10px;
}

.pros__about-vision {
  display: inline-block;
  filter: drop-shadow(0px 0px 1px rgb(139, 139, 139));
}

.pros__about-vision .pros__bgMask {
  background-color: #f9f9f9;
  padding: 1.5rem 1.5rem;
}

.pros__media {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.pros__media:hover {
  transform: scale(0.95);
  transition: all 0.3s ease-in-out;
}

.pros__media .pros__bgMask img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.pros__media:hover .pros__bgMask img {
  transform: translate3d(10px, 0px, 0) scale(1.05);
  transition: all 0.3s ease-in-out;
}

.pros__project_inner .pros__media:hover .pros__bgMask img {
  transform: none;
}

.pros__about-vision .pros__title h6 {
  color: var(--clr-black);
}

/** ----------------------------
*      Section: About End
**  --------------------------*/
/** ----------------------------
*      Section: Consult Start
**  --------------------------*/
.pros__consultation {
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
  padding-bottom: 140px;
}

.pros__conItem {
  position: relative;
  z-index: 2;
}

.pros__consultation-content .pros__conItem {
  min-height: 370px;
}

.pros__consultation-content .row>* {
  margin-bottom: 25px;
}

.pros__conItem-1 {
  --con-bg-rgb: 253, 223, 223;
}

.pros__conItem-2 {
  --con-bg-rgb: 253, 247, 223;
}

.pros__conItem-3 {
  --con-bg-rgb: 223, 253, 225;
}

.pros__conItem-4 {
  --con-bg-rgb: 223, 243, 254;
}

.pros__conItem-5 {
  --con-bg-rgb: 253, 223, 223;
}

.pros__conItem-6 {
  --con-bg-rgb: 237, 240, 255;
}

.pros__conItem-wrap {
  background-color: rgba(var(--con-bg-rgb), 1);
  padding: 40px 40px 40px 40px;
  position: relative;
}

.pros__conItem .pros__content> :not(:last-child) {
  margin-bottom: 0.625em;
}

.pros__conItem-count {
  position: absolute;
  right: 39px;
  top: 0px;
  display: inline-flex;
  font-size: 24px;
  color: var(--clr-black);
  line-height: 1;
}

.pros__icon {
  margin-bottom: 1.5em;
}

.pros__icon img {
  height: 75px;
  object-fit: contain;
  width: 75px;
}

.pros__conItem .pros__content h6 {
  color: var(--clr-black);
}

/** ----------------------------
*      Section: Consult End
**  --------------------------*/
/** ----------------------------
*      Section: Sector Start
**  --------------------------*/

.pros__sector::before {

  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 25%;
  top: 0;
  z-index: 3;
}

.pros__sector::after {

  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 75%;
  top: 0;
  z-index: 3;
}

.pros__sector-left {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pros__sector-navs.nav-tabs {
  --bs-nav-tabs-link-active-bg: transparent;
  --bs-nav-tabs-link-active-border-color: none;
  --bs-nav-link-color: var(--clr-white);
  --bs-nav-tabs-link-active-color: var(--clr-white);
  --bs-nav-link-hover-color: var(--clr-white);
  border: none !important;
}

.pros__sector-navs.nav-tabs .nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 70px;
}

.pros__sector-navs.nav-tabs .nav-link {
  border: none !important;
}

.nav-tabs .nav-link:not(.active) {
  opacity: 0.6;
}

.pros__sector-navs .nav-link.active .pros__sector-title h3 {
  font-size: 38px;
}

.pros__sector-navs .nav-link.active .pros__sector-title h3 {
  font-size: 44px;
}

.pros__sector-navs .nav-link:not(.active) .pros__sector-icon {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.pros__sector-navs .nav-link .pros__sector-icon {
  display: inline-flex;
  width: 100%;
  max-height: 45px;
  margin-left: auto;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.pros__sector-icon img {
  margin-left: auto;
  height: 135px;
  object-fit: contain;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.pros__sector {
  margin-top: -50px;
}


/** ----------------------------
*      Section: Sector End
**  --------------------------*/
/** ----------------------------
*     Section: Founder Start
**  --------------------------*/
.pros__founder {
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.pros__founder-heading h6 {
  color: var(--clr-black);
}

.pros__founder-left,
.pros__founder-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pros__founder-left .pros__content,
.pros__founder-center .pros__content {
  border-top: 1px solid #E7E7E7;
  padding-top: 30px;
}

.pros__founder-left .pros__content p,
.pros__founder-center .pros__content p {
  min-height: 160px;
}

.pros__quote {
  position: relative;
}

.pros__founder-center .pros__quote {
  padding: 0 25px;
}

.pros__founder-center .pros__quote::after {
  content: '';
  position: absolute;
  background: url(../images/quote_left.png);
  width: 38px;
  height: 38px;
  left: -18px;
  top: -16px;
}

.pros__founder-center .pros__quote::before {
  content: '';
  position: absolute;
  background: url(../images/quote_right.png);
  width: 38px;
  height: 38px;
  right: 30px;
  bottom: 0;
}

/** ----------------------------
*     Section: Founder End
**  --------------------------*/
/** ----------------------------
*     Section: Services Start
**  --------------------------*/
/* .pros__services::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 25%;
  top: 0;
  z-index: 3;
}
.pros__services::after {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 75%;
  top: 0;
  z-index: 3;
} */
.pros__services-icon {
  width: 240px;
  height: 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;

}

.pros__services-swiper .swiper-button-prev {
  right: 140px;
  left: unset;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  bottom: -20px;
}

.pros__services-swiper .swiper-button-next {
  left: unset;
  right: 60px;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  bottom: -20px;
}

.pros__services-swiper .swiper-button-prev:hover,
.pros__services-swiper .swiper-button-next:hover {
  background: transparent;
  opacity: 0.7;
}


.pros__services .pros__heading h6 {
  max-width: 450px;
}

.pros__services-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/service-icon-bg.webp');
  top: 0;
  left: 0;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.pros__services-icon img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pros__services-single {
  text-align: center;
  flex: 0 0 auto;
  /* width: 20%; */
  transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
  padding: 0 32px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pros__services-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.pros__services-single .pros__services-content {
  opacity: 1;
  color: var(--clr-white);
  transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
  padding-top: 15px;
}

.pros__services-swiper .swiper-slide {
  height: auto;
  transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.pros__services-swiper .swiper-slide-next+.swiper-slide .pros__services-content.pros__content {
  /* display: block; */
  transition: all 0.6s ease-in-out;
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  transform: translateY(10px);
}

.pros__services-single:not(.active) .pros__services-content {
  opacity: 0;
  transition: all 0.6s ease-in-out;
  /* display: none; */
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(0px);

}

.pros__services-single.active,
.pros__services-swiper .swiper-slide-next+.swiper-slide .pros__services-single {
  flex-grow: 1;
  transition: width 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
  border-radius: 15px;
  border-top: none;
  border-bottom: none;
  border-inline: 2px solid #ffffff59;

}

.pros__services-swiper .swiper-slide-next+.swiper-slide .pros__services-single::after {
  display: none;
}

.pros__services-swiper .swiper-slide:not(.swiper-slide-active) .pros__services-content {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.pros__services-wrap {
  margin-top: 70px;
}


.pros__services-content h6 {
  text-transform: uppercase;
  color: var(--clr-white);
  font-size: 1.4em;
  margin-bottom: 8px;
}

.pros__services-swiper .swiper-button-next.swiper-button-disabled,
.pros__services-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: auto !important;
}


.pros__services-swiper {
  ---swiper-pagination-color: var(--clr-white);
}

.pros__services-swiper .swiper-pagination-bullets {
  --swiper-pagination-bottom: 0;
  position: relative !important;
  margin-top: 32px;
}

.pros__services-swiper .swiper-pagination-bullet {
  background-color: var(--clr-white);
  border-radius: 2px;
  margin: 0 1px !important;
}

.pros__services-carousel {
  padding-top: 70px;
}

.pros__services-single::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #ffffff57;
  bottom: 70px;
  left: 0;
}

.pros__services {
  margin-top: -62px;
}

.pros__services-carousel .pros__content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pros__services_listing li a {
  color: #1E1E1E;
  transition: 0.4s all ease-in-out;
  display: block;
}

.pros__services_listing li a:hover {
  color: rgb(5 0 107);
}

/* .pros__services_listing li:has(a:hover)::after {
filter: brightness(0) saturate(100%) invert(21%) sepia(92%) saturate(6685%) hue-rotate(357deg) brightness(95%) contrast(114%);
} */



/** ----------------------------
*     Section: Services End
**  --------------------------*/
/** ----------------------------
*     Section: Project Start
**  --------------------------*/
.pros__project {
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.pros__project-single {
  --content-padding-x: 42px;
  padding: 0 32px;
}

.pros__project-single-2 {
  padding-right: var(--content-padding-x);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pros__project-single-3 {
  display: flex;
  align-items: center;
}

.pros__project-single-3 .pros__project-link {
  flex: 0 0 auto;
  width: 50%;
}

.pros__project-single img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}

.pros__project-content {
  margin-top: 30px;
}

.pros__project-single-3 .pros__project-content {
  margin: 0 0 0 50px;
}

.pros__project-title {
  margin-bottom: 24px;
}

.pros__project-title h4 {
  font-size: 32px;
  color: var(--clr-black);
}

.pros__project-btn-wrap {
  margin-top: 70px;
  margin-bottom: 20px;
}

.pros__project-single .pros__content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/** ----------------------------
*     Section: Project End
**  --------------------------*/





/** ----------------------------
*     Section: Contact Start
**  --------------------------*/
.pros__contact {
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.pros__contact-form {
  position: relative;
  z-index: 2;
  padding: 45px 42px;
}

.pros__contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: url('../images/contact-form-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
}


.form-group.form-button {
  text-align: center;
}

.form-control {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #bababa;
}

.form-control:focus {
  background-color: transparent;
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

textarea.form-control {
  height: 200px !important;
}

.form-floating .form-control,
.form-floating textarea.form-control {
  padding: 1rem 0.15rem;
  min-height: 65px;
}

.form-floating label {
  padding: 1rem 0;
  font-size: 18px;
  color: #808080;
  background-color: transparent;
}

.form-floating label::after {
  display: none;
}

/* .form-floating {
  position: relative;
}

.form-floating .form-control,
.form-floating textarea.form-control {
  padding: 1.2rem 1rem 0.4rem 1rem;
  height: auto;
}

.form-floating label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1rem;
  color: #666;
  background-color: white;
  padding: 0 0.25rem;
  pointer-events: none;
  transition: 0.3s ease;
} */

/* On focus or when input has value */
/* .form-floating .form-control:focus + label,
.form-floating .form-control:not(:placeholder-shown) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
  top: 0.2rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: #007BFF;
} */
.pros__contact-link {
  display: inline-flex;
  align-items: center;
}

.pros__contact-link .icon {
  flex: 0 0 auto;
  width: 35px;
  display: inline-flex;
  height: 35px;
}

.pros__contact-info li+li {
  margin-top: 24px;
}

.pros__contact-link p {
  margin-left: 20px;
  font-size: 22px;
  color: #808080;
}

.pros__contact-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pros__contact-right .pros__heading {
  max-width: 80%;
}

/* Contact-Inner start */
.pros__contact-inner .pros__contact-link .icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.pros__contact-inner .pros__contact-link {
  flex-direction: column;
  align-items: start;
}

.pros__contact-inner .pros__contact-link p {
  margin-left: 0;
}

.pros__contact-inner .pros__contact-link h6 {
  color: var(--clr-black);
}

.pros__contact-inner .pros__contact-inner-list li {
  padding: 35px 35px 45px 35px;
  position: relative;
}

.pros__contact-inner .pros__contact-inner-list li::after {
  content: '';
  position: absolute;
  background: #E7E7E7;
  bottom: 0;
  left: -25px;
  right: -13px;
  height: 1px;
}

.pros__contact-inner .pros__contact-inner-list li:first-child:before {
  content: '';
  position: absolute;
  background: #E7E7E7;
  top: 0;
  left: -25px;
  right: -13px;
  height: 1px;
}


.pros__contact-inner .pros__widget-content {
  position: relative;
  padding-top: 45px;
  padding-bottom: 60px;
}

.pros__contact-inner .pros__widget-content::after {
  content: '';
  position: absolute;
  background: #E7E7E7;
  left: -11px;
  right: -12px;
  top: 0;
  height: 1px;
}


.pros__contact-inner .pros__widget-content::before {
  content: '';
  position: absolute;
  background: #E7E7E7;
  left: -11px;
  right: -12px;
  bottom: 0;
  height: 1px;
}

.pros__contact-inner .pros__contact-right.pros__widget-content::before {
  display: none;
}

.pros__contact-inner .pros__contact-right {
  padding-left: 0;
}

.pros__contact-inner .pros__contact-right .pros__contact-inner-list li::after {
  left: -12px;
  right: -23px;
}

.pros__contact-inner .pros__contact-right .pros__contact-inner-list li:first-child:before {

  left: -12px;
  right: -23px;
}

.pros__contact-inner .pros__widget-content.pros__contact-right::after {
  display: none;
}

.pros__contact-inner .pros__contact-form::before {
  display: none;
}

.pros__contact-inner .form-group.form-button {
  margin-top: 30px;
}

.pros__contact-inner .wpcf7 {
  text-align: left;
}

.pros__contact-inner .form-group.form-check {
  padding-left: 0px;
}

.pros__contact-inner .wpcf7-list-item {
  margin-left: 0;
  cursor: pointer;
}

.pros__contact-inner .wpcf7-list-item label {
  display: flex;
  align-items: baseline;
  column-gap: 10px;
}

.form-group:has(select),
.form-group:has(input [type=file]) {
  position: relative;
}

.form-group:has(select)::after {
  content: '\f107';
  position: absolute;
  width: 25px;
  height: 25px;
  right: 3px;
  font-family: "fontawesome";
  top: 20px;
}


.form-group:has(input[type="file"])::after {
  content: '\f093';
  position: absolute;
  width: 25px;
  height: 25px;
  right: 3px;
  font-family: "FontAwesome";
  top: 28px;
}

.pros__contact-inner .form-group input[type="file"] {
  padding-top: 45px;
}


/* Contact-Inner end */

/** ----------------------------
*     Section: Contact End
**  --------------------------*/
/** ----------------------------
*     Section: Footer Start
**  --------------------------*/

.pros__footer-center {
  min-height: 240px;
}

.error-404 {
  text-align: center;
  padding: 150px 0;
}

html:has(.error404) {
  height: 98%;
}

.error404 {
  height: 100% !important;
}

.error404 .pros__footer {
  margin-top: auto;
}

.pros__footer {
  position: relative;
  z-index: 3;
}

.pros__footer::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 25%;
  top: 0;
  z-index: 3;
}

.pros__footer::after {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 75%;
  top: 0;
  z-index: 3;
}

/* clients */
.pros__client-single {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pros__client-single .pros__media-img {
  background-color: var(--clr-white);
  border-radius: 16px;
  height: 130px;
}

.pros__client-single .pros__media-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pros__clients-swiper {
  ---swiper-pagination-color: var(--clr-white);
}

.pros__clients-swiper .swiper-pagination-bullets {
  --swiper-pagination-bottom: 0;
  position: relative !important;
  margin-top: 32px;
}


.pros__clients-swiper .swiper-pagination-bullet {
  background-color: var(--clr-white);
  border-radius: 2px;
  margin: 0 1px !important;
}

.pros__clients-center .swiper-button-next {
  width: 60px;
  height: 60px;
  left: unset;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F0F1F14F;
  border-radius: 0;
  border: none;
  backdrop-filter: blur(10px);
  border-radius: 50%;
}

.pros__clients-center .swiper-button-prev {
  width: 60px;
  height: 60px;
  left: 0;
  right: unset;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F0F1F14F;
  border: none;
  backdrop-filter: blur(10px);
  border-radius: 50%;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 25px;
}

.pros__widget-content {
  position: relative;
}



/* clients */

.pros__footer-wrap {
  margin-top: 50px;
}

.pros__footer-logo {
  text-align: center;
}

.pros__footer-logo a {
  display: inline-flex;
  margin: 0 auto;
  justify-content: center;
}

.pros__footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pros__footer-links .pros__heading h6::before {
  width: 40px;
  left: 0;
}

.pros__footer-nav {
  padding-left: 48px;
}

.pros__footer-nav li+li {
  margin-top: 16px;
}

.pros__footer-nav li a {
  font-size: 20px;
  color: var(--clr-white);
  position: relative;
  transition: 0.4s all;
}

.pros__footer-nav li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: rgb(255, 255, 255, 0.7);
  bottom: -5px;
  right: 0;
  left: unset;
  transition: 0.4s all;
}

.pros__footer-nav li a:hover::after {
  width: 100%;
  left: 0;
  right: unset;
}

.pros__footer-nav li a:hover {
  opacity: 0.7;
}

.pros__footer-copyright {
  padding: 32px 0;
  border-top: 1px solid var(--clr-white);
  text-align: center;
}

.pros__footer-copyright h6 {
  font-size: 18px;
  font-family: var(--ff-body);
}


/** ----------------------------
*     Section: Footer End
**  --------------------------*/

.pros__widget-content {
  --content-padding-x: 42px;
  padding: 0 32px;
}

.pros__widget-content[class*="-left"] {
  padding-left: var(--content-padding-x);
}

.pros__widget-content[class*="-right"] {
  padding-right: var(--content-padding-x);
}

.pros__heading-top {
  margin-top: 3rem;
}

.pros__heading-bottom {
  margin-bottom: 3rem;
}

.pros__btn-full {
  width: 100%;
  background-color: rgba(var(--btn-color-rgb), 1);
  color: var(--clr-white);
  min-height: 78px;
  border: 1px solid transparent;
}

.pros__btn-full:hover {
  color: var(--clr-white);
}

.pros__btn-full::before {
  display: none;
}

.pros__btn-full .icon {
  display: none;
}


.pros__media-img.parallax_vertical {
  scale: 1.2 !important;
}

.pros__services-swiper {
  /* height: 100%; */
  overflow: visible;
  height: 470px;
}

/* hero */
.pros__hero .pros__bgMedia {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.pros__bgImg.parallax_vertical {
  top: -4.5%;
  /* top: -60px */
}

.pros__hero-inner .pros__bgImg.parallax_vertical {
  top: -9%;
}


.form-group.form-button {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.form-group.form-button::before {
  position: absolute;
  content: '';
  width: 55px;
  height: 55px;
  left: 0;
  top: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 40px;
  transition: all 0.25s ease-in-out;
}

.form-group.form-button:hover::before {
  width: 100%;
  transition: all 0.25s ease-in-out;
}

.form-group.form-button .pros__btn {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24"><g fill="none"><path stroke="#05006b" stroke-linecap="round" stroke-linejoin="round" d="M17 12H3" stroke-width="1"></path><path fill="#05006b" d="m21.643 11.786l-3.431-2.059a.8.8 0 0 0-1.212.686v3.174a.8.8 0 0 0 1.212.686l3.43-2.059a.25.25 0 0 0 0-.428"></path></g></svg>');
  background-repeat: no-repeat;
  background-position: 93% 50%;
  padding-right: 25px;
  background-color: transparent;
}

.form-group.form-button .pros__btn:hover {
  /* padding-right: 76px; */
}

.form-group.form-button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

.wpcf7-spinner {
  background-color: transparent;
  border: 1px solid rgba(var(--clr-blue-700-rgb), 1);
}

.wpcf7-spinner::before {
  background-color: var(--clr-blue-700);
}


/** ----------------------------
*   Section: Inner Hero Start
**  --------------------------*/
.pros__hero.pros__hero-inner {
  min-height: 60vh;
}

.pros__hero.pros__hero-inner .pros__hero-content {
  min-height: 60vh;
  align-items: flex-end;
}

/** ----------------------------
*   Section: Inner Hero End
**  --------------------------*/
/** ----------------------------
*   Section: Contact Start
**  --------------------------*/
/** ----------------------------
*   Section: Contact End
**  --------------------------*/


/** ----------------------------
*       Page: About Start
**  --------------------------*/
.pros__about-inner .pros__about-vision {
  background-color: #f9f9f9;
  padding: 32px 32px 32px 32px;
  margin-top: 70px;
}

.pros__about-vision-left {
  margin: 0px 40px -70px 32px;
}

.pros__proposition {
  /* background: linear-gradient(rgb(229, 229, 229),#E5E5E5)25%, linear-gradient(#E5E5E5,#E5E5E5)50%, linear-gradient(#E5E5E5,#E5E5E5)75%; */
  background: linear-gradient(rgb(229, 229, 229), rgb(229, 229, 229))25%, linear-gradient(rgb(229, 229, 229), rgb(229, 229, 229))50%, linear-gradient(rgb(229, 229, 229), rgb(229, 229, 229))75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.pros__proposition-left {
  position: sticky;
  top: 50px;
  padding-left: 0 !important;
}

.pros__proposition-left-wrap {
  padding-left: 46px;
}

.pros__proposition-right-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 1600px;
  padding-top: 100px;
  justify-content: center;
}

.pros__proposition-box {
  width: 50%;
  padding: 40px;
  border-top: 1px solid rgb(229, 229, 229);
}

.pros__proposition-icon {
  margin-bottom: 20px;
}

.pros__proposition-box .pros__title {
  color: var(--clr-black);
}

.pros__history {
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
  border-top: 1px solid #E5E5E5;
}

.pros__vitals {
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.pros__vitals-wrap {
  padding-top: 42px;
}

.pros__vitalItem {
  filter: drop-shadow(0px 0px 1px rgb(139, 139, 139));
}

.pros__vitalItem-wrap {
  background-color: #f9f9f9;
  padding: 30px 32px;
}

.pros__vitalItem .pros__content h6 {
  color: var(--clr-black);
  margin-bottom: 16px;
}

.pros__leadership {
  background: linear-gradient(#E5E5E5, #E5E5E5)25%, linear-gradient(#E5E5E5, #E5E5E5)75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.pros__teamItem .pros__media-img img {
  width: 100%;
}

.pros__teamItem .pros__content {
  text-align: center;
  margin-top: 32px;
}

.pros__teamItem .pros__content h6 {
  color: var(--clr-black);
}

.pros__element .pros__media-img.parallax_vertical {
  scale: 1 !important;
}

.pros__element .pros__media-img.parallax_vertical img {
  margin: 0 auto;
  height: 120px;
}


.pros__about {
  padding-bottom: 130px;
}

.pros__about-wrap .pros__media.pros__bgMask,
.pros__founder-right .pros__media {
  height: 450px;
  border-radius: 20px;

}

.pros__about-wrap .pros__media.pros__bgMask .pros__media-img,
.pros__founder-right .pros__media-img {
  height: 100%;
}

.pros__about-wrap .pros__media.pros__bgMask .pros__media-img img,
.pros__founder-right .pros__media-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/** ----------------------------
*       Page: About End
**  --------------------------*/

.pros__about-right:has(.pros__element) {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 100px;
}

.pros__widget-content.pros__consultation-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 100px;
  padding-bottom: 0;
  height: unset;
}


.pros__project-elements .pros__media.pros__element:nth-child(1) {
  position: absolute;
  top: 30px;
  right: 90px;
}

.pros__project-elements .pros__media.pros__element:nth-child(2) {
  position: absolute;
  left: 90px;
  bottom: 100px;
}

.pros__element .pros__media-img.parallax_vertical img {
  height: 90px;
}

.pros__footer-right .pros__media.pros__element {
  position: absolute;
  top: -150px;
  margin-bottom: 0;
  right: 120px;
}

.pros__widget-content.pros__footer-right {
  position: relative;
}

.form-floating span:has(.form-control:focus)+label,
.form-floating span:has(.form-control:not(:placeholder-shown))~label {
  color: rgba(var(--bs-body-color-rgb), .65);
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

/* .form-floating  .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb),.65);
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
} */
.form-floating .form-control:focus,
.form-floating textarea.form-control:focus,
.form-floating .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}



/** ----------------------------
*       Page: Project Inner Start
**  --------------------------*/
.pros_project_inner .overlay::before {
  background-color: rgb(5, 0, 107, 0.35);
}

.breadcrumb li a {
  color: #fff;
  transition: 0.4s all;
}

.breadcrumb li a:hover {
  opacity: 0.7;
}

.breadcrumb li,
.breadcrumb-item.active {
  color: #fff;
  font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  content: var(--bs-breadcrumb-divider, "-");
  font-size: 18px;
}

.our_project_inner_row>*:nth-child(3n+2) {
  margin-top: 30px;
}

.our_project_inner_row>*:nth-child(3n) {
  margin-top: 60px;
}

.our_project_inner_row .pros__media-img img {
  width: 100%;
  height: 100%;
}


.our_project_inner_row .pros__project-single {
  padding: 0 10px;
}

.pros__project_inner::after {
  content: '';
  position: absolute;
  background: rgb(231, 231, 231, 0.7);
  width: 1px;
  height: 95%;
  top: 0;
  bottom: 0;
  left: 50%;
}

.pros__project_inner .pros__project-wrap {
  margin-top: 50px;
}

.our_project_inner_row {
  position: relative;
}

.our_project_inner_row::after {
  content: '';
  position: absolute;
  background: rgb(231, 231, 231, 0.7);
  width: calc(100% + 15px);
  height: 1px;
  top: -30px;
  left: 0;
}


.pros__services_listing li {
  font-size: 1.25em;
  line-height: 1.6;
  color: #1E1E1E;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 18px;
}

.pros__services_listing li::after {
  content: '';
  position: absolute;
  background: url(../images/listing_after_icon.png) no-repeat left;
  width: 20px;
  height: 20px;
  left: -26px;
  top: 8px;
}

.pros__services_listing ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 45px;
}

.pros__services_listing ul li:nth-child(odd),
.pros__services_listing ul li:nth-child(even) {
  width: 400px;
  flex: 0 0 auto;
}

.pros__services_listing {
  max-width: 1200px;
  padding-left: 80px;
}


.project__services_inner__section .pros__title {
  margin-bottom: 15px;
}

.project__services_inner__section .pros__title h6 {
  color: #1E1E1E;
  font-size: 55px;
  line-height: 1.133;
}


.project__services_inner__section .pros__bgMask {
  background: #F9F9F9;
}

.pros__project_inner {
  padding-bottom: 100px;
}

.project__services_inner__section {
  margin-top: -120px;
}

/** ----------------------------
*       Page: Project Inner End
**  --------------------------*/


/** ----------------------------
*       Page: Project Details Inner Start
**  --------------------------*/
/* .pros__pdetails_spounge .row.pdetails__row>* {
  border-bottom: none;
} */

.pros__pdetails_spounge .row>*:has(.pros__breadcrumb){
  border-right: none;
}


.pros__pdetails_spounge .row.pdetails__row .col-md-6 {
  border-bottom: 1px solid rgb(231, 231, 231, 0.7);
}

.pdetails__inner_hero {
  min-height: 60vh;
}

.pdetails__inner_hero .pros__hero-content {
  min-height: auto;
}

.pdetails__inner_hero .pros__hero-title {
  max-width: 100%;
}

.pdetails__inner_hero .pros__hero-center {
  display: block;
  padding: 0;
}

.pdetails__inner_hero .breadcrumb {
  justify-self: center;
}

.pdetails__inner_hero .pros__breadcrumb {
  margin-top: 10px;
}

.pdetails__inner_hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdetails__inner_hero .pros__hero-wrap {
  max-width: 70%;
  margin: auto;
}

.pdetails_top h6 {
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.6;
  color: rgba(var(--heading-color-rgb), 0.8);
}

.pdetails_top h4 {
  color: #1e1e1e;
  font-size: 24px;
}

.pdetails_top {
  padding: 80px 40px 80px 60px;
}

.pros__pdetails_spounge .row>* {
  border-right: 1px solid rgb(231, 231, 231, 0.7);
  border-bottom: 1px solid rgb(231, 231, 231, 0.7);
}

.pros__pdetails_spounge .row>*:last-child {
  border-right: none;
}


.pdetails__title h2 {
  font-size: 44px;
  font-weight: 400;
  line-height: 50px;
  color: #1e1e1e;
  padding-right: 140px;
}

.pdetails__title,
.pdetails_right,
.pdetails__title_content {
  padding: 0 40px 0 60px;
}

.highlights_wrap h6 {
  color: #1e1e1e;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 14px;
}

.highlights_wrap li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.6;
  color: rgba(var(--heading-color-rgb), 0.8);
}

.highlights_wrap li::after {
  content: '';
  position: absolute;
  background: url(../images/black_tick.png) no-repeat left;
  width: 25px;
  height: 25px;
  left: 0;
  top: 5px;
}

.pdetails__row>* {
  padding: 70px 0;
}

.highlights_wrap {
  margin-top: 480px;
}

.pdetails_right>ul>li:first-child .highlights_wrap {
  margin-top: 190px;
}

.pdetails__inner_hero .pros__bgImg.parallax_vertical {
  top: -7%;
}

.pdetails__title_content p {
  font-size: 1.25em;
  line-height: 1.6;
  color: rgba(var(--heading-color-rgb), 0.8);
  margin-bottom: 25px;
}

.pdetails__title_content .wp-block-gallery figure:nth-child(odd) {
  mask-image: url(../images/project_details_mask_2.png);
  mask-mode: alpha;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}

.pdetails__title_content .wp-block-gallery figure:nth-child(even) {
  mask-image: url(../images/project_details_mask_3.png);
  mask-mode: alpha;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}

.pdetails__title_content .wp-block-gallery figure {
  transition: all 0.3s ease-in-out;
}

.pdetails__title_content .wp-block-gallery figure:hover {
  transform: scale(0.95);
}

.pdetails__title_content .wp-block-gallery {
  display: flex;
  column-gap: 25px;
  flex-wrap: wrap;
  row-gap: 25px;
}

.pdetails__title_content .wp-block-image {
  mask-image: url(../images/project_details_mask_1.png);
  mask-mode: alpha;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  transition: 0.3s all ease;
}

.pdetails__title_content .wp-block-image:hover {
  transform: scale(0.95);
}

.pdetails__title_content .wp-block-image img {
  width: 100% !important;
  scale: 1.4 !important;
}


.pdetails__title_content .wp-block-gallery figure {
  width: 48% !important;
  flex: 0 0 auto !important;
}

.pros__pdetails_spounge .breadcrumb li a {
  color: #1e1e1e;
}

.pros__pdetails_spounge .breadcrumb-item.active,
.pros__pdetails_spounge .breadcrumb-item+.breadcrumb-item::before {
  color: #1e1e1e;
}

.pros__pdetails_spounge .pros__breadcrumb {
  padding: 25px 0;
}

.pros__pdetails_spounge .pros__breadcrumb .breadcrumb {
  margin-bottom: 0;
}

/** ----------------------------
*       Page: Project Details Inner End
**  --------------------------*/

/** ----------------------------
*       Page: Career Inner Start
**  --------------------------*/
.pros_carrer_inter {
  padding: 0 40px;
}

.carrer_inner_jobs_wrap .pros__project-btn-wrap {
  margin: 70px -52px;
}

.pros_carrer_inter h2,
.career__inner_jobs h2 {
  color: var(--clr-black);
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 25px;
}

.swiper.career_slider {
  position: relative;
  width: 100%;
  margin-top: 70px;
}

.career_slider .swiper-slide {
  position: relative;
  width: 46%;
  transition: all .4s ease-in-out;
}

.career_slider .swiper-slide {
  transform: scale(.78) translateZ(0);
  transition: transform .4s ease, opacity .4s ease;
  mask-image: url(../images/career_slider_img_mask.png);
  mask-mode: alpha;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}


.career_slider .swiper-slide.swiper-slide-active {
  transform: scale(1) translateZ(0) !important;
  opacity: 1 !important;
  mask-image: url(../images/career_slider_img_current_mask.png);

}

.career_slider .swiper-image {
  position: relative;
  width: 100%;
  padding-top: 450px;
}

.career_slider .swiper-image .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.career_slider .image img {
  width: 100%;
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
}

.career_slider .swiper-button-prev,
.career_slider .swiper-button-next {
  background: #05006B;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  top: 50%;
  bottom: unset;
  left: 40px;
  border: none;
}

.career_slider .swiper-button-prev:hover,
.career_slider .swiper-button-next:hover {
  opacity: 0.8;
  background: #05006B;
}

.career_slider .swiper-button-prev img,
.career_slider .swiper-button-next img {
  transition: 0.4s all;
}

.career_slider .swiper-button-prev:hover img {
  padding-right: 10px;
}

.career_slider .swiper-button-next:hover img {
  padding-left: 10px;
}

.career_slider .swiper-button-next {
  left: unset;
  right: 40px;
}

.career_slider .swiper-wrapper {
  transition-timing-function: ease !important;
}

.career__consult {
  padding-bottom: 70px;
}

.career_jobs_section {
  background: linear-gradient(#E5E5E5, #E5E5E5) 25%, linear-gradient(#E5E5E5, #E5E5E5) 75%;
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.career_jobs_section .pros__heading-top {
  margin-top: 0;
}

.carrer_inner_jobs_wrap li h3 {
  color: var(--clr-black);
  font-size: 24px;
  margin-bottom: 15px;
}

.career_inner_breadcrumb ul {
  display: flex;
  align-items: center;
  column-gap: 5px;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
}

.career_inner_breadcrumb ul::after {
  content: '';
  position: absolute;
  background: url(../images/blue_loaction.png) no-repeat left;
  width: 22px;
  height: 22px;
  left: 0;
  top: 2px;
}

.career_inner_breadcrumb ul li {
  font-size: 1.25em;
  line-height: 1.6;
  color: #05006B;
  position: relative;
}

.career_inner_breadcrumb ul li:not(:first-child)::before {
  float: left;
  padding-right: 5px;
  content: var(--bs-breadcrumb-divider, "/");
}

.carrer_inner_jobs_wrap>ul>li+li {
  margin-top: 35px;
}

.carrer_inner_jobs_wrap .pros__content {
  margin-bottom: 22px;
}

.career_loadmore {
  text-align: center;
  margin-top: 30px;
}

.carrer_inner_jobs_wrap {
  padding: 30px 0 50px;
  position: relative;
}

.carrer_inner_jobs_wrap::after {
  content: '';
  position: absolute;
  background: #E7E7E7;
  left: -52px;
  right: -52px;
  height: 1px;
  top: 0;
}

.career__inner_jobs h2 {
  margin-bottom: 50px;
}

.career_jobs_section .pros__widget-content {
  height: 100%;
  position: relative;
  padding-left: 0;
}

.handshake_img {
  position: absolute;
  top: 43%;
  left: 90px;
}

.career_doller_img {
  position: absolute;
  top: 62%;
  left: 130px;
}

/** ----------------------------
*       Page: Career Inner End
**  --------------------------*/


/** ----------------------------
*       Page: Partner Start
**  --------------------------*/

.pros_partners .pros__heading-bottom {
  margin-bottom: 4rem;
}

.partners__clients .client__section {
  margin-bottom: -70px;
  position: relative;
}

.partners__clients .client__section::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 25%;
  top: 0;
  z-index: 3;
}

.partners__clients .client__section::after {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 75%;
  top: 0;
  z-index: 3;
}


/** ----------------------------
*       Page: Partner End
**  --------------------------*/




/** ----------------------------
*       Page: Contact Start
**  --------------------------*/

.contactpage__contact .pros__contact-form::before {
  display: block;
}

.contactpage__contact .pros__widget-content::before,
.pros__contact-inner .pros__widget-content::after {
  display: none;
}

.pros__map iframe {
  width: 100%;
  height: 360px;
  border-radius: 16px;
}

.lenis.lenis-smooth iframe {
  pointer-events: all;
}

.contact__page_left_text {
  padding: 35px 35px 45px 35px;
}

.contactpage__contact .pros__contact-right {
  justify-content: space-around;
}

.contact__mike {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros__map {
  margin-top: 45px;
}


/** ----------------------------
*       Page: Contact End
**  --------------------------*/


/** ----------------------------
*       Page: 404 & Privacy Policy Start
**  --------------------------*/
.error-404 .page-title {
  color: #05006b;
  font-size: 100px;
}

.error-404 .page-content h2 {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 30px;
  display: block;
  color: #262d33;
}

.pros__hero-inner .pros__hero-title {
  max-width: 100%;
  text-align: left;
}

/* .pros__hero-inner .pros__hero-title h1 {
  font-size: 50px;
} */

.entry-content {
  padding: 100px 0;
}

.error404 .pros__header {
  position: relative;
  background-color: #262d33;
  inset: 0;
  width: 100%;
  border-radius: 10px;
}

.error404 .pros__header-nav .navbar-nav .nav-item.dropdown .dropdown-menu {
  background-color: #262d33;
}

.error404 .pros__header-nav .navbar-nav .nav-item.dropdown .dropdown-item:hover {
  background-color: #05006b;
}

.entry-content h2 {
  font-size: 40px;
  line-height: 1.133;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.entry-content h3 {
  color: #1e1e1e;
}

.entry-content p {
  font-size: 20px;
  color: #808080;
  margin-bottom: 18px;
}

.entry-content p strong {
  color: #1e1e1e;
}




/** ----------------------------
*       Page: 404 & Privacy Policy End
**  --------------------------*/