@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root .bg-custom-01 {
  background: linear-gradient(180deg, #010000 50%, rgba(0, 0, 0, 0) 100%), url(../images/bg-git-01.png) 0% 100% no-repeat;
  background-size: cover;
  background-position: bottom;
}
:root .bg-gradient-01 {
  background: url(../images/bg-slider-card.png);
  background-size: cover;
  background-clip: border-box;
  background-position: 0 45%;
}
:root section > div {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  :root section > div {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
:root .box-padding {
  padding-left: 0;
  padding-right: 0;
}
:root .box-padding-normal {
  padding-left: 11.11%;
  padding-right: 11.11%;
}
@media (max-width: 1199px) {
  :root .box-padding-normal {
    padding-left: 6.67%;
    padding-right: 6.67%;
  }
}
@media (max-width: 991px) {
  :root .box-padding-normal {
    padding-left: 4.844%;
    padding-right: 4.844%;
  }
}
@media (max-width: 767px) {
  :root .box-padding-normal {
    padding-left: 24px;
    padding-right: 24px;
  }
}
:root .frame-space-after-extra-small {
  padding-bottom: 0;
  margin-bottom: 0;
}
:root .frame-space-after-small {
  padding-bottom: 40px;
  margin-bottom: 0;
}
:root .frame-space-after-medium {
  padding-bottom: 80px;
  margin-bottom: 0;
}
:root .frame-space-after-large {
  padding-bottom: 120px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  :root .frame-space-after-large {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  :root .frame-space-after-large {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  :root .frame-space-after-large {
    padding-bottom: 60px;
  }
}
:root .frame-space-after-extra-large {
  padding-bottom: 160px;
  margin-bottom: 0;
}
:root .frame-space-before-extra-small {
  padding-top: 0;
  margin-top: 0;
}
:root .frame-space-before-small {
  padding-top: 40px;
  margin-top: 0;
}
:root .frame-space-before-medium {
  padding-top: 80px;
  margin-top: 0;
}
:root .frame-space-before-large {
  padding-top: 120px;
  margin-top: 0;
}
@media (max-width: 1199px) {
  :root .frame-space-before-large {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  :root .frame-space-before-large {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  :root .frame-space-before-large {
    padding-top: 60px;
  }
}
:root .frame-space-before-extra-large {
  padding-top: 160px;
  margin-top: 0;
}
@media (max-width: 767px) {
  :root .frame-space-after-mob-24 {
    padding-bottom: 24px;
  }
}
:root * {
  outline: none;
}

html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px; /* default setting: 1rem = 16px */
  color: #322c2c;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  color: #060606;
  margin-bottom: 0;
}

h1 {
  font-size: 6.25rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.375rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: #322c2c;
  font-family: "Lato", sans-serif;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}
ul,
ol {
  margin: 0;
  font-family: "Lato", sans-serif;
}

li {
  margin-bottom: 0;
}

.bg-grey {
  background-color: #fafbfb;
}

.bg-black {
  background-color: #000000;
}

.btn {
  display: flex;
  padding: 9px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #ba2429;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  transition: 0.6s ease;
}
.btn:hover {
  background: #d42d27;
}
.btn.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.btn .btn-arrow {
  width: 16px;
  height: 16px;
  align-self: flex-start;
}

.btn-with-border {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #000000;
  color: #322c2c !important;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.read-more {
  color: #ba2429;
  text-decoration: none;
}

/* top nav bar  */
.custom-navbar {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  z-index: 99999;
}
.custom-navbar .logo {
  width: 63px;
  height: 63px;
}
.custom-navbar .navigation {
  display: flex;
  align-items: center;
  gap: 42px;
}
.custom-navbar .navigation ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.custom-navbar .navigation ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  cursor: pointer;
}
.custom-navbar .navigation ul li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
.custom-navbar .navigation ul li img {
  width: 6px;
  height: 6.75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-navbar .navigation .language-switch {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}
.custom-navbar .navigation .language-switch img:first-child {
  width: 12.75px;
  height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-navbar .navigation .language-switch img:nth-child(2) {
  width: 6px;
  height: 6.75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-navbar .navigation .language-switch a {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
.custom-navbar .navigation a.get-btn {
  color: #ffffff;
  background: #ba2429;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 8px;
}

.navigation .has-dropdown > .custom-dropdown-menu {
  padding: 20px;
  width: 100%;
  max-width: 212px;
  margin-left: -1%;
}
.navigation .has-dropdown > div {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 96px;
  width: 100%;
  z-index: 99;
  background: #000000;
  transition: opacity 0.3s ease;
}
.navigation .has-dropdown > div.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.custom-dropdown-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-dropdown-menu ul li {
  list-style: none;
}
.custom-dropdown-menu ul li a {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  margin: 0;
}

.global-dropdown-menu {
  display: flex;
  justify-content: space-between;
  height: 42.6875rem;
  position: relative;
}
.global-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: #000000 url(../images/thirdcol-bg-menu.png) no-repeat 101% bottom !important;
  width: 100%;
  height: 100%;
  max-width: 30.834%;
}
@media screen and (max-width: 1300px) {
  .global-dropdown-menu {
    background-image: none !important;
  }
}
.global-dropdown-menu .main-submenu {
  padding-top: 48px;
}
.global-dropdown-menu .main-submenu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.global-dropdown-menu .main-submenu ul li {
  list-style: none;
}
.global-dropdown-menu .main-submenu ul li .component1 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  position: relative;
}
.global-dropdown-menu .main-submenu ul li .component1 .image {
  background: transparent;
  border-radius: 4.8px;
}
.global-dropdown-menu .main-submenu ul li .component1 .image img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 6px;
}
.global-dropdown-menu .main-submenu ul li .component1 a {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  width: 205px;
}
.global-dropdown-menu .main-submenu ul li .component1.active {
  border-radius: 8px;
  border: 1px solid #3c2b2b;
  background: rgba(181, 148, 150, 0.13);
}
.global-dropdown-menu .main-submenu ul li .component1.active .image {
  background: #c8261e;
}
.global-dropdown-menu .main-submenu ul li .component1.active .image img {
  filter: brightness(0) invert(1);
}
.global-dropdown-menu .main-submenu ul li .component1.active::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 12px;
  height: 12px;
  background: url("../images/menu-arrow-right.svg") no-repeat center;
  background-size: contain;
}
.global-dropdown-menu .component2 {
  position: absolute;
  top: 0;
}
.global-dropdown-menu .component2 .mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 35px;
}
.global-dropdown-menu .component2 .mobile ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.global-dropdown-menu .component2 .mobile ul li {
  list-style: none;
  width: 217.361px;
}
.global-dropdown-menu .component2 .mobile ul li a {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}
.global-dropdown-menu .component2 .mobile ul li.active a {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.global-dropdown-menu .third-section {
  position: absolute;
  top: 0;
  right: 11.112%;
  width: 285px;
  height: 100%;
  padding: 48px 0 0 15px;
  border-left: 1px solid #202020;
}
@media screen and (max-width: 1300px) {
  .global-dropdown-menu .third-section {
    display: none;
  }
}
.global-dropdown-menu .third-section .details {
  display: none;
}
.global-dropdown-menu .third-section .details.active, .global-dropdown-menu .third-section .details[data-id="1"] {
  display: block;
}
.global-dropdown-menu .third-section .details .image img {
  width: 100%;
  height: 197.537px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.global-dropdown-menu .third-section .details .text-wrap h6 {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin: 0;
}
.global-dropdown-menu .third-section .details .text-wrap p {
  color: #999999;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 24px;
}
.global-dropdown-menu .third-section .details .text-wrap a img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  margin-right: 8px;
}

.main-submenu .component2 .mobile {
  display: none;
}
.main-submenu .component1.active + .component2 .mobile {
  display: grid;
}

.border-bottom-nav {
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}

.scrolled {
  background: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.scrolled .custom-navbar .navigation ul li.has-dropdown > img {
  filter: invert(6);
}
.scrolled .custom-navbar .navigation ul li.has-dropdown a.submenu-toggle {
  color: #000;
}
.scrolled .custom-navbar .navigation ul li:not(.has-dropdown) a.submenu-toggle {
  color: #000;
}
.scrolled .navbar-toggler .nav-open img {
  filter: invert(1);
}

.global-dropdown-menu .main-submenu ul li .component1.active .image {
  background: #4a0e10;
}
.global-dropdown-menu .main-submenu ul li .component2 .mobile ul li a:hover {
  color: #f06666;
}

.custom-dropdown-menu ul li a:hover {
  color: #f06666;
}

header#mainHeader:hover {
  background: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px !important;
}
header#mainHeader:hover .custom-navbar .navigation ul li.has-dropdown > img {
  filter: invert(1);
}
header#mainHeader:hover .custom-navbar .navigation ul li.has-dropdown a.submenu-toggle {
  color: #181818;
}
header#mainHeader:hover .custom-navbar .navigation ul li:not(.has-dropdown) a.submenu-toggle {
  color: #181818;
}
header#mainHeader:hover .navbar-toggler .nav-open img {
  filter: invert(1);
}

header#mainHeader {
  transition: background 0.1s;
}

header.navbar-black {
  background: #000000;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

header.navbar-transparent {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 10000;
}

/* end of top nav bar */
/* footer */
footer {
  display: flex;
  width: 100%;
  padding: 0px 11.11% 0px 11.11%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  footer {
    padding: 0 6.67%;
  }
}
@media (max-width: 991px) {
  footer {
    padding: 0 4.844%;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 0 24px;
  }
}
footer .footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 16px;
  padding: 60px 0px 0px 0px;
}
@media (max-width: 767px) {
  footer .footer {
    padding-top: 40px;
  }
}
footer .footer .footer-primary {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
  flex-direction: column;
}
@media (max-width: 767px) {
  footer .footer .footer-primary {
    gap: 30px;
  }
}
footer .footer .footer-primary .footer-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding: 0;
  gap: 160px;
}
@media (max-width: 767px) {
  footer .footer .footer-primary .footer-block {
    flex-direction: column;
    gap: 40px;
  }
}
footer .footer .footer-primary .footer-block .row {
  padding: 0;
  width: 100%;
}
footer .footer .footer-primary .footer-block .footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 767px) {
  footer .footer .footer-primary .footer-block .footer-left {
    gap: 20px;
  }
}
footer .footer .footer-primary .footer-block .footer-left .footer-logo {
  display: flex;
  width: 63px;
  height: 63px;
  justify-content: center;
  align-items: center;
  padding: 0;
}
@media (min-width: 768px) {
  footer .footer .footer-primary .footer-block .footer-left .footer-logo {
    margin-bottom: 20px;
  }
}
footer .footer .footer-primary .footer-block .footer-left .footer-logo a {
  height: 100%;
  width: 100%;
  display: inline-block;
}
footer .footer .footer-primary .footer-block .footer-left .footer-logo a img {
  position: relative;
}
footer .footer .footer-primary .footer-block .footer-left .footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}
footer .footer .footer-primary .footer-block .footer-left .footer-contact-block .footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
footer .footer .footer-primary .footer-block .footer-left .footer-contact-block .footer-contact ul li {
  display: flex;
  align-items: center;
}
footer .footer .footer-primary .footer-block .footer-left .footer-contact-block .footer-contact ul li .footer-contact-img {
  display: flex;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  margin-right: 8px;
}
footer .footer .footer-primary .footer-block .footer-left .footer-contact-block .footer-contact ul li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-transform: capitalize;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
footer .footer .footer-primary .footer-block .footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 80px;
  flex: 1 0 0;
}
@media (max-width: 767px) {
  footer .footer .footer-primary .footer-block .footer-right {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}
footer .footer .footer-primary .footer-block .footer-right ul.footer-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10.401px;
}
footer .footer .footer-primary .footer-block .footer-right ul.footer-list li {
  padding: 0;
  margin: 0;
}
footer .footer .footer-primary .footer-block .footer-right ul.footer-list li a {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
footer .footer .footer-primary .footer-block .footer-right ul.footer-list li a:hover {
  text-decoration: none;
}
footer .footer .footer-primary .footer-block .footer-right ul.footer-list li h4 {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
footer .footer .footer-primary .footer-location-social {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding: 0;
}
@media (max-width: 767px) {
  footer .footer .footer-primary .footer-location-social {
    flex-wrap: wrap;
    gap: 20px;
  }
}
footer .footer .footer-primary .footer-location-social .footer-location {
  display: flex;
}
footer .footer .footer-primary .footer-location-social .footer-location ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
footer .footer .footer-primary .footer-location-social .footer-location ul li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-transform: capitalize;
  text-decoration: none;
}
footer .footer .footer-primary .footer-location-social .footer-location ul li a:hover {
  text-decoration: none;
}
footer .footer .footer-primary .footer-location-social .social-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
footer .footer .footer-primary .footer-location-social .social-media ul li {
  margin: 0;
  padding: 0;
}
footer .footer .footer-primary .footer-location-social .social-media ul li a {
  margin: 0;
  padding: 0;
}
footer .footer .footer-secondary {
  display: flex;
  padding: 8px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-top: 1px solid #474747;
}
footer .footer .footer-secondary .footer-copyright {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
footer .footer .footer-secondary .footer-copyright p {
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 0;
  margin: 0;
}

/* end of footer */
.inner {
  overflow-x: hidden;
}

.navigation .has-dropdown > div {
  top: 100%;
  border-top: 1px solid rgba(102, 102, 102, 0.3);
}

/* mobile nav nan */
.text-slider.slider {
  display: none;
}

.text-slider.slider.slick-slider {
  display: block;
}

.global-dropdown-menu .main-submenu .component1 {
  width: 267px;
}
.global-dropdown-menu .main-submenu .component2 {
  padding: 64px 24px 64px 0px;
  margin-left: 19.188rem;
}
.global-dropdown-menu .main-submenu ul li .component1 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  position: relative;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
}

.navigation.active {
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 991px) {
  .custom-navbar {
    flex-wrap: wrap;
    height: auto;
    display: none;
  }
}

@media (max-width: 991px) {
  .navigation {
    display: none !important;
  }
}

.navbar-toggler {
  display: none;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  .navbar-toggler {
    display: flex;
    padding: 18px 0px;
    align-items: center;
    justify-content: space-between;
  }
}
.navbar-toggler .menu-logo img {
  width: 52px;
  height: 52px;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar-toggler .nav-open {
  border: none;
  outline: none;
  background: transparent;
}
.navbar-toggler .nav-open img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-nav {
  background: #080000;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  opacity: 0;
  visibility: hidden;
}
.mobile-nav.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.mobile-nav li {
  color: #ffffff;
}
@media (max-width: 570px) {
  .mobile-nav {
    width: 100%;
    max-width: none;
  }
}
.mobile-nav .nav-header {
  position: fixed;
  top: 0;
  z-index: 101;
  background: #080000;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mobile-nav .nav-header {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 767px) {
  .mobile-nav .nav-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.mobile-nav .nav-header .menu-logo img {
  width: 52px;
  height: 52px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobile-nav .menu {
  padding: 24px 24px;
  position: relative;
  top: 70px;
  padding-top: 16px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 150px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mobile-nav .menu {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 767px) {
  .mobile-nav .menu {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.mobile-nav .menu .menu-item a, .mobile-nav .menu .menu-item a.submenu-toggle {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(194, 188, 190, 0.6);
}
.mobile-nav .menu .menu-item a span img, .mobile-nav .menu .menu-item a.submenu-toggle span img {
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  aspect-ratio: 1/1;
}
.mobile-nav .menu .menu-item .submenu,
.mobile-nav .menu .menu-item .nested-submenu {
  display: none;
  list-style: none;
}
.mobile-nav .menu .menu-item .submenu {
  padding: 0;
}
.mobile-nav .menu .menu-item .submenu li a {
  display: block;
  text-decoration: none;
  padding: 0 0 0 44px;
  border: none;
  font-size: 14px;
}
.mobile-nav .menu .menu-item .submenu li.has-nested-submenu a.nested-submenu-toggle {
  padding: 0;
  display: flex;
  border: none;
}
.mobile-nav .menu .menu-item .submenu li.has-nested-submenu a.nested-submenu-toggle .button-content {
  position: relative;
  width: 100%;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.mobile-nav .menu .menu-item .submenu li.has-nested-submenu a.nested-submenu-toggle .button-content .icon {
  background: transparent;
  border-radius: 4.8px;
  padding: 6px;
  margin: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}
.mobile-nav .menu .menu-item .submenu li.has-nested-submenu a.nested-submenu-toggle .button-content .icon img {
  width: 16.13px;
  height: 14.12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobile-nav .menu .menu-item .submenu li.has-nested-submenu a.nested-submenu-toggle .button-content span.text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.mobile-nav .menu .menu-item .submenu li.has-nested-submenu a.nested-submenu-toggle .button-content span.arrow {
  position: absolute;
  right: 10px;
}
.mobile-nav .menu .menu-item .submenu li.has-nested-submenu a.nested-submenu-toggle .button-content span.arrow img {
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
}
.mobile-nav .menu .menu-item .submenu .has-nested-submenu.active .nested-submenu-toggle .button-content {
  border-radius: 8px;
  border: 1px solid #3c2b2b;
  background: rgba(181, 148, 150, 0.13);
}
.mobile-nav .menu .menu-item .submenu .has-nested-submenu.active .nested-submenu-toggle .button-content .icon {
  background: #4a0e10;
}
.mobile-nav .menu .menu-item .submenu .has-nested-submenu.active .nested-submenu-toggle .button-content .icon img {
  filter: brightness(0) invert(1);
}
.mobile-nav .menu .menu-item .submenu .has-nested-submenu.active .nested-submenu-toggle .button-content span.arrow img {
  transform: rotate(180deg);
}
.mobile-nav .menu .has-submenu.active > .submenu,
.mobile-nav .menu .has-nested-submenu.active > .nested-submenu {
  display: flex;
  flex-direction: column;
}
.mobile-nav .menu .has-submenu.active a.submenu-toggle {
  border: none;
}
.mobile-nav .menu .has-submenu.active a.submenu-toggle span img {
  transform: rotate(180deg);
}
.mobile-nav .menu .has-submenu.active > ul.submenu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0px;
}
.mobile-nav .menu .nested-submenu {
  gap: 40px;
  padding: 32px 0 32px 44px;
}
.mobile-nav .menu .nested-submenu ul.submenu-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav .menu .nested-submenu ul.submenu-list li.submenu-title a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}
.mobile-nav .menu .nested-submenu ul.submenu-list a {
  padding: 0;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.mobile-nav .nav-close {
  position: static;
  background: #000000;
  border: none;
  outline: none;
  right: 0;
  cursor: pointer;
  z-index: 101;
  margin-left: auto;
}
.mobile-nav .nav-close img {
  width: 20px;
  height: 20px;
}
.mobile-nav .bottom-nav-resp {
  display: flex;
  justify-content: space-between;
  padding: 24px 24px;
  border-top: 1px solid #666666;
  bottom: 0;
  position: fixed;
  width: 100%;
  background: #080000;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mobile-nav .bottom-nav-resp {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 767px) {
  .mobile-nav .bottom-nav-resp {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.mobile-nav .bottom-nav-resp a.get {
  color: #ffffff;
  background: #ba2429;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 8px;
}
.mobile-nav .bottom-nav-resp .language-selection {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mobile-nav .bottom-nav-resp .language-selection img {
  width: 12.75px;
  height: 12px;
}
.mobile-nav .bottom-nav-resp .language-selection a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
.mobile-nav .bottom-nav-resp .language-selection img.arrow {
  width: 6px;
  height: 6.75px;
}

/**** mob nav end ****/
/*** inner page common styles ***/
/* page header inner pages main */
.inner h2 {
  font-size: 48px;
  line-height: 64px;
}
@media (max-width: 991px) {
  .inner h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .inner h2 {
    font-size: 38px;
    line-height: 150%;
  }
}

.page-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 376px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(282deg, rgba(0, 0, 0, 0.07) 13.39%, rgba(0, 0, 0, 0.7) 99.15%);
  background-size: cover;
  overflow: hidden;
  justify-content: space-between;
  padding-left: 11.11%;
  padding-right: 11.11%;
}
@media (max-width: 1199px) {
  .page-header-inner {
    padding-left: 6.67%;
    padding-right: 6.67%;
  }
}
@media (max-width: 991px) {
  .page-header-inner {
    padding-left: 4.844%;
    padding-right: 4.844%;
  }
}
@media (max-width: 767px) {
  .page-header-inner {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 160px;
    padding-bottom: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.page-header-inner .header-content {
  display: flex;
  width: 63.68%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  padding: 10px 0;
}
@media (min-width: 1400px) {
  .page-header-inner .header-content {
    width: 63.68%;
  }
}
@media (max-width: 1199px) {
  .page-header-inner .header-content {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .page-header-inner .header-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-header-inner .header-content {
    gap: 18px;
  }
}
.page-header-inner .bg-banner-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  min-height: 376px;
}
.page-header-inner .bg-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-header-inner h1 {
  font-size: 48px;
  line-height: 64px;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-header-inner h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .page-header-inner h1 {
    font-size: 38px;
    line-height: 45px;
  }
}
.page-header-inner p {
  align-self: stretch;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
.page-header-inner .badge-holder {
  display: flex;
  gap: 30px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .page-header-inner .badge-holder {
    padding-left: 0;
    gap: 16px;
  }
}
.page-header-inner .badge-holder .badge {
  aspect-ratio: 1/1;
  padding: 0;
  margin: 0;
  max-width: 156px;
  width: 100%;
  max-height: 156px;
  height: 100%;
}
.page-header-inner .badge-holder .badge img {
  width: 100%;
  height: auto;
  max-width: 156px;
  border-radius: 4px;
}

/* end of page header inner pages main */
/* image left with text opt 1 */
.image-left-withtext {
  width: 100%;
  margin: 0;
  padding: 0;
}
.image-left-withtext .container {
  margin: 0;
  padding: 0;
}
@media (min-width: 1400px) {
  .image-left-withtext .container {
    max-width: 100%;
  }
}
@media (min-width: 1900px) {
  .image-left-withtext .container {
    max-width: 100%;
  }
}
@media (max-width: 1439px) {
  .image-left-withtext .container {
    max-width: 100%;
  }
}
.image-left-withtext .container .image-text-container {
  display: flex;
  align-items: center;
  align-self: stretch;
}
@media (min-width: 768px) {
  .image-left-withtext .container .image-text-container {
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
}
.image-left-withtext .container .image-text-container .row {
  align-items: center;
}
.image-left-withtext .container .image-text-container .row .col-md-7 {
  padding-left: 112px;
  align-items: center;
}
@media (max-width: 1199px) {
  .image-left-withtext .container .image-text-container .row .col-md-7 {
    padding-left: 65px;
  }
}
@media (max-width: 991px) {
  .image-left-withtext .container .image-text-container .row .col-md-7 {
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .image-left-withtext .container .image-text-container .row .col-md-7 {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-top: 40px;
  }
}
.image-left-withtext .container .image-text-container .img-wrapper {
  align-self: flex-start;
  align-items: flex-start;
  width: calc(100% + 1.5rem);
}
@media (min-width: 768px) {
  .image-left-withtext .container .image-text-container .img-wrapper {
    flex-shrink: 0;
    flex: 0 1 0;
  }
}
@media (min-width: 768px) {
  .image-left-withtext .container .image-text-container .img-wrapper .col-md-5 {
    display: flex;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .image-left-withtext .container .image-text-container .img-wrapper .col-md-7 {
    display: flex;
    height: 100%;
  }
}
.image-left-withtext .container .image-text-container .img-wrapper img {
  width: 100%;
  height: auto;
}
@media (min-width: 1900px) {
  .image-left-withtext .container .image-text-container .img-wrapper img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .image-left-withtext .container .image-text-container .img-wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) {
  .image-left-withtext .container .image-text-container .img-wrapper .mobile-header-textpic {
    display: none;
  }
}
@media (max-width: 767px) {
  .image-left-withtext .container .image-text-container .img-wrapper .mobile-header-textpic {
    display: block;
  }
}
@media (max-width: 767px) {
  .image-left-withtext .container .image-text-container .img-wrapper .mobile-header-textpic header {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .image-left-withtext .container .image-text-container .img-wrapper .mobile-header-textpic h2 {
    font-size: 24px;
    line-height: 150%;
  }
}
.image-left-withtext .container .image-text-container .img-wrapper > div .frame-default {
  padding-top: 0;
}
@media (min-width: 768px) {
  .image-left-withtext .container .image-text-container .img-wrapper > div .frame-default {
    width: 100%;
  }
}
.image-left-withtext .container .image-text-container .img-wrapper > div .frame-default.frame-type-image {
  display: flex;
}
.image-left-withtext .container .image-text-container .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
@media (min-width: 1900px) {
  .image-left-withtext .container .image-text-container .text-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .image-left-withtext .container .image-text-container .text-wrapper header {
    display: none;
  }
}
.image-left-withtext .container .image-text-container .text-wrapper h2 {
  font-size: 32px;
  line-height: 150%;
  font-weight: 400;
  color: #181818;
}
.image-left-withtext .container .image-text-container .text-wrapper h4 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  margin: 0;
  padding: 0 10% 0 0;
}
.image-left-withtext .container .image-text-container .text-wrapper p {
  color: #5d5d5d;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
.image-left-withtext .container .image-text-container .text-wrapper p a {
  color: #ba2429;
  text-decoration: none;
}
.image-left-withtext .container .image-text-container > div .text-wrapper .frame-default {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
.image-left-withtext .chips-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  flex-wrap: wrap;
  margin: 14px 0 0 0;
  padding: 0;
  list-style-type: nones;
}
.image-left-withtext .chips-wrapper .chips {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid #efefef;
  margin: 0;
  list-style-type: nones;
  color: #181818;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.image-left-withtext .chips-wrapper .chips span {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.image-left-withtext .chips-wrapper .chips a {
  display: flex;
  text-decoration: none;
  color: #ba2429;
  align-items: center;
  gap: 4px;
}
.image-left-withtext .chips-wrapper .chips a:after {
  content: "";
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  position: relative;
  align-self: center;
  background: url(../images/AltArrowRight.svg) no-repeat center center;
}
.image-left-withtext .chips-wrapper .chips a:hover {
  color: #4a0e10;
}
.image-left-withtext .chips-wrapper .chips:has(a:hover) {
  border-color: #ba2429;
}

/* end of img left with txt opt1 */
/* image right with text opt 1 */
.image-right-withtext {
  width: 100%;
  margin: 0;
  padding: 0;
}
.image-right-withtext .container {
  margin: 0;
  padding: 0;
}
@media (min-width: 1400px) {
  .image-right-withtext .container {
    max-width: 100%;
  }
}
@media (min-width: 1900px) {
  .image-right-withtext .container {
    max-width: 100%;
  }
}
@media (max-width: 1439px) {
  .image-right-withtext .container {
    max-width: 100%;
  }
}
.image-right-withtext .container .image-text-container {
  display: flex;
  align-items: center;
  align-self: stretch;
}
@media (min-width: 768px) {
  .image-right-withtext .container .image-text-container {
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
}
.image-right-withtext .container .image-text-container .row {
  align-items: center;
}
@media (min-width: 768px) {
  .image-right-withtext .container .image-text-container .row .col-md-5 {
    display: flex;
    height: 100%;
  }
}
.image-right-withtext .container .image-text-container .row .col-md-7 {
  padding-right: 112px;
  align-items: center;
}
@media (max-width: 1199px) {
  .image-right-withtext .container .image-text-container .row .col-md-7 {
    padding-right: 65px;
  }
}
@media (max-width: 991px) {
  .image-right-withtext .container .image-text-container .row .col-md-7 {
    padding-right: 45px;
  }
}
@media (min-width: 768px) {
  .image-right-withtext .container .image-text-container .row .col-md-7 {
    display: flex;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .image-right-withtext .container .image-text-container .row .col-md-7 {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: 45px;
  }
}
.image-right-withtext .container .image-text-container .img-wrapper {
  width: 100%;
  flex-shrink: 0;
  align-self: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .image-right-withtext .container .image-text-container .img-wrapper {
    flex: 0 1 0;
  }
}
.image-right-withtext .container .image-text-container .img-wrapper img {
  width: 100%;
  height: auto;
}
@media (min-width: 1900px) {
  .image-right-withtext .container .image-text-container .img-wrapper img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .image-right-withtext .container .image-text-container .img-wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.image-right-withtext .container .image-text-container .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}
@media (min-width: 1900px) {
  .image-right-withtext .container .image-text-container .text-wrapper {
    width: 100%;
  }
}
.image-right-withtext .container .image-text-container .text-wrapper h4 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  margin: 0;
  padding: 0 10% 0 0;
}
.image-right-withtext .container .image-text-container .text-wrapper p {
  color: #5d5d5d;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
.image-right-withtext .container .image-text-container .text-wrapper p a {
  color: #ba2429;
  text-decoration: none;
}
.image-right-withtext .chips-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  flex-wrap: wrap;
  margin: 14px 0 0 0;
  padding: 0;
  list-style-type: nones;
}
.image-right-withtext .chips-wrapper .chips {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid #efefef;
  margin: 0;
  list-style-type: nones;
  color: #181818;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.image-right-withtext .chips-wrapper .chips span {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.image-right-withtext .chips-wrapper .chips a {
  display: flex;
  text-decoration: none;
  color: #ba2429;
  align-items: center;
  gap: 4px;
}
.image-right-withtext .chips-wrapper .chips a:after {
  content: "";
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  position: relative;
  align-self: center;
  background: url(../images/AltArrowRight.svg) no-repeat center center;
}
.image-right-withtext .chips-wrapper .chips a:hover {
  color: #4a0e10;
}
.image-right-withtext .chips-wrapper .chips:has(a:hover) {
  border-color: #ba2429;
}

/* end of image right with text opt 1 */
/* --------------- services-module -----------------*/
.services-module {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  margin: 0;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .services-module {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .services-module {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .services-module {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    gap: 24px;
  }
}
.services-module .service-text-row {
  display: flex;
  align-items: center;
  gap: 117px;
  align-self: stretch;
}
.services-module .service-text-row header {
  width: 262.125px;
}
@media (max-width: 767px) {
  .services-module .service-text-row header {
    padding-bottom: 24px;
  }
}
.services-module .service-text-row header h4 {
  margin: 0;
  padding: 0;
  color: #060606;
  font-family: "Inter", sans-serif;
  font-size: 49px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 63.7px */
}
.services-module .service-text-row .service-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}
.services-module .service-text-row .service-text-column p {
  color: #322c2c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}
.services-module .service-text-row .service-text-column p a {
  color: #ba2429;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}
.services-module .service-lists-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 40px;
  align-self: stretch;
  flex-flow: wrap;
}
@media (max-width: 767px) {
  .services-module .service-lists-wrap {
    row-gap: 24px;
  }
}
.services-module .service-lists-wrap .service-card {
  background-color: #ffffff;
  width: 32.35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border: 1px solid #efefef;
}
@media (max-width: 1439px) {
  .services-module .service-lists-wrap .service-card {
    width: calc(33.3333333333% - 12px);
  }
}
@media (max-width: 991px) {
  .services-module .service-lists-wrap .service-card {
    width: calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .services-module .service-lists-wrap .service-card {
    width: 100%;
  }
}
.services-module .service-lists-wrap .service-card a {
  text-decoration: none;
}
.services-module .service-lists-wrap .service-card .img-wrapper {
  height: 240px;
  align-self: stretch;
  width: 100%;
  overflow: hidden;
}
.services-module .service-lists-wrap .service-card .img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.services-module .service-lists-wrap .service-card .text-wrapper {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .services-module .service-lists-wrap .service-card .text-wrapper {
    padding: 16px;
  }
}
.services-module .service-lists-wrap .service-card .text-wrapper .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .services-module .service-lists-wrap .service-card .text-wrapper .text-content {
    gap: 24px;
  }
}
.services-module .service-lists-wrap .service-card .text-wrapper .text-content h5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  color: #270d0d;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .services-module .service-lists-wrap .service-card .text-wrapper .text-content h5 {
    color: #000000;
  }
}
.services-module .service-lists-wrap .service-card .text-wrapper .text-content p {
  align-self: stretch;
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .services-module .service-lists-wrap .service-card .text-wrapper .text-content p {
    color: #000000;
  }
}

/* end of services module */
/* hero section sub-page */
.hero-section-subpage {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero-section-subpage {
    max-height: inherit;
  }
}
.hero-section-subpage .container {
  margin: 0;
  position: relative;
  max-width: 100%;
  padding-top: 95px;
  padding-bottom: 95px;
  padding-left: 11.11%;
  padding-right: 11.11%;
}
@media (max-width: 1199px) {
  .hero-section-subpage .container {
    padding-left: 6.67%;
    padding-right: 6.67%;
  }
}
@media (max-width: 991px) {
  .hero-section-subpage .container {
    padding-left: 4.844%;
    padding-right: 4.844%;
  }
}
@media (max-width: 767px) {
  .hero-section-subpage .container {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 85px;
    padding-bottom: 20px;
  }
}
.hero-section-subpage .container .hero-sub-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer {
  display: flex;
  width: 100%;
  max-width: 725px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title {
  display: flex;
  align-items: center;
  gap: 48px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title {
    flex-direction: column;
    align-items: self-start;
    gap: 32px;
    padding-top: 70px;
  }
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title .img-wrapper {
  min-width: 104.922px;
}
@media (max-width: 767px) {
  .hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title .img-wrapper {
    min-width: 60px;
  }
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title .img-wrapper img {
  width: 100%;
  max-width: 104px;
}
@media (max-width: 767px) {
  .hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title .img-wrapper img {
    max-height: 60px;
  }
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title h1 {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .icon-with-title h1 {
    font-size: 38px;
    line-height: 57px;
  }
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .text-wrapper {
  align-self: stretch;
  margin-bottom: 48px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .text-wrapper {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer .text-wrapper p {
  color: #5d5d5d;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
.hero-section-subpage .container .hero-sub-wrapper .hero-section-subcontainer a.btn {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.hero-section-subpage .container .hero-sub-wrapper .icon-faded {
  position: absolute;
  right: 60px;
}
@media (max-width: 767px) {
  .hero-section-subpage .container .hero-sub-wrapper .icon-faded {
    right: 24px;
  }
}
.hero-section-subpage .container .hero-sub-wrapper .icon-faded img {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .hero-section-subpage .container .hero-sub-wrapper .icon-faded img {
    width: 141.52px;
    height: 79.793px;
    aspect-ratio: 141.52/79.79;
  }
}

/* end of hero section sub-page */
/* logo slider service page */
.subpage-logo-slider .slick-track {
  display: flex;
  align-items: center;
}
.subpage-logo-slider .slick-track .logo-slider-item {
  text-align: center;
  width: 224px !important;
  margin: 0 30px;
}
@media (max-width: 767px) {
  .subpage-logo-slider .slick-track .logo-slider-item {
    width: auto !important;
    margin: 0 20px;
  }
}
.subpage-logo-slider .slick-track .logo-slider-item img {
  height: 50px;
  margin: 0 auto;
  width: auto;
}
@media (max-width: 767px) {
  .subpage-logo-slider .slick-track .logo-slider-item img {
    text-align: center;
    max-width: 100px;
    height: auto;
    max-height: 50px;
  }
}

/* end of logo slider service page*/
/* get in touch */
div:has(> .get-in-touch) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.get-in-touch {
  display: flex;
  height: 228px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 767px) {
  .get-in-touch {
    height: 367px;
    padding-top: 60px;
    padding-bottom: 60px;
    align-items: flex-start;
  }
}
@media (max-width: 420px) {
  .get-in-touch {
    width: 100%;
  }
}
.get-in-touch .get-in-touch-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 767px) {
  .get-in-touch .get-in-touch-block {
    height: 100%;
    flex-direction: row;
    align-self: flex-start;
  }
}
@media (max-width: 420px) {
  .get-in-touch .get-in-touch-block {
    width: 100%;
  }
}
.get-in-touch .content-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  align-self: stretch;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .get-in-touch .content-wrapper {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .get-in-touch .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 420px) {
  .get-in-touch .content-wrapper {
    width: 100%;
  }
}
.get-in-touch .content-wrapper h4 {
  color: #ffffff;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  width: 52.67%;
  padding: 0;
}
@media (max-width: 991px) {
  .get-in-touch .content-wrapper h4 {
    width: auto;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .get-in-touch .content-wrapper h4 {
    max-width: 275px;
    font-size: 24px;
  }
}
.get-in-touch .content-wrapper .cta-wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 767px) {
  .get-in-touch .content-wrapper .cta-wrap {
    align-items: flex-start;
  }
}
@media (max-width: 420px) {
  .get-in-touch .content-wrapper .cta-wrap {
    width: 100%;
  }
}
.get-in-touch .content-wrapper .cta-wrap .cta-button-white {
  display: flex;
  width: 210px;
  height: 56px;
  padding: 2px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 1px 6px 24px 0px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 991px) {
  .get-in-touch .content-wrapper .cta-wrap .cta-button-white {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .get-in-touch .content-wrapper .cta-wrap .cta-button-white {
    font-size: 16px;
    height: 48px;
  }
}
@media (max-width: 420px) {
  .get-in-touch .content-wrapper .cta-wrap .cta-button-white {
    width: 100%;
  }
}
.get-in-touch .content-wrapper .cta-wrap .cta-button-white span {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: #9c1006;
  text-decoration: none;
}
.get-in-touch .content-wrapper .cta-wrap .cta-button-red {
  display: flex;
  width: 210px;
  height: 56px;
  padding: 2px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #d42d27;
  box-shadow: 1px 6px 24px 0px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 991px) {
  .get-in-touch .content-wrapper .cta-wrap .cta-button-red {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .get-in-touch .content-wrapper .cta-wrap .cta-button-red {
    font-size: 16px;
    height: 48px;
  }
}
@media (max-width: 420px) {
  .get-in-touch .content-wrapper .cta-wrap .cta-button-red {
    width: 100%;
  }
}
.get-in-touch .content-wrapper .cta-wrap .cta-button-red span {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: #ffffff;
  text-decoration: none;
}

/* end of get in touch */
/* chips cards with img with txt */
.img-chips-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .img-chips-wrapper {
    gap: 24px;
  }
}
.img-chips-wrapper .inner-page {
  padding-bottom: 28px;
}
@media (max-width: 767px) {
  .img-chips-wrapper .inner-page {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .img-chips-wrapper .inner-page header {
    padding-bottom: 24px;
  }
}
.img-chips-wrapper .image-chips-item {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  border: 1px solid #efefef;
  background-color: #ffffff;
}
.img-chips-wrapper .image-chips-item .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.img-chips-wrapper .image-chips-item .container .img-wrapper {
  align-self: stretch;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-width: 457.389px;
}
.img-chips-wrapper .image-chips-item .container .img-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper {
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .data-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .data-frame h5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  margin: 0;
  padding: 0;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .data-frame p {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  align-self: stretch;
  margin: 0;
  padding: 0;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .chips-wrapperr {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  flex-wrap: wrap;
  margin: 14px 0 0 0;
  padding: 0;
  list-style-type: nones;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .chips-wrapperr .chips {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid #efefef;
  margin: 0;
  list-style-type: nones;
  color: #181818;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .chips-wrapperr .chips span {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .chips-wrapperr .chips a {
  display: flex;
  text-decoration: none;
  color: #ba2429;
  align-items: center;
  gap: 4px;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .chips-wrapperr .chips a:after {
  content: "";
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  position: relative;
  align-self: center;
  background: url(../images/AltArrowRight.svg) no-repeat center center;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .chips-wrapperr .chips a:hover {
  color: #4a0e10;
}
.img-chips-wrapper .image-chips-item .container .data-chips-wrapper .data-container .chips-wrapperr .chips:has(a:hover) {
  border-color: #ba2429;
}
.img-chips-wrapper .image-chips-item .image-right-withtext .image-text-container .img-wrapper .col-md-7 {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: 0;
}
.img-chips-wrapper .image-chips-item .image-left-withtext .image-text-container .img-wrapper .col-md-7 {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-top: 0;
}
.img-chips-wrapper .image-chips-item .image-text-container .img-wrapper {
  min-width: inherit;
  width: -moz-fit-content;
  width: fit-content;
}
.img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper {
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  justify-content: center;
}
@media (max-width: 767px) {
  .img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper {
    padding: 16px;
    gap: 24px;
  }
}
.img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper h3 {
  color: #270d0d;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 767px) {
  .img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper h3 {
    color: #000000;
  }
}
.img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper h2 {
  color: #270d0d;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 767px) {
  .img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper h2 {
    color: #000000;
  }
}
.img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper p {
  color: #181818;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  align-self: stretch;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .text-wrapper p {
    color: #000000;
  }
}
@media (max-width: 767px) {
  .img-chips-wrapper .image-chips-item .image-text-container .img-wrapper .col-md-7 {
    order: 2;
  }
}

/* end of img-chip-wrapper */
/* card with icon */
.card-with-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
.card-with-icon .ico-with-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  gap: 40px;
}
.card-with-icon .ico-with-data h2 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .card-with-icon .ico-with-data h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.card-with-icon .ico-with-data ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 48px;
  width: 100%;
}
@media (max-width: 576px) {
  .card-with-icon .ico-with-data ul {
    gap: 28px;
  }
}
.card-with-icon .ico-with-data ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 30.25%;
  width: calc(33.33% - 32px);
}
@media (max-width: 767px) {
  .card-with-icon .ico-with-data ul li {
    width: calc(50% - 24px);
  }
  .card-with-icon .ico-with-data ul li h4 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .card-with-icon .ico-with-data ul li {
    width: 100%;
  }
}
.card-with-icon .ico-with-data ul li img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.card-with-icon .ico-with-data ul li h4 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin: 0;
  padding: 0;
}
.card-with-icon .ico-with-data ul li p {
  color: #181818;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* end of card with icon */
/* end of chips card img with txt */
/* industry app slider */
.slider-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  position: relative;
}
.slider-card .slick-slider {
  margin: 0 -8px;
}
.slider-card .slick-slider .slick-track {
  display: flex;
}
.slider-card .slick-slider .slick-list {
  margin: 0 -8px;
}
.slider-card .slick-slider .slick-slide {
  margin: 0 8px;
  height: auto;
}
.slider-card .ico-with-data {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 42px;
  align-self: stretch;
  position: relative;
}
.slider-card .ico-with-data h2 {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
}
.slider-card .ico-with-data ul {
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.slider-card .ico-with-data ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  align-self: stretch;
  background-color: #ffffff;
}
.slider-card .ico-with-data ul li.slick-slide {
  min-height: 184px;
}
.slider-card .ico-with-data ul li .slider-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.slider-card .ico-with-data ul li .slider-item .icon {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}
.slider-card .ico-with-data ul li .slider-item .icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 32px;
}
.slider-card .ico-with-data ul li .slider-item .card-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.slider-card .ico-with-data ul li h4 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
  padding: 0;
}
.slider-card .ico-with-data ul li p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
  color: #181818;
}
.slider-card .card-next-arrow {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 62%;
  right: -66px;
  border-radius: 4px;
  border: 1px solid #666666;
  transform: scaleX(-1);
  background-color: transparent;
  width: 32px !important;
  height: 26px;
}
.slider-card .card-prev-arrow {
  display: flex;
  height: 26px;
  width: 32px !important;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 62%;
  left: -66px;
  border-radius: 4px;
  border: 1px solid #666666;
  background-color: transparent;
}

/* end of industry app slider */
/* reference detail pages */
.reference-details-slider {
  width: 768px;
  margin: 0 auto;
  position: relative;
  padding-top: 50px;
}
.reference-details-slider .reference-prev-arrow,
.reference-details-slider .reference-next-arrow {
  border: 1px solid;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}
.reference-details-slider .reference-prev-arrow img,
.reference-details-slider .reference-next-arrow img {
  width: 40px;
  height: 40px;
}
.reference-details-slider .reference-next-arrow {
  left: auto;
  right: -100px;
}
.reference-details-slider .reference-next-arrow img {
  transform: rotate(180deg);
}
.reference-details-wrapper .ref-detail-section {
  display: flex;
}
.reference-details-wrapper .ref-detail-section .ref-detail-left {
  flex: 0 0 auto;
  width: 20%;
}
.reference-details-wrapper .ref-detail-section .ref-detail-right {
  flex: 0 0 auto;
  width: 80%;
}
.reference-details-wrapper .ref-detail-section .ref-detail-right h2 {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.reference-details-wrapper .ref-detail-section .ref-detail-right .ref-detail-table-column {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.reference-details-wrapper .ref-detail-section .ref-detail-right .ref-detail-table-column .ref-detail-table-item {
  flex: 0 0 auto;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.reference-details-wrapper .ref-detail-section .ref-detail-right .ref-detail-table-column .ref-detail-table-item b {
  font-size: 20px;
  margin-bottom: 5px;
}

/* end of ref detail pages*/
/* area-of-competence*/
.area-of-competence {
  overflow: hidden;
}
.area-of-competence .text-wrap-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 120px 90px 120px 160px;
}
@media (max-width: 1199px) {
  .area-of-competence .text-wrap-left {
    padding: 80px 80px;
  }
}
@media (max-width: 991px) {
  .area-of-competence .text-wrap-left {
    padding: 60px 60px;
  }
}
@media (max-width: 767px) {
  .area-of-competence .text-wrap-left {
    padding: 40px 15px 40px 15px;
  }
}
.area-of-competence .text-wrap-left h2 {
  color: #181818;
  font-size: 48px;
  font-weight: 400;
  line-height: 64px;
  margin: 0;
}
@media (max-width: 767px) {
  .area-of-competence .text-wrap-left h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.area-of-competence .text-wrap-left p {
  color: #5d5d5d;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
.area-of-competence .text-wrap-left a {
  color: #ba2429;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}
.area-of-competence .area-slider-wrapper {
  background: linear-gradient(135deg, #e6fdf5 0%, #fef6e7 60%, #fde9d2 100%);
  padding: 166px 160px 166px 94px;
  position: relative;
}
@media (max-width: 1199px) {
  .area-of-competence .area-slider-wrapper {
    padding: 80px 80px;
  }
}
@media (max-width: 991px) {
  .area-of-competence .area-slider-wrapper {
    padding: 60px 60px;
  }
}
@media (max-width: 767px) {
  .area-of-competence .area-slider-wrapper {
    padding: 40px 15px 40px 15px;
  }
}
.area-of-competence .area-slider-wrapper h5 {
  color: #1c1c1c;
  font-size: 24px;
  font-weight: 400;
  line-height: 48px;
  margin-bottom: 24px;
}
.area-of-competence .area-slider-wrapper .language-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.area-of-competence .area-slider-wrapper .language-slider .language-card .language {
  background: #ffffff;
  padding: 19px 47.25px;
}
.area-of-competence .area-slider-wrapper .language-slider .language-card .language img {
  width: 121px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 121/42;
}
.area-of-competence .area-slider-wrapper button {
  position: absolute;
  z-index: 1001;
  border-radius: 4px;
  border: 1px solid #efefef;
  background: #ffffff;
  padding: 4px 8px;
}
.area-of-competence .area-slider-wrapper button img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.area-of-competence .area-slider-wrapper .language-prev-arrow {
  bottom: 297.66px;
  left: 30px;
}
.area-of-competence .area-slider-wrapper .language-next-arrow {
  bottom: 297.66px;
  right: 104.5px;
}
.area-of-competence .area-slider-wrapper .language-next-arrow img {
  transform: rotate(180deg);
}

/* end of area-of-competence */
/* ref isotop */
.reference-isotope .filtering-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
}
.reference-isotope .filtering-tabs button.filter-tab {
  color: #181818;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  min-width: 187px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.reference-isotope .filtering-tabs button.filter-tab:hover {
  border-bottom: 1px solid #ba2429;
  padding-bottom: 8px;
  color: #4a0e10;
}
.reference-isotope .filtering-tabs button.filter-tab.is-checked {
  border-bottom: 1px solid #ba2429;
  color: #4a0e10;
  padding-bottom: 8px;
}
.reference-isotope .filtered-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  padding-top: 24px;
}
.reference-isotope .filtered-card-wrapper .filtered-card {
  position: relative;
  display: block;
}
.reference-isotope .filtered-card-wrapper .filtered-card .image {
  position: relative;
  overflow: hidden;
}
.reference-isotope .filtered-card-wrapper .filtered-card .image img {
  width: 100%;
  height: 387px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.reference-isotope .filtered-card-wrapper .filtered-card .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(191deg, rgba(68, 19, 19, 0) 50.59%, #190202 82.91%);
  pointer-events: none;
}
.reference-isotope .filtered-card-wrapper .filtered-card .text-wrap {
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.reference-isotope .filtered-card-wrapper .filtered-card .text-wrap h5 {
  color: #ffffff;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin: 0;
}
.reference-isotope .filtered-card-wrapper .filtered-card.hide {
  display: none;
}

/*  end of ref istop */
.cards-with-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.cards-with-icon .ico-with-data ul {
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  margin: 0;
  padding: 0;
  list-style-type: none;
  flex-wrap: wrap;
}
.cards-with-icon .ico-with-data ul a {
  text-decoration: none;
}
.cards-with-icon .ico-with-data ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  align-self: stretch;
  background-color: #ffffff;
  width: calc(50% - 12px);
}
@media (max-width: 767px) {
  .cards-with-icon .ico-with-data ul li {
    width: 100%;
  }
}
.cards-with-icon .ico-with-data ul li.slick-slide {
  min-height: 184px;
}
.cards-with-icon .ico-with-data ul li .slider-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.cards-with-icon .ico-with-data ul li .slider-item .icon {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.blue {
  background: #f0f2ff;
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.blue img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(84%) saturate(6162%) hue-rotate(232deg) brightness(82%) contrast(91%);
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.green {
  background: #e4f3e9;
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.green img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(99%) saturate(2787%) hue-rotate(140deg) brightness(93%) contrast(98%);
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.orange {
  background: #fdf6e6;
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.orange img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(77%) saturate(6334%) hue-rotate(21deg) brightness(100%) contrast(99%);
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.aqua {
  background: #dbfafb;
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.aqua img {
  filter: brightness(0) saturate(100%) invert(41%) sepia(12%) saturate(2430%) hue-rotate(133deg) brightness(87%) contrast(81%);
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.red {
  background: #ffe6d4;
}
.cards-with-icon .ico-with-data ul li .slider-item .icon.red img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(94%) saturate(1128%) hue-rotate(340deg) brightness(97%) contrast(80%);
}
.cards-with-icon .ico-with-data ul li .slider-item .icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 32px;
  height: 32px;
}
.cards-with-icon .ico-with-data ul li .slider-item .card-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.cards-with-icon .ico-with-data ul li h4 {
  color: #181818;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .cards-with-icon .ico-with-data ul li h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
.cards-with-icon .ico-with-data ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
  color: #181818;
}
@media (max-width: 767px) {
  .cards-with-icon .ico-with-data ul li p {
    line-height: 20px;
  }
}

/* Leader ship and advisory */
.leadership-wrapper {
  padding-top: 20px;
}
.leadership-wrapper .leadership-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.leadership-wrapper .leadership-header .leadership-location-search {
  position: relative;
}
.leadership-wrapper .leadership-header .leadership-location-search select {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  min-width: 160px;
  padding: 8px 16px;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.leadership-wrapper .leadership-header .leadership-location-search:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url(../images/arrow-down-n.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}
.leadership-wrapper .leadership-header .leadership-tab-nav .tabs {
  display: flex;
  gap: 24px;
}
.leadership-wrapper .leadership-header .leadership-tab-nav .tabs .tab-btn {
  color: #181818;
  /* H7/medium */
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  border-radius: 10px;
  border: 1px solid #999999;
  background: transparent;
  padding: 6px 13px;
}
.leadership-wrapper .leadership-header .leadership-tab-nav .tabs .tab-btn.active {
  background: #333333;
  color: #ffffff;
}
.leadership-wrapper .leadership-content .tab-content {
  display: none;
}
.leadership-wrapper .leadership-content .tab-content.active {
  display: block;
}
.leadership-wrapper .leadership-content .leader-grid {
  width: 100%;
}
.leadership-wrapper .leadership-content .leader-grid .leader-card {
  background: #f2f2f2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  border: 1px solid #efefef;
}
.leadership-wrapper .leadership-content .leader-grid .leader-card-img {
  flex: 0 0 auto;
  width: 30.6%;
  padding-top: 10px;
  transition: 0.5s all;
  overflow: hidden;
  align-content: flex-end;
}
.leadership-wrapper .leadership-content .leader-grid .leader-card-img:hover img {
  transform: scale(1.1);
}
.leadership-wrapper .leadership-content .leader-grid .leader-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
  height: 342.958px;
  aspect-ratio: 1/1;
  -o-object-position: top;
     object-position: top;
}
.leadership-wrapper .leadership-content .leader-grid .leader-card .leader-card-content {
  flex: 1 1 auto;
  text-align: left;
  padding: 24px;
  background: #ffffff;
}
.leadership-wrapper .leadership-content .leader-grid .leader-card h4 {
  margin-bottom: 2px;
  color: #270d0d;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.leadership-wrapper .leadership-content .leader-grid .leader-card p {
  color: #322c2c;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
  /* 24px */
}
.leadership-wrapper .leadership-content .leader-grid .leader-card p.designation {
  color: #181818;
  line-height: 28px;
  border-bottom: 1px solid #eee;
  padding-bottom: 0px;
}
.leadership-wrapper .leadership-content .leader-grid .leader-card a.read-more {
  color: #4a0e10;
  /* Body/lg-bold */
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  /* 125% */
}
.leadership-wrapper .leadership-content .leader-grid:not(:last-child) {
  margin-bottom: 32px;
}
.leadership-wrapper .leadership-content .leader-grid:nth-child(even) .leader-card {
  flex-direction: row-reverse;
}
.leadership-wrapper div#senior.tab-content.active {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  margin-top: -32px;
}
.leadership-wrapper div#senior.tab-content.active .leader-grid {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0 16px;
  margin-bottom: 0px;
  margin-top: 32px;
}
.leadership-wrapper div#senior.tab-content.active .leader-grid .leader-card {
  flex-direction: column;
}
.leadership-wrapper div#senior.tab-content.active .leader-grid .leader-card-img {
  width: 100%;
}
.leadership-wrapper div#senior.tab-content.active .leader-grid .leader-card-content p.designation {
  padding: 0;
  margin: 0;
  border: none;
}

.mfp-bg {
  background: rgba(0, 0, 0, 0.6);
}

.leaderboard-mfb-popup .mfp-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 564px;
  background: #ffffff;
  height: 100%;
  will-change: transform;
  animation: slideInFromRight 0.4s ease-out both;
}
.leaderboard-mfb-popup .leader-popup-drawer {
  background: #ffffff;
}
.leaderboard-mfb-popup .leader-popup-drawer .popup-inner {
  display: flex;
  flex-direction: column;
}
.leaderboard-mfb-popup .leader-popup-drawer .popup-header {
  flex-shrink: 0;
  background: #f9f9f9;
  padding-top: 20px;
  text-align: center;
}
.leaderboard-mfb-popup .leader-popup-drawer .popup-header img {
  width: 300px;
  height: auto;
}
.leaderboard-mfb-popup .leader-popup-drawer .popup-body {
  padding: 20px 24px;
  overflow-y: auto;
}
.leaderboard-mfb-popup .leader-popup-drawer .popup-body h2 {
  color: #270d0d;
  /* H4/bold */
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 3px;
  /* 150% */
}
.leaderboard-mfb-popup .leader-popup-drawer .popup-body h4 {
  color: #181818;
  /* Body/lg-regular */
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
  border-bottom: 1px solid #efefef;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.leaderboard-mfb-popup .leader-popup-drawer .popup-body p {
  color: #322c2c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  margin-bottom: 60px;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.advisory-board-slider-wrapper {
  position: relative;
}
.advisory-board-slider-wrapper .advisory-board-slider {
  margin: 0 -8px;
}
.advisory-board-slider-wrapper .advisory-board-slider .slick-track {
  display: flex;
}
.advisory-board-slider-wrapper .advisory-board-slider .slick-track .slick-slide {
  height: auto;
}
.advisory-board-slider-wrapper .advisory-board-slider .slider-items {
  padding: 0 8px;
}
.advisory-board-slider-wrapper .leader-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1px solid #efefef;
  height: 100%;
}
.advisory-board-slider-wrapper .leader-card-img {
  overflow: hidden;
  transition: transform 0.2s all;
}
.advisory-board-slider-wrapper .leader-card-img:hover img {
  transform: scale(1.1);
}
.advisory-board-slider-wrapper .leader-card-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s all;
  aspect-ratio: 1/1;
}
.advisory-board-slider-wrapper .leader-card .leader-card-content {
  flex: 1 1 auto;
  text-align: left;
  padding: 24px;
  background: #ffffff;
}
.advisory-board-slider-wrapper .leader-card h4 {
  margin-bottom: 2px;
  color: #270d0d;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 16px;
}
.advisory-board-slider-wrapper .leader-card p {
  color: #322c2c;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
  /* 24px */
}
.advisory-board-slider-wrapper .leader-card p.designation {
  color: #181818;
  line-height: 28px;
  margin-bottom: 0;
}
.advisory-board-slider-wrapper .leader-card a.read-more {
  color: #4a0e10;
  /* Body/lg-bold */
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  /* 125% */
}
.advisory-board-slider-wrapper .advisory-prev-arrow,
.advisory-board-slider-wrapper .advisory-next-arrow {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  border-color: #eeeeee;
  border-radius: 4px;
  border: 1px solid #efefef;
  background: #ffffff;
}
.advisory-board-slider-wrapper .advisory-prev-arrow img,
.advisory-board-slider-wrapper .advisory-next-arrow img {
  width: 26px;
  height: 26px;
}
.advisory-board-slider-wrapper .advisory-next-arrow {
  left: auto;
  right: -80px;
}
.advisory-board-slider-wrapper .advisory-prev-arrow img {
  transform: rotate(180deg);
}

.advisory-board-section {
  padding-top: 20px;
}
.advisory-board-section h2 {
  margin-bottom: 40px;
  color: #181818;
  /* H2/sm-regular */
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  /* 133.333% */
}

/* end of Leader ship and advisory */
/* career listing */
/* Hiring-page  */
.hiring-page .search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hiring-page .search-bar {
    border-radius: 12px 12px 0 0;
    padding: 0px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.hiring-page .search-bar .search-input {
  flex: 1 0 0;
  padding: 18px 20px;
  border: none;
  outline: none;
  color: #999999;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 767px) {
  .hiring-page .search-bar .search-input {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 0;
    line-height: 150%;
  }
}
.hiring-page .search-bar .search-input::-moz-placeholder {
  color: #999999;
}
.hiring-page .search-bar .search-input::placeholder {
  color: #999999;
}
.hiring-page .search-bar .divider {
  width: 1px;
  background: #eee;
  height: 36px;
}
@media (max-width: 767px) {
  .hiring-page .search-bar .divider {
    width: 100%;
    height: 1px;
  }
}
.hiring-page .search-bar .custom-select-wrapper {
  position: relative;
  flex: 1 0 0;
}
@media (max-width: 767px) {
  .hiring-page .search-bar .custom-select-wrapper {
    width: 100%;
  }
}
.hiring-page .search-bar .custom-select-wrapper .location-select {
  width: 100%;
  padding: 18px 20px;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ffffff;
  color: #999999;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .hiring-page .search-bar .custom-select-wrapper .location-select {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 4px;
    padding-right: 0;
    line-height: 150%;
  }
}
.hiring-page .search-bar .custom-select-wrapper .location-select option {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #333333;
  font-family: "Lato", sans-serif;
  padding: 8px;
  background: #ffffff;
  margin: 8px;
}
.hiring-page .search-bar .custom-select-wrapper .location-select option:checked {
  background-color: #f6f6f6;
  color: #333333;
}
.hiring-page .search-bar .custom-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url("../images/arrow-down-n.svg") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .hiring-page .search-bar .custom-select-wrapper::after {
    right: 0;
  }
}
.hiring-page .search-bar .search-btn {
  background: #ba2429;
  color: #ffffff;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0 12px 12px 0;
  text-decoration: none;
  font-size: 16px;
  line-height: 28px;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hiring-page .search-bar .search-btn {
    border-radius: 0 0 12px 12px;
    width: calc(100% + 42px);
    margin-left: -21px;
    justify-content: center;
    font-weight: 500;
    line-height: 150%;
  }
}
.hiring-page .search-bar .search-btn img {
  width: auto;
}
.hiring-page .hiring-heading {
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .hiring-page .hiring-heading {
    margin-bottom: 24px;
  }
}
.hiring-page .hiring-heading h5 {
  color: #060606;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
  padding: 30px 0 16px;
}
@media (max-width: 767px) {
  .hiring-page .hiring-heading h5 {
    font-size: 20px;
    line-height: 120%;
    padding-top: 48px;
    padding-bottom: 24px;
  }
}
.hiring-page .hiring-location {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
}
@media (max-width: 767px) {
  .hiring-page .hiring-location {
    gap: 16px;
  }
}
.hiring-page .location-name {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hiring-page .location-name h6 {
  color: #060606;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 767px) {
  .hiring-page .location-name h6 {
    font-size: 16px;
    line-height: 24px;
  }
}
.hiring-page .job-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
}
@media (max-width: 767px) {
  .hiring-page .job-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 24px;
  }
}
.hiring-page .job-card-wrapper a {
  text-decoration: none;
}
.hiring-page .job-card-wrapper a .job-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid #efefef;
  background: #ffffff;
  box-shadow: 0px 4px 16px rgba(215, 215, 215, 0.25);
  padding: 24px;
  height: 100%;
}
.hiring-page .job-card-wrapper a .job-card .text-wrap h6 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .hiring-page .job-card-wrapper a .job-card .text-wrap h6 {
    font-size: 18px;
    line-height: 28px;
  }
}
.hiring-page .job-card-wrapper a .job-card .text-wrap p {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
@media (max-width: 767px) {
  .hiring-page .job-card-wrapper a .job-card .text-wrap p {
    line-height: 21px;
  }
}
.hiring-page .job-card-wrapper a .job-card .job-desp ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.hiring-page .job-card-wrapper a .job-card .job-desp ul li {
  list-style: none;
  border-radius: 10px;
  border: 1px solid #efefef;
  display: flex;
  padding: 4px 8px;
  align-items: center;
  gap: 10px;
}
.hiring-page .job-card-wrapper a .job-card .job-desp ul li .chips {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  gap: 10px;
  display: flex;
  align-items: center;
}
.hiring-page .job-card-wrapper a .job-card .job-desp ul li .chips img {
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
}
.hiring-page .job-card-wrapper a:hover .job-card .text-wrap h6 {
  color: #ba2429;
}

/* Hiring-page  */
/* end of career listing */
/* job-detail */
.job-detail-section {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.job-detail {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.job-detail .job-heading {
  display: flex;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.job-detail .job-heading .job-role-wrapper {
  display: flex;
  gap: 32px;
  align-self: stretch;
  justify-content: space-between;
  align-items: center;
}
.job-detail .job-heading .job-role-wrapper .job-title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-content: center;
}
.job-detail .job-heading .job-role-wrapper .job-title .job-ico {
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  gap: 13.333px;
  border-radius: 16px;
  background: #feeae9;
}
.job-detail .job-heading .job-role-wrapper .job-title .job-role {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  flex: 1 0 0;
}
.job-detail .job-heading .job-role-wrapper .job-title .job-role h2 {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 150% */
  margin: 0;
  padding: 0;
}
.job-detail .job-heading .job-role-wrapper .job-title .job-role p {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin: 0;
  padding: 0;
}
.job-detail .job-heading .job-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 16px;
  align-self: stretch;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
}
.job-detail .job-heading .job-icon-wrapper .icon-module {
  display: flex;
  align-items: center;
  gap: 40px;
}
.job-detail .job-heading .job-icon-wrapper .icon-module .icon-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-detail .job-heading .job-icon-wrapper .icon-module .icon-list .icons {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.job-detail .job-heading .job-icon-wrapper .icon-module .icon-list p {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
.job-detail .job-content {
  display: flex;
  padding: 80px 120px 0px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
  background-color: #ffffff;
}
.job-detail .job-content .job-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.job-detail .job-content .job-info-block h3 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 166.667% */
  margin: 0;
  padding: 0;
}
.job-detail .job-content .job-info-block p {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.job-detail .job-content .job-info-block p:last-child {
  margin: 0;
  padding: 0;
}
.job-detail .job-content ul {
  margin: 0;
}
.job-detail .btn-applynow {
  display: flex;
  padding: 9px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #ba2429;
  text-decoration: none;
  color: #ffffff;
}
.job-detail .btn-applynow .arrow-right {
  width: 16px;
  height: 16px;
}

/* end of job-detail*/
/* contact page */
.contact-banner-section .page-header-inner {
  height: auto;
  max-height: initial;
  position: relative;
  align-items: center;
  padding-bottom: 75px;
  padding-top: 116px;
}
.contact-banner-section .page-header-inner .bg-banner-image {
  max-height: initial;
}
.contact-banner-section .page-header-inner .header-content {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 1;
  max-width: 33.33%;
}
.contact-banner-section .page-header-inner .header-content p {
  color: #ffffff;
  /* H5/regular */
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 166.667% */
}
.contact-banner-section .page-header-inner .header-content .contact-link-group {
  display: flex;
  gap: 16px;
}
.contact-banner-section .page-header-inner .header-content .contact-link-group .btn {
  position: relative;
}
.contact-banner-section .page-header-inner .header-content .contact-link-group .btn.btn-mobile {
  border-radius: 16px;
  border: 1px solid #efefef;
  padding: 15px 16px 15px 48px;
  background: transparent;
  color: #ffffff;
  /* H5/bold */
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 166.667% */
}
.contact-banner-section .page-header-inner .header-content .contact-link-group .btn.btn-mobile::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/contact-phone-calling.svg) no-repeat center;
  background-size: contain;
}
.contact-banner-section .page-header-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(96deg, #260c0c 10.69%, rgba(21, 7, 7, 0.55) 54.89%, rgba(0, 0, 0, 0) 99.48%);
  z-index: 0;
}

.contact-tab .frame-type-locationFilter {
  margin-bottom: 24px;
}
.contact-tab .frame-type-locationFilter .tab-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
}
.contact-tab .frame-type-locationFilter .tab-link ul li {
  flex: 1;
}
.contact-tab .frame-type-locationFilter .tab-link ul li a {
  display: block;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  color: #181818;
  /* H7/medium */
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
}
.contact-tab .frame-type-locationFilter .tab-link ul li a.active {
  border-bottom: 1px solid #ba2429;
}
.contact-tab .frame-type-locations .ofc-addr-wrapper .row .col-lg-6 {
  width: 40%;
}
.contact-tab .frame-type-locations .ofc-addr-wrapper .row .col-lg-6:first-child {
  padding: 48px;
  width: 60%;
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item {
  display: none;
  position: relative;
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item.active {
  display: block;
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item .link-list.tab-link {
  position: absolute;
  left: calc(50% - 48px);
  top: 48px;
  z-index: 1;
  transform: translateX(-100%);
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item .link-list.tab-link ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  border-radius: 24px;
  border: 1px solid #efefef;
  padding: 4px;
  gap: 4px;
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item .link-list.tab-link ul li {
  padding: 0;
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item .link-list.tab-link ul li a {
  text-decoration: none;
  color: #181818;
  /* Body/md-semibold */
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 12px;
  border-radius: 18px;
  display: block;
  /* 142.857% */
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item .link-list.tab-link ul li a.active {
  background: #ba2429;
  color: #ffffff;
}
.contact-tab .frame-type-locations .tab-item-wrapper .tab-item .ofc-addr-wrapper .row {
  --bs-gutter-x: 0rem;
}
.contact-tab .frame-type-locations .map {
  height: 400px;
  background-color: #efefef;
}
.contact-tab .frame-type-locations .ofc-loc-wrapper {
  margin-bottom: 24px;
}
.contact-tab .frame-type-locations .ofc-loc-wrapper .ofc-loc {
  display: flex;
  gap: 16px;
}
.contact-tab .frame-type-locations .ofc-loc-wrapper .ofc-loc img {
  width: 32px;
  height: 32px;
}
.contact-tab .frame-type-locations .ofc-loc-wrapper .ofc-loc h5 {
  color: #270d0d;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 0px;
}
.contact-tab .frame-type-locations .ofc-addr {
  margin-bottom: 24px;
}
.contact-tab .frame-type-locations .ofc-addr h3 {
  color: #181818;
  /* H7/bold */
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 155.556% */
}
.contact-tab .frame-type-locations .ofc-addr p {
  color: #181818;
  /* Body/lg-regular */
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
  margin-bottom: 0px;
}
.contact-tab .frame-type-locations .cntct-person {
  display: flex;
  gap: 16px;
}
.contact-tab .frame-type-locations .cntct-person a {
  color: #181818;
  /* Body/lg-regular */
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid #efefef;
  padding: 8px 16px 8px 42px;
  display: inline-block;
}
.contact-tab .frame-type-locations .cntct-person a.email {
  position: relative;
}
.contact-tab .frame-type-locations .cntct-person a.email:after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/Letter.svg) no-repeat center;
  background-size: contain;
}
.contact-tab .frame-type-locations .cntct-person a.phone {
  position: relative;
}
.contact-tab .frame-type-locations .cntct-person a.phone:after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/PhoneRounded.svg) no-repeat center;
  background-size: contain;
}
.contact-tab .frame-type-locations .cntct-person a:first-child {
  color: #ba2429;
}
.contact-tab .meet-team-slider {
  margin-bottom: 0px;
}
.contact-tab .meet-team-slider ul.slick-dots {
  bottom: 7px;
}
.contact-tab .meet-team-slider ul.slick-dots li {
  margin: 0 2px;
  width: 6px;
  height: 6px;
}
.contact-tab .meet-team-slider ul.slick-dots li button {
  width: 6px;
  height: 6px;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  border-radius: 50%;
}
.contact-tab .meet-team-slider ul.slick-dots li button::before {
  display: none;
}
.contact-tab .meet-team-slider ul.slick-dots li.slick-active {
  border-radius: 3px;
  background: #ffffff;
  width: 17px;
  height: 6px;
}

.con-popup {
  border-radius: 16px;
  background: #ffffff;
  position: relative;
  padding: 48px;
  margin-left: 8.8%;
}
.con-popup h2 {
  color: #181818;
  text-align: center;
  /* H5/bold */
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 166.667% */
  margin-bottom: 16px;
}
.con-popup form {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
}
.con-popup form .cell {
  flex: 0 0 auto;
  width: 50%;
  margin-bottom: 24px;
  padding: 0px 20px;
}
.con-popup form .cell.ful-wd {
  width: 100%;
}
.con-popup form .cell .form-control {
  border-radius: 8px;
  border: 1px solid #efefef;
  background: #ffffff;
  padding: 11px 12px;
  color: #999999;
  /* Body/md-regular */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}
.con-popup form .cell label {
  color: #7e7e7e;
  /* Body/md-regular */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  margin-bottom: 6px;
}
.con-popup form .cell.btn-blk {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.con-popup form .cell.btn-blk button.btn-default {
  color: #ffffff;
  /* Body/lg-regular */
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  border-radius: 8px;
  background: #ba2429;
  border: 1px solid #ba2429;
  padding: 6px 16px;
}
.con-popup form .cell.btn-blk button.btn-default.nobg {
  border: 1px solid #efefef;
  background: #ffffff;
  color: #181818;
}

/* end of conact page */
/* technology */
.technology-block .technology-wrap {
  padding-bottom: 120px;
}
.technology-block .technology-column {
  row-gap: 32px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  row-gap: 32px;
  column-gap: 16px;
}
.technology-block .technology-column a.tech-card-main {
  width: calc(25% - 12px);
  text-decoration: none;
}
.technology-block .technology-column a.tech-card-main:hover .tech-card-arrow-right svg path {
  fill: #ba2429;
}
.technology-block .technology-column .tech-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  background: #ffffff;
}
.technology-block .technology-column .tech-card .tech-card-top {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.technology-block .technology-column .tech-card .tech-card-bottom {
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-top: 1px solid #efefef;
  background: #ffffff;
  color: #270d0d;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  justify-content: space-between;
}

/* end of technology */
/* Terms and Conditions */
.terms-conditions__wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.terms-conditions__main-content {
  flex-grow: 1;
}
.terms-conditions__content-block:not(:last-child) {
  margin-bottom: 32px;
}
.terms-conditions__content-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #322c2c;
  margin-bottom: 8px;
}
.terms-conditions__content-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #322c2c;
  margin-bottom: 0;
}
.terms-conditions__content-list {
  padding-left: 18px;
}
.terms-conditions__content-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #181818;
}
.terms-conditions__content-list li::marker {
  color: #ba2429;
  font-size: 16px;
}
.terms-conditions__table {
  width: 100%;
  table-layout: fixed;
}
.terms-conditions__table-wrapper {
  overflow: hidden;
  border: 1px solid #f6f6f6;
  border-radius: 12px;
}
.terms-conditions__table-head {
  background-color: #f6f6f6;
}
.terms-conditions__table-head th {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #7e7e7e;
}
.terms-conditions__table-body td {
  padding: 8px 16px;
  border-bottom: 1px solid #f6f6f6;
  border-left: 1px solid #f6f6f6;
  border-right: 1px solid #f6f6f6;
  border-top: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #181818;
}
.terms-conditions__table-body td:first-child {
  border-left: none;
}
.terms-conditions__table-body td:last-child {
  border-right: none;
}
.terms-conditions__table-body tr:last-child td {
  border-bottom: none;
}

/* end of Terms and Conditions */
/* Privacy Policy */
.privacy-policy__wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.privacy-policy__region-info {
  max-width: 339px;
  height: 100%;
  background-color: #ffffff;
  padding: 24px;
}
.privacy-policy__region-info-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #270d0d;
  margin-bottom: 0;
}
.privacy-policy__region-info-desc {
  padding-block: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
  margin-bottom: 0;
}
.privacy-policy__region-info-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 0;
}
.privacy-policy__region-info-list li {
  list-style: none;
}
.privacy-policy__region-info-email {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: 100%;
  padding: 8px;
  border: 1px solid #efefef;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #ba2429;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.privacy-policy__region-info-email svg path {
  transition: color 0.2s, fill 0.2s;
}
.privacy-policy__region-info-email:hover {
  background: #ba2429;
  color: #ffffff;
}
.privacy-policy__region-info-email:hover svg path {
  fill: #ffffff;
}
.privacy-policy__main-content {
  flex-grow: 1;
}
.privacy-policy__content-block:not(:last-child) {
  margin-bottom: 32px;
}
.privacy-policy__content-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #322c2c;
  margin-bottom: 8px;
}
.privacy-policy__content-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #322c2c;
  margin-bottom: 0;
}
.privacy-policy__content-list {
  padding-left: 18px;
}
.privacy-policy__content-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #181818;
}
.privacy-policy__content-list li::marker {
  color: #ba2429;
  font-size: 16px;
}

/* end of Privacy Policy */
/* solution slider */
.solution-slider .solution-slider-card {
  position: relative;
}
.solution-slider .solution-slider-card .image {
  position: relative;
  overflow: hidden;
}
.solution-slider .solution-slider-card .image img {
  width: 100%;
  height: 33.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.solution-slider .solution-slider-card .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(191deg, rgba(68, 19, 19, 0) 50.59%, #190202 82.91%);
  pointer-events: none;
}
.solution-slider .solution-slider-card .text-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}
.solution-slider .solution-slider-card .text-wrap h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.625rem;
  margin: 0;
}
.solution-slider .solution-slider-card .text-wrap p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0;
}

/* end of solution slider */
/* case study slider */
.case-study-slider-inner {
  overflow: hidden;
}
@media (max-width: 767px) {
  .case-study-slider-inner {
    padding-left: 24px;
  }
}
@media (max-width: 767px) {
  .case-study-slider-inner .slick-list {
    padding-right: 10px !important;
    margin-left: 0px;
    margin-right: 0;
  }
}
.case-study-slider-inner .case-study-card {
  position: relative;
  margin: 0 7.605px;
  background: linear-gradient(90deg, #b8d8b1 0%, #e3f4f4 50%, #9fd1d4 100%);
  height: 383.513px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .case-study-slider-inner .case-study-card {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 0 24px;
    gap: 32px;
    height: 517px;
  }
}
@media (max-width: 767px) {
  .case-study-slider-inner .case-study-card {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 0 24px;
    margin-right: 8px;
    margin-left: 0;
    height: 100%;
    min-height: 465px;
    max-height: 465px;
    gap: 0;
  }
}
.case-study-slider-inner .case-study-card .logo {
  width: 154.014px;
  height: 43.109px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1001;
  top: 39.3px;
  left: 31.71px;
}
@media (max-width: 991px) {
  .case-study-slider-inner .case-study-card .logo {
    position: inherit;
    top: inherit;
    left: inherit;
  }
}
.case-study-slider-inner .case-study-card .logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 45px;
}
@media (max-width: 767px) {
  .case-study-slider-inner .case-study-card .logo img {
    max-height: 36px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .case-study-slider-inner .case-study-card .screenshort {
    order: 3;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .case-study-slider-inner .case-study-card .screenshort {
    order: 3;
    margin-top: auto;
    padding-top: 33px;
    display: flex;
    justify-content: center;
  }
}
.case-study-slider-inner .case-study-card .screenshort img {
  width: auto;
  height: auto;
  max-width: 460.404px;
  max-height: 324.169px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  z-index: 1001;
  bottom: 0;
  right: 72px;
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .case-study-slider-inner .case-study-card .screenshort img {
    max-width: 420.404px;
    max-height: 294.169px;
    margin-bottom: 0px;
    right: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-slider-inner .case-study-card .screenshort img {
    max-width: 380.404px;
    max-height: 274.169px;
    margin-bottom: 0px;
    right: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .case-study-slider-inner .case-study-card .screenshort img {
    position: inherit;
    width: 100%;
    height: auto;
    aspect-ratio: 500.813/400.829;
    aspect-ratio: inherit;
    max-width: inherit;
    max-height: 270px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
@media (max-width: 767px) {
  .case-study-slider-inner .case-study-card .screenshort img {
    position: inherit;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 220px;
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 290/220;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.case-study-slider-inner .case-study-card .text-wrap {
  position: absolute;
  bottom: 2.31rem;
  left: 1.98rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .case-study-slider-inner .case-study-card .text-wrap {
    position: inherit;
    bottom: inherit;
    left: inherit;
  }
}
@media (max-width: 767px) {
  .case-study-slider-inner .case-study-card .text-wrap {
    position: inherit;
    bottom: inherit;
    left: inherit;
    margin-top: 32px;
  }
}
.case-study-slider-inner .case-study-card .text-wrap h3 {
  color: #060606;
  font-size: 23.427px;
  font-style: normal;
  font-weight: 600;
  line-height: 32.058px;
  margin: 0;
}
@media (max-width: 767px) {
  .case-study-slider-inner .case-study-card .text-wrap h3 {
    font-size: 18px;
    line-height: 13px;
    margin-bottom: 12px;
  }
}
.case-study-slider-inner .case-study-card .text-wrap p {
  color: #202020;
  font-size: 14.796px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.66px;
  margin: 0;
}
@media (max-width: 767px) {
  .case-study-slider-inner .case-study-card .text-wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}
.case-study-slider-inner .case-study-card .text-wrap .arrow {
  padding: 0.6165rem;
  border: 0.616px solid #000;
  width: 1.61831rem;
  height: 1.61831rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.08rem;
}
.case-study-slider-inner .case-study-card .text-wrap .arrow img {
  width: 0.76613rem;
  height: 0.41013rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner .case-wrapper-slider {
  position: relative;
}
.inner .case-wrapper-slider button.prev-arrow {
  position: absolute;
  bottom: 178.88px;
  left: 30px;
  z-index: 1001;
  border-radius: 4px;
  border: 1px solid #efefef;
  background: #fff;
  padding: 4px 8px;
}
@media (max-width: 767px) {
  .inner .case-wrapper-slider button.prev-arrow {
    display: none;
  }
}
.inner .case-wrapper-slider button.prev-arrow img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.inner .case-wrapper-slider button.next-arrow {
  border-radius: 4px;
  border: 1px solid #efefef;
  background: #fff;
  padding: 4px 8px;
  position: absolute;
  bottom: 178.88px;
  z-index: 1001;
  right: 30px;
}
@media (max-width: 767px) {
  .inner .case-wrapper-slider button.next-arrow {
    display: none;
  }
}
.inner .case-wrapper-slider button.next-arrow img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: rotate(180deg);
}
.inner .case-wrapper-slider .slider-header {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .inner .case-wrapper-slider .slider-header {
    padding-bottom: 48px;
  }
}

/* end of case study slider */
/* project wrapper slider */
.project-wrapper-slider .project-study-slider .project-study-card {
  position: relative;
  margin: 0 auto;
  background: linear-gradient(90deg, #b8d8b1 0%, #e3f4f4 50%, #9fd1d4 100%);
  height: 622.09px;
}
.project-wrapper-slider .project-study-slider .project-study-card .screenshort img {
  width: 80%;
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
  position: absolute;
  z-index: 1001;
  bottom: 0;
  right: 10%;
}

/* end of project wrapper slider */
/* Faq */
@media (max-width: 767px) {
  .custom-faq-solutions header {
    padding-bottom: 48px;
  }
}
.custom-faq-solutions h4 {
  color: #181818;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
}
.custom-faq-solutions h3 {
  font-size: 48px;
  color: #181818;
  font-weight: 400;
  line-height: 64px;
}
@media (max-width: 991px) {
  .custom-faq-solutions h3 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .custom-faq-solutions h3 {
    font-size: 38px;
    line-height: 150%;
    color: #060606;
  }
}
.custom-faq-solutions .custom-accordian-content .accordion {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .custom-faq-solutions .custom-accordian-content .accordion {
    gap: 40px;
  }
}
.custom-faq-solutions .custom-accordian-content h5 > button {
  border: none;
  background: transparent;
  box-shadow: none;
  color: #181818;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3rem;
  align-items: baseline;
  gap: 10px;
}
@media (max-width: 767px) {
  .custom-faq-solutions .custom-accordian-content h5 > button {
    font-size: 20px;
    line-height: 150%;
    font-weight: 500;
  }
}
.custom-faq-solutions .accordion-button {
  padding: 0;
}
.custom-faq-solutions .accordion-item {
  background: transparent;
  border: none;
}
.custom-faq-solutions .accordion-item .accordion-body {
  padding: 0;
  color: #666666;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
}
@media (max-width: 767px) {
  .custom-faq-solutions .accordion-item .accordion-body {
    padding-top: 10px;
  }
}

/* end of Faq */
/* Mobile app slider */
@media (max-width: 576px) {
  .mobile-app-slider .service-slider .slick-list {
    padding-left: 0 !important;
    padding-right: 20px !important;
    margin-left: 0px;
    margin-right: 0;
  }
}
.mobile-app-slider .service-slider.slick-slider {
  margin: 0 -8px;
}
@media (max-width: 576px) {
  .mobile-app-slider .service-slider.slick-slider {
    margin: 0;
  }
}
.mobile-app-slider .service-slider .slick-track {
  display: flex;
}
.mobile-app-slider .service-slider .slick-track .slick-slide {
  height: auto;
}
.mobile-app-slider .service-slider .service-card {
  background: #ffffff;
  margin: 0 8px;
  border: 1px solid #efefef;
}
@media (max-width: 576px) {
  .mobile-app-slider .service-slider .service-card {
    margin-left: 0;
  }
}
.mobile-app-slider .service-slider .service-card .image {
  position: relative;
  height: 12.5rem;
  background: url("../images/Union.svg") no-repeat center right, linear-gradient(135deg, #b3e5fc, #81d4fa);
  background-size: auto, cover;
}
.mobile-app-slider .service-slider .service-card .image img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
}
.mobile-app-slider .service-slider .service-card .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
.mobile-app-slider .service-slider .service-card .text-wrap h5 {
  color: #270d0d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.mobile-app-slider .service-slider .service-card .text-wrap p {
  color: #181818;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.mobile-app-slider .custom-arrows {
  display: flex;
  gap: 24px;
}
.mobile-app-slider .custom-arrows button {
  border: 1px solid #181818;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  background: transparent;
  opacity: 0.3;
}
.mobile-app-slider .custom-arrows button:hover {
  opacity: 1;
}
.mobile-app-slider .custom-arrows img {
  width: 19.883px;
  height: 10.645px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-app-slider .slider-header {
  margin-bottom: 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.mobile-app-slider .slider-header h2 {
  color: #181818;
}

/* end of Mobile app slider */
/* our process slider */
@media (max-width: 576px) {
  .our-process-slider .process-slider .slick-list {
    padding-left: 0 !important;
    padding-right: 20px !important;
    margin-left: 0px;
    margin-right: 0;
  }
}
.our-process-slider .process-slider .slick-track {
  display: flex;
}
.our-process-slider .process-slider .slick-track .slick-slide {
  height: auto;
}
@media (max-width: 576px) {
  .our-process-slider .process-slider .slick-track .slick-slide {
    min-height: 268px;
  }
}
.our-process-slider .process-slider .process-card {
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #efefef;
}
@media (max-width: 576px) {
  .our-process-slider .process-slider .process-card {
    margin-left: 0;
  }
}
.our-process-slider .process-slider .process-card h2 {
  color: #efefee;
  margin-bottom: 24px;
}
.our-process-slider .process-slider .process-card h5 {
  color: #270d0d;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 8px;
}
.our-process-slider .process-slider .process-card p {
  color: #181818;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.our-process-slider .custom-arrows {
  display: flex;
  gap: 24px;
}
.our-process-slider .custom-arrows button {
  border: 1px solid #181818;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  background: transparent;
  opacity: 0.3;
}
.our-process-slider .custom-arrows button:hover {
  opacity: 1;
}
.our-process-slider .custom-arrows img {
  width: 19.883px;
  height: 10.645px;
  -o-object-fit: contain;
     object-fit: contain;
}
.our-process-slider .slider-header {
  margin-bottom: 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.our-process-slider .slider-header h2 {
  color: #181818;
}

/* end of our process slider */
/* leadership */
.leadership-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .leadership-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.leadership-block .leadership-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.leadership-block .leadership-header h2 {
  color: #060606;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.leadership-block .leadership-header p {
  color: #322c2c;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 767px) {
  .leadership-block .leadership-header p {
    font-size: 16px;
    line-height: 24px;
  }
}
.leadership-block .leadership-header p:last-child {
  margin: 0;
  padding: 0;
}
.leadership-block .leadership-team {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.leadership-block .leadership-team ul {
  list-style-type: none;
  margin: 0 0 60px 0;
  padding: 0 0 0 92px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.leadership-block .leadership-team ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  width: 100%;
  border-radius: 24px;
  background: #fff000;
}
.leadership-block .leadership-team ul li .process-step-indicator {
  width: 24px;
  height: 24px;
  background-color: #f7e8e9;
  border: 2px solid #ba2429;
  border-radius: 50%;
  position: absolute;
  left: -90px;
  z-index: 1;
}
.leadership-block .leadership-team ul li .lists {
  display: flex;
  padding: 24px;
  align-items: flex-start;
  gap: 10px;
  gap: 24px;
  align-self: stretch;
}
.leadership-block .leadership-team ul li .lists p {
  margin: 0;
  padding: 0;
}
.leadership-block .leadership-team ul li h5 {
  margin: 0 0 2px 0;
  padding: 0;
  color: #252525;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
.leadership-block .leadership-team ul li p {
  color: #4c4c4c;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.leadership-block .leadership-team ul li:after {
  content: "";
  width: 1px;
  background-color: #999999;
  height: 101%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -78px;
  z-index: 0;
}
.leadership-block .leadership-team ul li:first-child {
  padding-top: 0;
}
.leadership-block .leadership-team ul li:last-child {
  padding-bottom: 0;
  border: none;
}
.leadership-block .leadership-team ul li:last-child:after {
  height: 50%;
}
.leadership-block .leadership-team ul li:hover .process-step-indicator {
  background-color: var(--color-black-prime);
  color: var(--color-white-prime);
}

.outer {
  flex: 1;
  justify-items: baseline;
}

.progress-lists {
  display: inline-flex;
  height: 100%;
  background-color: transparent;
  overflow: visible;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .progress-lists {
    padding-left: 20px;
  }
}
.progress-lists > div {
  display: flex;
  flex-direction: column;
  color: #f7e8e9;
}
.progress-lists > div.left {
  padding-right: 36px;
  text-align: right;
}
.progress-lists > div.left div:last-of-type:after {
  display: none;
}
.progress-lists > div.left div:after {
  content: "";
  background: #999;
  border-radius: 2px;
  position: absolute;
  right: -36px;
  height: 100vh;
  width: 1px;
  transform: translateX(50%);
}
.progress-lists > div.right {
  padding-left: 36px;
  height: auto;
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .progress-lists > div.right {
    padding-left: 4px;
  }
}
.progress-lists > div.right > div {
  height: auto !important;
  position: relative;
}
.progress-lists > div.right > div.prev:after {
  transition: none;
}
.progress-lists > div.right > div.current {
  color: #f7e8e9;
  font-weight: bold;
}
.progress-lists > div.right > div.current:before {
  background: #f7e8e9;
  padding: 10px;
  transition: all 0.2s 0.15s cubic-bezier(0.175, 0.885, 0.32, 2);
}
.progress-lists > div.right > div.current:after {
  height: 0%;
  transition: height 0.2s ease-out;
}
.progress-lists > div.right > div.current ~ div {
  color: #f7e8e9;
}
.progress-lists > div.right > div.current ~ div:before {
  background: #f7e8e9;
  padding: 2.5px;
}
.progress-lists > div.right > div.current ~ div:after {
  height: 0%;
  transition: none;
}
.progress-lists > div.right > div:last-child:after {
  display: none;
}
.progress-lists > div.right > div:last-child .list-data .process-step-indicator:after {
  height: 0;
}
.progress-lists > div.right:first-child > div:first-child .list-data .process-step-indicator:after {
  height: 50%;
}
@media (max-width: 767px) {
  .progress-lists > div.right:first-child > div:first-child .list-data .process-step-indicator:after {
    height: 100%;
    top: 45px;
  }
}
.progress-lists > div.right:first-child > div:first-child .list-data .process-step-indicator:before {
  height: 0;
}
@media (max-width: 767px) {
  .progress-lists > div.right:first-child > div:first-child .list-data .process-step-indicator:before {
    display: none;
  }
}
.progress-lists > div.right:last-child > div:last-child .list-data .process-step-indicator:after {
  height: 0;
}
@media (max-width: 767px) {
  .progress-lists > div.right:last-child > div:last-child .list-data .process-step-indicator:after {
    height: 45px;
    top: 0;
  }
}
.progress-lists > div.right:last-child > div:last-child .list-data .process-step-indicator:before {
  height: 50%;
}
@media (max-width: 767px) {
  .progress-lists > div.right:last-child > div:last-child .list-data .process-step-indicator:before {
    display: none;
  }
}
.progress-lists > div .list-data {
  position: relative;
  line-height: 20px;
  cursor: default;
  min-height: 30px;
  height: auto !important;
  padding: 24px;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  -moz-column-gap: 0;
       column-gap: 0;
  align-items: center;
}
@media (max-width: 767px) {
  .progress-lists > div .list-data {
    padding: 8px;
    align-items: flex-start;
  }
}
.progress-lists > div .list-data .process-step-indicator {
  height: 100%;
  display: flex;
}
.progress-lists > div .list-data .process-step-indicator span {
  padding: 5px;
  border-radius: 50%;
  left: -48px;
  top: 45%;
  width: 24px;
  height: 24px;
  z-index: 2;
  background: #f7e8e9;
  border: 1px solid #ba2429;
  border-radius: 50%;
  position: absolute;
}
@media (max-width: 767px) {
  .progress-lists > div .list-data .process-step-indicator span {
    left: -24px;
    width: 16px;
    height: 16px;
    top: 40px;
  }
}
.progress-lists > div .list-data .process-step-indicator:before {
  content: "";
  background-color: #999;
  position: absolute;
  width: 1px;
  height: calc(100% + 24px);
  left: -36px;
  top: 0;
}
@media (max-width: 767px) {
  .progress-lists > div .list-data .process-step-indicator:before {
    left: -17px;
  }
}
.progress-lists > div .list-data .process-step-indicator:after {
  content: "";
  background-color: #999;
  position: absolute;
  width: 1px;
  height: calc(100% + 24px);
  left: -36px;
  bottom: 0;
}
@media (max-width: 767px) {
  .progress-lists > div .list-data .process-step-indicator:after {
    left: -17px;
    top: 0;
  }
}
.progress-lists > div .list-data p {
  color: #181818;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.progress-lists > div .list-data p:last-child {
  margin-bottom: 0;
}
.progress-lists > div .list-data img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-right: 24px;
}

.grid-1c {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .grid-1c {
    gap: 0;
  }
}
.grid-1c header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .grid-1c header {
    margin-bottom: 16px;
  }
}
.grid-1c header h2 {
  color: #060606;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .grid-1c header h2 {
    font-size: 34px;
    line-height: 51px;
  }
}
.grid-1c header p {
  color: #322c2c;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 767px) {
  .grid-1c header p {
    font-size: 16px;
    line-height: 24px;
  }
}
.grid-1c header p:last-child {
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .grid-1c header p {
    margin-bottom: 0;
  }
}
.grid-1c ul.grid-1c-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 1px solid #efefef;
  color: #181818;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 767px) {
  .grid-1c ul.grid-1c-data {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.grid-1c ul.grid-1c-data li {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: #fff;
  border-bottom: 1px solid #efefef;
}
@media (max-width: 767px) {
  .grid-1c ul.grid-1c-data li {
    padding: 12px;
  }
}
.grid-1c ul.grid-1c-data li:last-child {
  border: none;
}

/* end of leadership */
/* Noteworthy */
.noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg {
  background: linear-gradient(135deg, #2a2a4d 0%, #476cbb 50%, #76e2f8 100%);
  width: 100%;
  height: auto;
  padding: 60px 60px 90px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg {
    padding: 43.113px 7.186px;
  }
}
.noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg .slick-list {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg .slick-list {
    padding-bottom: 30px;
  }
}
.noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg .noteworthy-slider-content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg .noteworthy-slider-content .image img {
  aspect-ratio: 311.11/310.74;
}
@media (max-width: 1199.98px) {
  .noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg .noteworthy-slider-content .image img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
}
.noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg .noteworthy-slider-content .text-wrap p {
  color: #fff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .noteworthy-slider-wrapper .noteworthy-slider-container .noteworthy-slider-bg .noteworthy-slider-content .text-wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}
.noteworthy-slider-wrapper .noteworthy-slider-container .slick-dots {
  position: absolute;
  bottom: 60px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  left: 0;
  right: 0;
}
@media (max-width: 1199.98px) {
  .noteworthy-slider-wrapper .noteworthy-slider-container .slick-dots {
    bottom: 43.11px;
  }
}
.noteworthy-slider-wrapper .noteworthy-slider-container .slick-dots li {
  width: 6px;
  height: 6px;
  background: transparent;
  margin: 0 4px;
}
.noteworthy-slider-wrapper .noteworthy-slider-container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 50%;
  background: #e3e3e3;
  transition: all 0.3s ease;
}
.noteworthy-slider-wrapper .noteworthy-slider-container .slick-dots li button::before {
  display: none;
}
.noteworthy-slider-wrapper .noteworthy-slider-container .slick-dots li.slick-active {
  width: 17.244px;
  height: 6px;
  background: #e3e3e3;
  border-radius: 3px;
}
.noteworthy-slider-wrapper .noteworthy-slider-container .slick-dots li button {
  background: #e3e3e3;
  border-radius: 3px;
}

/* end of Noteworthy */
/* Text slider */
.text-slider {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eee;
  width: 100%;
  display: flex;
  margin-bottom: 0 !important;
}
@media (max-width: 1900px) {
  .text-slider {
    width: 100%;
  }
}
.text-slider .slick-prev,
.text-slider .slick-next {
  display: none;
}
.text-slider .slick-dots {
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.text-slider .slick-dots li {
  margin: 0px 4px;
  width: 6px;
  height: 6px;
}
.text-slider .slick-dots button {
  display: block;
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #eee;
}
.text-slider .slick-dots button:before {
  display: none;
}
.text-slider .slick-dots li.slick-active button {
  background-color: #666;
  width: 17.244px;
  height: 6px;
}
.text-slider .text-slider-item {
  width: 100%;
}
.text-slider .text-slider-item .text-slider-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.text-slider .text-slider-item .text-slider-content p {
  color: #5d5d5d;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.text-slider .text-slider-item .text-slider-content p strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  color: #181818;
}
.text-slider .text-slider-item .text-slider-content p:has(strong) {
  padding-bottom: 16px !important;
}

.text-slide-dots {
  width: 100%;
  text-align: center;
}
.text-slide-dots ul.slick-dots {
  display: flex !important;
  list-style: none;
  padding: 0;
  position: relative;
  bottom: inherit;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.text-slide-dots ul.slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}
.text-slide-dots ul.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 6px;
  height: 6px;
  border: none;
  padding: 5px;
  color: rgba(255, 255, 255, 0);
  outline: none;
  margin-right: 8px;
  border-radius: 50%;
  background: #e3e3e3;
  transition: all 0.2s;
}
.text-slide-dots ul.slick-dots li button:before {
  display: none;
}
.text-slide-dots ul.slick-dots li.slick-active button {
  background-color: #b5b5b5;
  width: 18px;
  border-radius: 9px;
}

/* new about page text banner in content sec **/
.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 768px) {
  .banner-container {
    min-height: 614px;
  }
}
@media (max-width: 767px) {
  .banner-container {
    min-height: 762px;
    gap: 10px;
  }
}
.banner-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1440/614;
}
@media (min-width: 768px) {
  .banner-container img {
    min-height: 614px;
  }
}
@media (max-width: 767px) {
  .banner-container img {
    min-height: 762px;
    aspect-ratio: 1440/762;
  }
}
.banner-container:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-text {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  color: #fff;
  text-align: left;
  padding-top: 53px;
  padding-bottom: 53px;
  bottom: 0;
  padding-left: 11.11%;
  padding-right: 11.11%;
}
@media (max-width: 1199px) {
  .banner-text {
    padding-left: 6.67%;
    padding-right: 6.67%;
  }
}
@media (max-width: 991px) {
  .banner-text {
    padding-left: 4.844%;
    padding-right: 4.844%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .banner-text {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.banner-text .caption-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 767px) {
  .banner-text .caption-block {
    display: flex;
    width: 295px;
    gap: 24px;
    flex-shrink: 0;
  }
}
.banner-text .caption-block .caption-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 637px;
}
.banner-text .caption-block .caption-content h2 {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 767px) {
  .banner-text .caption-block .caption-content h2 {
    line-height: 120%;
  }
}
.banner-text .caption-block .caption-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 767px) {
  .banner-text .caption-block .caption-content p {
    font-size: 16px;
    line-height: 150%;
  }
}
.banner-text .caption-block .caption-content::after {
  content: "";
  width: 100%;
  background: rgba(198, 115, 115, 0.3);
  height: 1px;
  margin-top: 24px;
}

.stats-counter-wrap {
  display: flex;
  align-items: center;
  gap: 49.153px;
}
@media (max-width: 767px) {
  .stats-counter-wrap {
    width: 295px;
    align-content: center;
    gap: 24px 49.153px;
    flex-wrap: wrap;
  }
}
.stats-counter-wrap .stats-counter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.378px;
}
.stats-counter-wrap .stats-counter-item .count-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.378px;
}
.stats-counter-wrap .stats-counter-item .count-wrap .count {
  color: #fff;
  font-size: 44.396px;
  font-style: normal;
  font-weight: 700;
  line-height: 61.838px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
@media (max-width: 767px) {
  .stats-counter-wrap .stats-counter-item .count-wrap .count {
    font-size: 38px;
    line-height: 120%;
  }
}
.stats-counter-wrap .stats-counter-item .count-wrap .count-content {
  color: #fff;
  font-size: 19.027px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
@media (max-width: 767px) {
  .stats-counter-wrap .stats-counter-item .count-wrap .count-content {
    font-size: 18px;
    line-height: 150%;
  }
}

@media (min-width: 768px) {
  .cards-with-icon.who-we-are .ico-with-data ul {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .cards-with-icon.who-we-are .ico-with-data ul {
    gap: 32px;
  }
}
.cards-with-icon.who-we-are .ico-with-data ul li {
  border: 1px solid #EEE;
}
@media (min-width: 768px) {
  .cards-with-icon.who-we-are .ico-with-data ul li {
    width: calc(50% - 8px);
  }
}
@media (min-width: 768px) {
  .cards-with-icon.who-we-are .ico-with-data ul li .slider-item {
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .cards-with-icon.who-we-are .ico-with-data ul li .slider-item .card-data h4 {
    line-height: 42px;
  }
}
@media (min-width: 768px) {
  .cards-with-icon.who-we-are .ico-with-data ul li .slider-item .card-data p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .cards-with-icon.who-we-are .ico-with-data ul li .slider-item .card-data p {
    line-height: 24px;
  }
}
.cards-with-icon.who-we-are .ico-with-data ul li .slider-item img {
  width: 29px;
  height: 29px;
}

/* end of content sec banner with text in about page */
/* gradient */
.frame-android-bg-gradient {
  background: url(../images/android-bg-gradient.jpg) no-repeat;
  background-size: 100% 100%;
}

.frame-ios-bg-gradient {
  background: url(../images/ios-bg-gradient.jpg) no-repeat;
  background-size: 100% 100%;
}

.frame-react-bg-gradient {
  background: url(../images/react-bg-gradient.jpg) no-repeat;
  background-size: 100% 100%;
}

.frame-flutter-bg-gradient {
  background: url(../images/flutter-bg-gradient.jpg) no-repeat;
  background-size: 100% 100%;
}

/* end of gradient */
/* header white */
@media (min-width: 992px) {
  .inner.header-white {
    padding-top: 95px;
  }
}
@media (min-width: 992px) {
  .inner.header-white > header {
    top: 0;
    background-color: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .inner.header-white > header .custom-navbar .navigation > ul > li > a {
    color: #181818;
  }
}
@media (min-width: 992px) {
  .inner.header-white > header .custom-navbar .navigation > ul > li > img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(49%) hue-rotate(158deg) brightness(116%) contrast(81%);
  }
}

/* end of header white */
/* quick fix */
.mobile-app-slider .slider-header {
  position: relative;
}
@media (min-width: 768px) {
  .mobile-app-slider .slider-header {
    padding-right: 155px;
  }
}
@media (max-width: 767px) {
  .mobile-app-slider .slider-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .mobile-app-slider .slider-header .custom-arrows {
    position: absolute;
    bottom: 10px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .mobile-app-slider .slider-header .custom-arrows {
    left: 0;
  }
}

.our-process-slider .slider-header {
  position: relative;
}
@media (min-width: 768px) {
  .our-process-slider .slider-header {
    padding-right: 155px;
  }
}
@media (max-width: 767px) {
  .our-process-slider .slider-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .our-process-slider .slider-header .custom-arrows {
    position: absolute;
    bottom: 10px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .our-process-slider .slider-header .custom-arrows {
    left: 0;
  }
}
.our-process-slider .process-slider .slick-track .slick-slide.slick-current {
  border-right: 0px;
}
.our-process-slider .process-slider .slick-track .slick-slide.slick-current + .slick-active {
  border-right: 0px;
}
.our-process-slider .process-slider .slick-track .slick-slide.slick-active + .slick-active {
  border-right: 0px;
}

/*** quick fix N ***/
@media (max-width: 767px) {
  .sub-heading-desk {
    display: none;
  }
}

@media (min-width: 768px) {
  .sub-heading-mob {
    display: none;
  }
}

.global-dropdown-menu {
  overflow: hidden;
  left: 0;
}
@media screen and (min-width: 1899px) {
  .global-dropdown-menu .main-submenu .component2 .mobile {
    grid-template-columns: repeat(3, 1fr);
  }
}
.global-dropdown-menu .main-submenu .third-section {
  max-width: 284px;
  padding: 48px 0 0 15px;
}

.mfp-wrap {
  z-index: 99999 !important;
}

/* end of quick fix */
/* end of services page style *//*# sourceMappingURL=inner.css.map */