@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
@media (max-width: 767px) {
  .btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn-group .btn {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .btn-group .btn {
    margin-left: 0px;
    margin-bottom: 0px;
  }
}
.btn-group .btn:first-child {
  margin-left: 0px;
}

.btn {
  position: relative;
  background: #d71f26;
  border: 1px solid #d71f26;
  font-size: 16px;
  color: #ffffff;
  margin: 1rem 0;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  font-family: var(--bc-montserrat);
  font-weight: 500;
}
.btn.btn-primary {
  background: #d71f26;
  color: #ffffff;
}
.btn.btn-secondary {
  background-color: #fff;
  color: #000;
  border-color: currentColor;
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

.active.fade-left {
  animation: fade-left 1s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.navigation {
  position: fixed;
  top: 0px;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 4;
  padding: 20px 10px;
  font-family: var(--bc-montserrat);
  background-color: #fff;
}
.navigation.header-fixed {
  position: fixed;
  margin-top: 0px;
}
.navigation.menu-open {
  background-color: #ffffff !important;
}
@media (max-width: 1299px) {
  .navigation {
    padding: 10px;
  }
}

.hero {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 992px) {
  .hero {
    margin-top: 50px;
  }
}
.hero .page-hero {
  min-height: calc(100vh - 119px);
}
.hero .page-hero.coming-soon {
  min-height: 60vh;
  padding-right: 0px;
}
.hero .page-hero.coming-soon h1 {
  text-align: center;
}
.hero .page-hero.coming-soon .banner-para {
  text-align: center;
  padding-right: 0px;
}
@media (max-width: 992px) {
  .hero .page-hero {
    min-height: 400px;
    margin-top: 100px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero .page-hero {
    min-height: 500px;
    margin-top: 80px;
  }
}

.brand {
  padding-left: 20px;
  float: left;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a {
  width: 107px;
  height: 65px;
  display: block;
  background-image: url(/assets/img/svg/logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 992px) {
  .brand a {
    width: 80px;
    height: 49px;
  }
}
@media (max-width: 1299px) {
  .brand {
    padding-left: 0px;
  }
  .brand img {
    width: 140px;
  }
}
.brand a,
.brand a:visited {
  color: #000000;
  text-decoration: none;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 13%;
  padding-right: 10%;
}
@media (max-width: 1299px) {
  .nav-container {
    padding-right: 30px;
  }
}
@media (max-width: 992px) {
  .nav-container {
    padding-left: 0px;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0px;
  }
}

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul > li:hover,
nav ul .menu-active {
  position: relative;
}
nav ul > li:hover > a.parent:before,
nav ul .menu-active > a.parent:before {
  position: absolute;
  width: calc(100% - 40px);
  height: 2px;
  background-color: red;
  content: "";
  bottom: 10px;
}
nav ul li {
  float: left;
  position: relative;
}
@media (min-width: 992px) {
  nav ul li:hover .nav-dropdown {
    display: block !important;
  }
}
nav ul li ul {
  display: block;
  white-space: nowrap;
}
nav ul li ul li {
  position: relative;
}
nav ul li ul li:hover a {
  letter-spacing: 1px;
}
nav ul li ul li:hover li > a {
  letter-spacing: 0px;
}
nav ul li ul li:hover li > a:hover {
  letter-spacing: 1px;
}
nav ul li ul li:hover:before {
  content: "";
  border-left: 4px solid #fd1e18;
  position: absolute;
  left: 6px;
  letter-spacing: 1px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 4px;
  height: 10px;
}
@media (max-width: 992px) {
  nav ul li ul li:hover:before {
    display: none;
  }
}
nav ul li ul li a {
  font-size: 12px;
  padding-left: 20px;
}
nav ul li ul li a:after {
  transform: rotate(90deg);
}
nav ul li ul li ul {
  display: none;
}
nav ul li ul li:hover ul {
  display: block;
  position: absolute;
  top: 0px;
  left: 100%;
  background: #fff;
  border-left: 1px solid #fd1e18;
}
@media (max-width: 992px) {
  nav ul li ul li:hover ul {
    position: static;
    margin-top: 0px;
    border: 0px;
  }
}
nav ul li:hover ul {
  display: block;
  white-space: nowrap;
}
nav ul li:hover ul li {
  position: relative;
}
nav ul li:hover ul li:hover a {
  letter-spacing: 1px;
}
nav ul li:hover ul li:hover li > a {
  letter-spacing: 0px;
}
nav ul li:hover ul li:hover li > a:hover {
  letter-spacing: 1px;
}
nav ul li:hover ul li:hover:before {
  content: "";
  border-left: 4px solid #fd1e18;
  position: absolute;
  left: 6px;
  letter-spacing: 1px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 4px;
  height: 10px;
}
@media (max-width: 992px) {
  nav ul li:hover ul li:hover:before {
    display: none;
  }
}
nav ul li:hover ul li a {
  font-size: 12px;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 992px) {
  nav ul li:hover ul li a {
    padding-left: 30px;
  }
}
nav ul li:hover ul li a:after {
  transform: rotate(90deg);
}
nav ul li:hover ul li ul {
  display: none;
}
nav ul li:hover ul li:hover ul {
  display: block;
  position: absolute;
  top: 0px;
  left: 100%;
  background: #fff;
  border-left: 1px solid #fd1e18;
}
@media (max-width: 992px) {
  nav ul li:hover ul li:hover ul {
    position: static;
    margin-top: 0px;
    border: 0px;
  }
}
nav ul li a,
nav ul li a:visited {
  display: block;
  margin: 0 16px;
  line-height: 50px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1299px) {
  nav ul li a,
  nav ul li a:visited {
    font-size: 14px;
    padding: 0 14px 0 11px;
    margin: 0px;
    position: relative;
  }
}
nav ul li a:hover,
nav ul li a:visited:hover {
  color: #000000;
}
nav ul li a:hover:not(:only-child):after,
nav ul li a:visited:hover:not(:only-child):after {
  transform: rotate(0deg);
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  background: url(/assets/img/angle.svg) no-repeat center center;
  background-size: 6px;
  position: absolute;
  content: "";
  right: 9px;
  width: 6px;
  height: 6px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 3px;
  transform: rotate(180deg);
}
nav ul li ul li {
  min-width: 190px;
  position: relative;
  width: 100%;
}
nav ul li ul li a {
  padding: 8px 15px;
  line-height: 20px;
  margin: 0px;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  width: 205px;
}
.nav-dropdown ul {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  margin-left: 0px;
}
@media (max-width: 992px) {
  .nav-dropdown ul {
    margin-left: 15px;
    box-shadow: none;
  }
}
/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
}

@media (max-width: 992px) {
  .nav-mobile {
    display: block;
  }
  nav {
    width: 100%;
    padding: 0px;
  }
  nav ul {
    display: none;
    margin-top: 40px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  nav ul {
    margin-top: 0px;
  }
}
@media (max-width: 992px) {
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
  .nav-dropdown {
    position: static;
    box-shadow: unset;
    width: 100%;
    margin-top: 0px;
  }
}
#nav-toggle {
  position: absolute;
  right: 12px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 4px;
  height: 3px;
  width: 25px;
  background: #000000;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -8px;
}
#nav-toggle span:after {
  bottom: -8px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #fff;
  display: flex;
  justify-content: center;
  left: 0px;
  top: 0px;
}
.loader img {
  margin: auto;
  width: 30%;
}

.darkbg .brand a {
  background-image: url(/assets/img/footer-logo.svg);
}
.darkbg.dct-curve .brand a {
  background-image: url(/assets/img/dct-logos/dct-curve-logo.svg);
}
.darkbg.dct-masn .brand a {
  background-image: url(/assets/img/dct-logos/dct-masn-logo.svg);
}
.darkbg.dct-hungama .brand a {
  background-image: url(/assets/img/dct-logos/dct-hungama-logo.svg);
}
.darkbg.dct-skyarx .brand a {
  background-image: url(/assets/img/dct-logos/dct-skyarx-logo.svg);
}
.darkbg.dct-northstar .brand a {
  background-image: url(/assets/img/dct-logos/dct-northstar-logo.svg);
}
.darkbg.dct-veeps .brand a {
  background-image: url(/assets/img/dct-logos/dct-veeps-logo.svg);
}
.darkbg.dct-abacus .brand a {
  background-image: url(/assets/img/dct-logos/dct-abacus-logo.svg);
}
.darkbg.dct-arizent .brand a {
  background-image: url(/assets/img/dct-logos/dct-arizent-logo.svg);
}
.darkbg .navigation.header-fixed {
  background-color: #000 !important;
}
.darkbg nav ul li a,
.darkbg nav ul li a:visited {
  color: #fff;
}
.darkbg nav ul li ul li a,
.darkbg nav ul li ul li a:visited {
  color: #000;
}

.arrow-right,
.arrow-left {
  display: block;
  margin: 30px auto;
  width: 25px;
  height: 25px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

.arrow-right {
  transform: rotate(135deg);
}

.arrow-left {
  transform: rotate(-45deg);
}

.nav-list > li > a.parent:before {
  display: none;
  position: absolute;
  width: calc(100% - 40px);
  height: 2px;
  background-color: red;
  content: "";
  bottom: 10px;
}

@media (min-width: 992px) {
  .desktop-menu .nav-list {
    display: block !important;
  }
}

@media (max-width: 992px) {
  .menuopen {
    overflow: hidden;
  }
  .menuopen nav {
    min-height: calc(100vh - 70px);
  }
}
.cookie-bar {
  background-color: #000;
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 15;
  padding: 10px 20px;
}

.cookie-notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1299px) {
  .cookie-notice {
    flex-direction: column;
  }
  .cookie-notice p {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.cookie-space {
  padding-bottom: 60px;
}

.cookie-para {
  margin: 0px;
  color: #fff;
}

.cookie-btn {
  background-color: #fd1e18;
  color: #fff;
  line-height: 2;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0px;
  border: 0px;
  cursor: pointer;
}

.social-icons {
  display: flex;
}
.social-icons a {
  margin-right: 15px;
}
.social-icons a img {
  height: 35px;
  width: 35px;
}

footer {
  background-color: #141414;
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  footer {
    padding: 15px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  footer .footer-logo {
    text-align: center;
  }
}

.logo-box {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .logo-box {
    flex-direction: column;
  }
}
.logo-box .inbox {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 767px) {
  .logo-box .inbox {
    align-items: center;
    margin-top: 30px;
  }
}
.logo-box .inbox h5 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 767px) {
  .logo-box .inbox h5 {
    font-size: 25px;
  }
}
.logo-box .inbox .ft-textbox {
  width: 80%;
  position: relative;
}
.logo-box .inbox .ft-textbox input {
  width: 100%;
  color: #625a5a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  font-family: var(--bc-montserrat);
  border: 0px;
  border-bottom: 1px solid #625a5a;
  background: transparent;
  padding: 10px 50px 10px 0px;
}
.logo-box .inbox .ft-textbox input::-moz-placeholder {
  color: #625a5a;
}
.logo-box .inbox .ft-textbox input::placeholder {
  color: #625a5a;
}
.logo-box .inbox .ft-textbox input:focus {
  outline: none;
}
.logo-box .inbox .ft-textbox svg {
  position: absolute;
  right: 0px;
  top: 0px;
}

.footer-nav {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  flex-flow: wrap;
  padding: 0px;
}
@media (max-width: 1299px) {
  .footer-nav {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
}
.footer-nav a {
  color: #fff;
  margin-left: 30px;
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .footer-nav a {
    margin-left: 0px;
    margin-bottom: 15px;
  }
}
.footer-nav a:hover, .footer-nav a:link, .footer-nav a:visited {
  color: #fff;
}
.footer-nav a:first-child {
  margin-left: 0px;
}

.section-copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  color: #fff;
  align-items: center;
}
@media (max-width: 767px) {
  .section-copyright {
    flex-direction: column;
  }
}
.section-copyright .copy-left {
  color: #a9a9a9;
  font-size: 14px;
}
@media (max-width: 767px) {
  .section-copyright .copy-left {
    margin-top: 10px;
  }
}
.section-copyright .social a {
  margin: 0 5px;
}

.wrapper {
  position: relative;
}
.wrapper::before {
  height: 100vh;
  border-left: 1px solid rgba(0, 0, 0, 0.3137254902);
  position: fixed;
  top: 0px;
  left: 12%;
  content: "";
  z-index: 6;
}
@media (max-width: 992px) {
  .wrapper::before {
    display: none;
  }
}

.banner-area-logo {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.banner-area-logo img {
  max-height: 43px;
  margin-right: 38px;
  filter: grayscale(100%);
}
@media (max-width: 767px) {
  .banner-area-logo img {
    margin-right: 20px;
    max-height: 40px;
  }
}

.scroll-down-section {
  position: absolute !important;
  bottom: 50px;
  width: 80px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 3;
}
@media (max-width: 767px) {
  .scroll-down-section {
    bottom: 20px;
  }
}
.scroll-down-section .scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bc-montserrat);
  font-weight: 600;
  font-size: 14px;
  color: #000;
  flex-direction: column;
  text-transform: uppercase;
}
.scroll-down-section .scroll-down span {
  margin-top: 30px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* animation */
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

.active.fade-left {
  animation: fade-left 1s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* animation */
/***** Global Slide *****/
/***** Slide Right *****/
.slide-right {
  animation: 1s slide-right;
}

@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
/***** Slide Left *****/
.slide-left {
  animation: 1s slide-left;
}

@keyframes slide-left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}
.slide-up {
  animation: 1s slide-up;
}

@keyframes slide-up {
  from {
    margin-bottom: 100%;
  }
  to {
    margin-bottom: 0%;
  }
}
/***** FadeIn Underline *****/
.line {
  border-bottom: 3px solid red;
  width: 200px;
  margin: auto;
}

.fade-in {
  animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cards--two {
  position: relative;
  backface-visibility: hidden;
  overflow: hidden;
}
.cards--two p {
  position: absolute;
  top: 83%;
  left: -100%;
  text-transform: capitalize;
  color: #fff;
  font-size: 20px;
  z-index: 8;
  transition: all 0.6s ease;
}
.cards--two:hover p {
  left: 8%;
}
.cards--two:hover img {
  transform: translateY(-15px);
}
.cards--two:hover .cards--two__rect {
  top: 75%;
}
.cards--two:hover .cards--two__rect:before {
  transform: translateY(15px);
}
.cards--two:hover li {
  transform: translateY(0);
}
.cards--two:hover .cards--two__tri {
  right: -40%;
}
.cards--two:hover .cards--two__tri:before {
  right: -312px;
}
.cards--two img {
  transition: all 0.2s ease;
}
.cards--two__tri {
  border-top: 220px solid transparent;
  border-bottom: 190px solid transparent;
  border-right: 288px solid #fff;
  opacity: 0.9;
  position: absolute;
  display: block;
  top: 0;
  right: -200%;
  transition: all 0.3s ease-in-out;
}
.cards--two__tri:before {
  border-top: 220px solid transparent;
  border-bottom: 90px solid transparent;
  border-right: 188px solid #57ccfd;
  position: absolute;
  content: "";
  display: block;
  top: -220px;
  right: -612px;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
}
.cards--two__rect {
  width: 750px;
  height: 200px;
  background: #fff;
  display: block;
  position: absolute;
  top: 175%;
  left: -78%;
  transform: rotate(30deg);
  z-index: 5;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}
.cards--two__rect:before {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  height: 100%;
  background: #f07306;
  transform: translateY(200px);
  z-index: 2;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
}
.cards--two ul {
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 9;
}
.cards--two ul li {
  display: inline-block;
  font-size: 16px;
  margin: 7px;
  color: #fff;
  transition: all 0.2s ease-in-out;
  transform: translateY(100px);
}
.cards--two ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.cards--two ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.cards--two ul li:nth-child(4) {
  transition-delay: 0.4s;
}

.form-container {
  position: relative;
  max-width: 40rem;
  width: 100%;
  border-radius: 1px;
}
@media (max-width: 767px) {
  .form-container {
    max-width: 100%;
    margin-top: 20px;
  }
}
.form-container:hover::before {
  transform: scale(1);
}
.form-container .button-container {
  text-align: left;
}
.form-container .form-radio,
.form-container .form-group {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.form-container .form-inline > .form-group,
.form-container .form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}
.form-container .form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.form-container .checkbox .form-help,
.form-container .form-radio .form-help,
.form-container .form-group .form-help {
  position: absolute;
  width: 100%;
}
.form-container .checkbox {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.form-container .checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-container .checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  transition: border-color 0.28s ease;
}
.form-container .checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}
.form-container .checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  transform: rotate(-45deg);
}
.form-container .checkbox label:hover .helper {
  color: #337ab7;
}
.form-container .checkbox input:checked ~ .helper {
  color: #337ab7;
}
.form-container .checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.form-container .checkbox input:checked ~ .helper::before {
  height: 1.2rem;
  transition-delay: 0.28s;
}
.form-container .form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}
.form-container .form-group input {
  height: 1.9rem;
}
.form-container .form-group textarea {
  resize: none;
}
.form-container .form-group select {
  width: 100%;
  font-size: 14px;
  height: 1.6rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  background: none;
  border: none;
  line-height: 1.6;
  box-shadow: none;
}
.form-container .form-group .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #000;
  font-size: 14px;
  font-weight: normal;
  transition: all 0.28s ease;
}
.form-container .form-group .control-label span {
  color: red;
  margin-left: 4px;
}
.form-container .form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}
.form-container .form-group .bar::before {
  content: "";
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #d9534f;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}
.form-container .form-group input[type=file] {
  line-height: 1;
}
.form-container .form-group input[type=file] ~ .bar {
  display: none;
}
.form-container .form-group input,
.form-container .form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 14px;
  font-weight: 500;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  transition: all 0.28s ease;
  box-shadow: none;
  font-family: var(--bc-montserrat);
}
.form-container .form-group select,
.form-container .form-group input:focus,
.form-container .form-group input:valid,
.form-container .form-group input.form-file,
.form-container .form-group input.has-value,
.form-container .form-group textarea:focus,
.form-container .form-group textarea:valid,
.form-container .form-group textarea.form-file,
.form-container .form-group textarea.has-value {
  color: #333;
}
.form-container .form-group select ~ .control-label,
.form-container .form-group input:focus ~ .control-label,
.form-container .form-group input:valid ~ .control-label,
.form-container .form-group input.form-file ~ .control-label,
.form-container .form-group input.has-value ~ .control-label,
.form-container .form-group textarea:focus ~ .control-label,
.form-container .form-group textarea:valid ~ .control-label,
.form-container .form-group textarea.form-file ~ .control-label,
.form-container .form-group textarea.has-value ~ .control-label {
  font-size: 0.8rem;
  color: #000;
  top: -1rem;
  left: 0;
}
.form-container .form-group select:focus,
.form-container .form-group input:focus,
.form-container .form-group textarea:focus {
  outline: none;
}
.form-container .form-group select:focus ~ .control-label,
.form-container .form-group input:focus ~ .control-label,
.form-container .form-group textarea:focus ~ .control-label {
  color: #000;
}
.form-container .form-group select:focus ~ .bar::before,
.form-container .form-group input:focus ~ .bar::before,
.form-container .form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}
.form-container .checkbox label,
.form-container .form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #333;
  display: block;
}
.form-container .checkbox input,
.form-container .form-radio input {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
}
.form-container .radio {
  margin-bottom: 1rem;
}
.form-container .radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #999;
}
.form-container .radio .helper::after {
  transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7;
}
.form-container .radio label:hover .helper {
  color: #337ab7;
}
.form-container .radio input:checked ~ .helper::after {
  transform: scale(0.5);
}
.form-container .radio input:checked ~ .helper::before {
  color: #337ab7;
}
.form-container .radio .helper::before,
.form-container .radio .helper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}
.form-container .checkbox .helper::before,
.form-container .checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #337ab7;
  display: block;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}
.form-container .checkbox input:checked ~ .helper::after,
.form-container .checkbox input:checked ~ .helper::before {
  opacity: 1;
  transition: height 0.28s ease;
}
.form-container .radio + .radio,
.form-container .checkbox + .checkbox {
  margin-top: 1rem;
}
.form-container .has-error .legend.legend,
.form-container .has-error.form-group .control-label.control-label {
  color: #d9534f;
}
.form-container .has-error.form-group .form-help,
.form-container .has-error.form-group .helper,
.form-container .has-error.checkbox .form-help,
.form-container .has-error.checkbox .helper,
.form-container .has-error.radio .form-help,
.form-container .has-error.radio .helper,
.form-container .has-error.form-radio .form-help,
.form-container .has-error.form-radio .helper {
  color: #d9534f;
}
.form-container .has-error .bar::before {
  background: #d9534f;
  left: 0;
  width: 100%;
}
.form-container .button {
  position: relative;
  background: currentColor;
  border: 1px solid currentColor;
  font-size: 16px;
  color: #d71f26;
  margin: 1rem 0;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.form-container .button span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.form-container .button::before {
  content: "";
  position: absolute;
  background: #b11117;
  border: 50vh solid #1d4567;
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
}
.form-container .button:hover {
  color: #be1117;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.form-container .button:focus {
  outline: none;
}
.form-container .button:active::before,
.form-container .button:focus::before {
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}
.form-container .form-group-row {
  display: flex;
}
@media (max-width: 767px) {
  .form-container .form-group-row {
    flex-direction: column;
  }
}
.form-container .form-group-row .form-group {
  padding-right: 20px;
  width: 50%;
}
.form-container .form-group-row .form-group:last-child {
  padding-right: 0px;
}
@media (max-width: 767px) {
  .form-container .form-group-row .form-group {
    width: 100%;
    padding-right: 0px !important;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-error {
  color: red;
}

select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 0px 1.5em;
  background-repeat: no-repeat;
}

select.minimal:focus {
  background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 0px 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
}

.swiper {
  width: 100%;
  margin: 20px 0;
}

.page-hero {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .page-hero {
    flex-direction: column-reverse;
  }
}
.page-hero .name, .page-hero .job-listing .job-list h4, .job-listing .job-list .page-hero h4, .page-hero .service-delivered .ss-slide h4, .service-delivered .ss-slide .page-hero h4, .page-hero .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .page-hero .wa-big {
  line-height: 1.1;
}
.page-hero > img {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100vh;
  -o-object-position: right center;
     object-position: right center;
}
@media (max-width: 767px) {
  .page-hero > img {
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.page-hero .banner-para {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #000;
  text-transform: none;
  line-height: 1.4;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .page-hero .banner-para {
    padding-right: 0px;
    padding-bottom: 70px;
  }
}
.page-hero .banner-para label {
  font-size: 20px;
}
.page-hero .banner-text {
  width: 50%;
  height: -moz-min-content;
  height: min-content;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
@media (max-width: 767px) {
  .page-hero .banner-text {
    width: 100%;
  }
}
.page-hero .banner-text .banner-link {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  width: 100%;
  position: relative;
}
.page-hero .banner-text .banner-link:before {
  content: "";
  left: 0px;
  height: 100%;
  width: 3px;
  background-color: #fd1e18;
}
.page-hero.form-header {
  align-items: center;
  padding-right: 13%;
}
@media (max-width: 767px) {
  .page-hero.form-header {
    padding-right: 0px;
    flex-direction: column;
    margin-top: 100px;
  }
}
.page-hero.form-header .form-container {
  width: 50%;
}
@media (max-width: 767px) {
  .page-hero.form-header .form-container {
    width: 100%;
  }
}

.page-banner .swiper-slide {
  display: block;
  overflow: hidden;
  width: 100%;
}
.page-banner .swiper-slide.swiper-slide-active .banner-text {
  opacity: 1;
  transform: translateX(0);
}
.page-banner .swiper-slide.swiper-slide-active .banner-imgr {
  opacity: 1;
  transform: translateX(0);
}
.page-banner .swiper-slide .banner-text {
  float: left;
  height: 100vh;
  opacity: 0;
  position: relative;
  transform: translateX(-100%);
  transition: 1s ease;
  width: 50%;
}
.page-banner .swiper-slide .banner-imgr {
  float: right;
  opacity: 0;
  position: relative;
  transition: 1s ease;
  transform: translateX(100%);
}
@media (max-width: 767px) {
  .page-banner {
    padding-bottom: 30px;
  }
}
.page-banner .name, .page-banner .job-listing .job-list h4, .job-listing .job-list .page-banner h4, .page-banner .service-delivered .ss-slide h4, .service-delivered .ss-slide .page-banner h4, .page-banner .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .page-banner .wa-big {
  font-size: 16px;
  text-transform: none;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .page-banner .name, .page-banner .job-listing .job-list h4, .job-listing .job-list .page-banner h4, .page-banner .service-delivered .ss-slide h4, .service-delivered .ss-slide .page-banner h4, .page-banner .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .page-banner .wa-big {
    font-size: 14px;
  }
}
.page-banner .swiper-slide {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .page-banner .swiper-slide {
    flex-direction: column-reverse;
  }
}
.page-banner .swiper-slide img {
  max-width: 50%;
}
@media (max-width: 767px) {
  .page-banner .swiper-slide img {
    max-width: 100%;
  }
}
.page-banner .swiper-slide .banner-text {
  position: absolute;
  width: 50%;
  height: -moz-min-content;
  height: min-content;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
@media (max-width: 767px) {
  .page-banner .swiper-slide .banner-text {
    position: static;
    width: 100%;
    padding-bottom: 30px;
    margin-top: 20px;
  }
}
.page-banner .swiper-slide .banner-text .banner-link {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  width: 100%;
  position: relative;
}
.page-banner .swiper-slide .banner-text .banner-link:before {
  content: "";
  left: 0px;
  height: 100%;
  width: 3px;
  background-color: #fd1e18;
}

.swiper-pagination-bullet {
  background: #fd1e18;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: unset;
}

.wizard-arrow {
  color: #fff;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}
.wizard-arrow .wa-big {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}
.wizard-arrow .wa-small {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.wizard-arrow .wa-next {
  position: relative;
  padding: 10px 25px;
  background-color: #fd1e18;
  padding-right: 60px;
  display: inline-block;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.wizard-arrow .wa-next:after {
  position: absolute;
  background: url(/assets/img/edge-piece.svg) no-repeat right top;
  background-size: 50px;
  content: "";
  bottom: -30px;
  right: 0px;
  width: 50px;
  height: 30px;
}
.wizard-arrow .wa-next .wa-next-arrow {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="14" viewBox="0 0 20 14" fill="none"><path d="M12.29 0.2925C11.9 0.6825 11.9 1.3125 12.29 1.7025L16.17 5.5825H1C0.45 5.5825 0 6.0325 0 6.5825C0 7.1325 0.45 7.5825 1 7.5825H16.18L12.3 11.4625C11.91 11.8525 11.91 12.4825 12.3 12.8725C12.69 13.2625 13.32 13.2625 13.71 12.8725L19.3 7.2825C19.69 6.8925 19.69 6.2625 19.3 5.8725L13.7 0.2925C13.32 -0.0975 12.68 -0.0975 12.29 0.2925Z" fill="white"/></svg>') no-repeat center center;
  position: absolute;
  right: 20px;
  height: 14px;
  width: 20px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
.wizard-arrow .wa-prev {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="14" viewBox="0 0 20 14" fill="none"><path d="M7.30253 12.8725C7.69253 12.4825 7.69253 11.8525 7.30253 11.4625L3.42253 7.58254L18.5925 7.58254C19.1425 7.58254 19.5925 7.13254 19.5925 6.58254C19.5925 6.03254 19.1425 5.58254 18.5925 5.58254L3.41253 5.58254L7.29253 1.70254C7.68253 1.31254 7.68253 0.682538 7.29253 0.292538C6.90253 -0.0974628 6.27253 -0.0974629 5.88253 0.292537L0.292531 5.88254C-0.0974687 6.27254 -0.0974688 6.90254 0.292531 7.29254L5.89253 12.8725C6.27253 13.2625 6.91253 13.2625 7.30253 12.8725Z" fill="%23FD1E18"/></svg>') no-repeat center center;
  height: 14px;
  width: 20px;
  padding: 10px 0;
  bottom: 0px;
  display: block;
  margin-top: 10px;
}

.slider__img-part {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 300px;
  width: 300px;
}
.slider__img-part__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 0;
  min-width: 0;
  opacity: 1;
  overflow: hidden;
  transition: width 0.5s 0.4s;
}
.slider__img-part__img {
  width: 300px;
  height: auto;
  opacity: 1;
  border-radius: 3px;
}
.slider__img-part__desc {
  padding-top: 10px;
  width: 100%;
  color: #9742a0;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s 1.4s;
}
.slider__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.slider__content__title {
  margin: 0;
  padding: 40px 40px;
  width: 100%;
  background-color: #e7cdcf;
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
  color: white;
  opacity: 1;
  transform: translatex(0);
  transition: transform 0.8s 0.6s, opacity 0.8s 0.6s;
}
.slider__content__desc {
  margin: 0;
  padding: 50px 40px;
  font-size: 18px;
  color: #532458;
  opacity: 1;
  transform: translatex(0);
  transition: transform 0.8s 0.8s, opacity 0.8s 0.8s;
}

.tab {
  overflow: hidden;
  transition: all 3s;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.125rem;
}
.tab button:hover {
  background-color: #cccccc;
}
.tab button.active {
  background-color: #333333;
  color: #ffffff;
}

.tabcontent {
  display: none;
  border-top: none;
}

.is-hidden {
  display: none !important;
}

.is-desktop {
  display: block;
}
@media (max-width: 768px) {
  .is-desktop {
    display: none !important;
  }
}

.is-mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .is-mobile {
    display: block !important;
  }
}

.title-wdrop {
  display: flex;
}

.title-wdrop {
  display: flex;
}
.title-wdrop select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* Remove default arrow */
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  background-color: #f0f0f0;
  border: none;
}
.title-wdrop select::-ms-expand {
  display: none;
}
.title-wdrop .select {
  position: relative;
}
.title-wdrop .photos-dropdown {
  width: 150px;
  margin-left: auto;
}
.title-wdrop .photos-dropdown select {
  border-radius: 20px;
  line-height: 0.8;
}

:root {
  --bc-montserrat: "Montserrat", sans-serif;
  --bc-body-color: #677489;
  --bc-btn-bg: #20e2bd;
  --bc-blue-bg: #024064;
  --bc-light-green: #9fd983;
  --bc-white: #ffffff;
  --bc-fs-title: 4.3125rem;
  --bc-fs-body: 1rem;
  --bc-fs-btn: 1.3125rem;
  --bs-fs-mobile-btn: 0.9rem;
}

body {
  color: #000;
  font-family: var(--bc-montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: inherit;
}

* {
  box-sizing: border-box;
  outline: none;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.xl-title, .page-hero .banner-text h1, .page-banner .swiper-slide .banner-text {
  color: #000;
  font-family: var(--bc-montserrat);
  font-size: 4.3vw;
  font-style: normal;
  text-align: left;
  font-weight: 900;
  line-height: 100%; /* 78px */
  text-transform: uppercase;
}
@media (min-width: 2000px) {
  .xl-title, .page-hero .banner-text h1, .page-banner .swiper-slide .banner-text {
    font-size: 80px;
  }
}
@media (max-width: 992px) {
  .xl-title, .page-hero .banner-text h1, .page-banner .swiper-slide .banner-text {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .xl-title, .page-hero .banner-text h1, .page-banner .swiper-slide .banner-text {
    font-size: 30px;
  }
}
.xl-title.fg-white, .page-hero .banner-text h1.fg-white, .page-banner .swiper-slide .fg-white.banner-text {
  color: #fff;
}
.xl-title span, .page-hero .banner-text h1 span, .page-banner .swiper-slide .banner-text span {
  color: #fd1e18;
}

section {
  padding-left: 15%;
}
@media (max-width: 992px) {
  section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.d-row {
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .d-row {
    flex-direction: column;
  }
}
.d-row .d-col {
  width: 50%;
}
@media (max-width: 767px) {
  .d-row .d-col {
    width: 100%;
  }
}
.d-row.h-center {
  justify-content: center;
}
.d-row.v-center {
  align-items: center;
}

.name, .job-listing .job-list h4, .service-delivered .ss-slide h4, .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big {
  font-size: 20px;
}

.line-tag, .job-listing .job-list h4, .blog-list:first-child .blog-title, .blog-details:first-child .blog-title, .service-delivered .ss-slide h4, .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big {
  border-left: 4px solid #fd1e18;
  padding-left: 10px;
  line-height: 0.9;
  font-weight: 600;
}
@media (max-width: 767px) {
  .line-tag, .job-listing .job-list h4, .blog-list:first-child .blog-title, .blog-details:first-child .blog-title, .service-delivered .ss-slide h4, .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big {
    padding-left: 5px;
  }
}

.visions-swiper {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .visions-swiper {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }
}
.visions-swiper .swiper-pagination {
  left: 0px;
}
.visions-swiper .container {
  padding-right: 10%;
}
@media (max-width: 767px) {
  .visions-swiper .container {
    padding-right: 15px;
  }
  .visions-swiper .container .d-row {
    flex-direction: column;
  }
}
.visions-swiper .container img {
  width: 90%;
  padding-left: 15%;
}
@media (max-width: 767px) {
  .visions-swiper .container img {
    padding-left: 0px;
  }
}
.visions-swiper .container .talkto {
  display: flex;
}
.visions-swiper .container .talkto img {
  width: 20px;
  margin-left: 5px;
}

.case-studies {
  background-color: #000;
  padding-top: 50px;
}
.case-studies .xl-title, .case-studies .page-hero .banner-text h1, .page-hero .banner-text .case-studies h1, .case-studies .page-banner .swiper-slide .banner-text, .page-banner .swiper-slide .case-studies .banner-text {
  margin-bottom: -50px;
  margin-top: 30px;
}
.case-studies img {
  filter: gray; /* IE6-9 */ /* Google Chrome, Safari 6+ & Opera 15+ */
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.case-studies h5 {
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}
.case-studies .xl-title, .case-studies .page-hero .banner-text h1, .page-hero .banner-text .case-studies h1, .case-studies .page-banner .swiper-slide .banner-text, .page-banner .swiper-slide .case-studies .banner-text {
  color: #fff;
}
.case-studies .swiper-slide {
  color: #fff;
  font-weight: 400;
}
.case-studies .swiper-slide img {
  width: 100%;
}
.case-studies .swiper-slide .cs-wrapper .d-col:first-child {
  width: 50%;
}
@media (max-width: 767px) {
  .case-studies .swiper-slide .cs-wrapper .d-col:first-child {
    width: 100%;
  }
}
.case-studies .swiper-slide .cs-wrapper .d-col {
  width: 40%;
  padding-right: 30px;
}
.case-studies .swiper-slide .cs-wrapper .d-col p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .case-studies .swiper-slide .cs-wrapper .d-col {
    width: 100%;
  }
}

.work-slider .swiper-slide:hover img {
  filter: unset; /* IE6-9 */ /* Google Chrome, Safari 6+ & Opera 15+ */
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
@media (max-width: 767px) {
  .work-slider .swiper-slide img {
    filter: unset; /* IE6-9 */ /* Google Chrome, Safari 6+ & Opera 15+ */
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}

.more-link {
  font-size: 109px;
  line-height: 0.5;
  color: #fd1e18 !important;
  align-self: flex-start;
  margin-top: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .more-link {
    font-size: 70px;
    position: absolute;
    right: 0px;
    top: 0px;
  }
}

.section-space, .knowledge-services, .service-delivered {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .section-space, .knowledge-services, .service-delivered {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-space.sc-top0, .sc-top0.knowledge-services, .sc-top0.service-delivered {
  padding-top: 0px;
}
@media (max-width: 992px) {
  .section-space.sc-top0, .sc-top0.knowledge-services, .sc-top0.service-delivered {
    padding-top: 0px;
  }
}

.wwd {
  background: url(/assets/img/researcher-spinning-globe-round-screen_1.png) no-repeat center top;
  background-size: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background-position: 0vh -82px;
}
@media (max-width: 767px) {
  .wwd {
    background-size: cover;
    background-position: center center;
  }
}
.wwd .wwd-listing {
  margin-top: 110px;
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
@media (max-width: 1299px) {
  .wwd .wwd-listing {
    margin-top: 40px;
  }
}
.wwd .wwd-listing a {
  border-left: 4px solid #fd1e18;
  font-size: 20px;
  padding-left: 6px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wwd .wwd-listing a {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.clients {
  background-color: #f5f5f5;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .clients {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 50px;
  }
}
.clients .swiper {
  margin: 0px;
}
.clients .clients-slider {
  display: flex;
  margin: auto;
  flex-direction: column;
  height: unset;
}
@media (max-width: 767px) {
  .clients .clients-slider {
    padding: 10px;
  }
}
.clients .clients-slider .swiper {
  width: 100%;
  margin-right: 30px;
  padding: 20px;
}
@media (max-width: 767px) {
  .clients .clients-slider .swiper {
    margin-right: 0px;
    width: calc(100vw - 30px);
  }
}
.clients .swiper-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .clients .swiper-wrapper {
    padding-bottom: 30px;
  }
}
.clients .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px !important;
  border-radius: 190px;
}
@media (max-width: 767px) {
  .clients .swiper-slide {
    height: 100px !important;
  }
}
.clients .swiper-slide img {
  display: block;
  max-width: 126px;
  max-height: 70px;
}
@media (max-width: 767px) {
  .clients .swiper-slide img {
    padding: 10px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><g clip-path="url(%23clip0_5_469)"><path d="M14.29 5.70998C13.9 6.09998 13.9 6.72998 14.29 7.11998L18.17 11H3C2.45 11 2 11.45 2 12C2 12.55 2.45 13 3 13H18.18L14.3 16.88C13.91 17.27 13.91 17.9 14.3 18.29C14.69 18.68 15.32 18.68 15.71 18.29L21.3 12.7C21.69 12.31 21.69 11.68 21.3 11.29L15.7 5.70998C15.32 5.31998 14.68 5.31998 14.29 5.70998Z" fill="%23A3A3A3"/></g><defs><clipPath id="clip0_5_469"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-color: #fff;
  filter: drop-shadow(-4px 0px 4px rgba(0, 0, 0, 0.1));
  border-radius: 100px;
  width: 50px;
  height: 50px;
  background-position: center;
  margin-right: 30px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_5_474)"><path d="M16.5888 6.88961C16.148 7.33048 16.148 8.04266 16.5888 8.48352L20.9749 12.8696H3.82624C3.2045 12.8696 2.6958 13.3783 2.6958 14C2.6958 14.6218 3.2045 15.1305 3.82624 15.1305H20.9862L16.6001 19.5166C16.1593 19.9574 16.1593 20.6696 16.6001 21.1105C17.041 21.5514 17.7532 21.5514 18.1941 21.1105L24.5132 14.7914C24.9541 14.3505 24.9541 13.6383 24.5132 13.1974L18.1828 6.88961C17.7532 6.44874 17.0297 6.44874 16.5888 6.88961Z" fill="%23FD1E18"/></g><defs><clipPath id="clip0_5_474"><rect width="27.1304" height="27.1304" fill="white" transform="translate(0.434814 0.434814)"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-color: #fff;
  filter: drop-shadow(-4px 0px 4px rgba(0, 0, 0, 0.1));
  border-radius: 100px;
  width: 50px;
  height: 50px;
  background-position: center;
}
@media (max-width: 767px) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    margin-right: 0px;
  }
}

.swiper-button-prev {
  transform: rotate(-180deg);
  margin-right: 0px;
}

.swiper-button-next,
.swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
  bottom: 6px;
  top: unset;
}

.swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 100px);
}
@media (max-width: 767px) {
  .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 52px);
  }
}

.service-delivered {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .service-delivered {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.service-delivered .sevices-list {
  width: 50%;
}
@media (max-width: 767px) {
  .service-delivered .sevices-list {
    width: 100%;
  }
}
.service-delivered .sevices-list .sl-list {
  max-width: 420px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: relative;
  cursor: pointer;
}
.service-delivered .sevices-list .sl-list:hover:after {
  filter: brightness(1);
}
@media (max-width: 767px) {
  .service-delivered .sevices-list .sl-list:hover:after {
    filter: brightness(0);
  }
}
.service-delivered .sevices-list .sl-list:hover .sl-number {
  color: #fd1e18;
}
@media (max-width: 767px) {
  .service-delivered .sevices-list .sl-list:hover .sl-number {
    color: #000;
  }
}
.service-delivered .sevices-list .sl-list.active:after {
  filter: brightness(1);
}
.service-delivered .sevices-list .sl-list.active .sl-number {
  color: #fd1e18;
}
.service-delivered .sevices-list .sl-list:after {
  background: url(/assets/img/angle1.svg) no-repeat top right;
  filter: brightness(0);
  background-size: 30px;
  content: "";
  position: absolute;
  right: 10px;
  height: 50px;
  width: 50px;
  top: 25px;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .service-delivered .sevices-list .sl-list:after {
    top: 18px;
  }
}
.service-delivered .sevices-list .sl-list:first-child {
  border: 0px;
}
.service-delivered .sevices-list .sl-list .sl-number {
  font-size: 59px;
  font-style: normal;
  font-weight: 400;
  margin-right: 40px;
  width: 60px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .service-delivered .sevices-list .sl-list .sl-number {
    font-size: 42px;
    width: 40px;
  }
}
.service-delivered .sevices-list .sl-list .sl-data {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  pointer-events: none;
}
.service-delivered .close-service {
  position: absolute;
  right: 30px;
  top: 50px;
  width: 52px;
  height: 52px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.262745098);
  border-radius: 50px;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  justify-content: center;
  font-size: 20px;
  display: none;
}
@media (max-width: 992px) {
  .service-delivered .close-service {
    top: 20px;
  }
}
@media (max-width: 767px) {
  .service-delivered .close-service {
    top: 430px;
  }
}
.service-delivered .tabs-data {
  display: none;
}
.service-delivered .delivered-slider {
  width: 90%;
}
.service-delivered.open-service {
  position: relative;
}
.service-delivered.open-service .sl-list:hover:after, .service-delivered.open-service .sl-list.active:after {
  filter: brightness(1);
}
.service-delivered.open-service .sl-list:hover .sl-number, .service-delivered.open-service .sl-list.active .sl-number {
  color: #fd1e18;
}
.service-delivered.open-service .sevices-list {
  max-width: 420px;
}
.service-delivered.open-service .xl-title, .service-delivered.open-service .page-hero .banner-text h1, .page-hero .banner-text .service-delivered.open-service h1, .service-delivered.open-service .page-banner .swiper-slide .banner-text, .page-banner .swiper-slide .service-delivered.open-service .banner-text {
  display: none;
}
.service-delivered.open-service .close-service {
  display: flex;
}
.service-delivered.open-service .tabs-data {
  display: block;
  margin-left: 100px;
  padding-right: 100px;
  width: calc(100% - 400px);
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .service-delivered.open-service .tabs-data {
    margin-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .service-delivered.open-service .tabs-data {
    width: 100%;
    margin-left: 0px;
    padding-right: 0px;
    margin-top: 40px;
  }
}
.service-delivered .ss-slide {
  padding: 35px 0px;
}
.service-delivered .ss-slide .wizard-arrow {
  margin-bottom: 10px;
}
.service-delivered .ss-slide .wizard-arrow .wa-next {
  min-height: unset;
  padding: 0px;
  background-color: transparent;
}
.service-delivered .ss-slide .wizard-arrow .wa-next .wa-big {
  color: #000;
  text-transform: none;
  line-height: 1;
}
.service-delivered .ss-slide .wizard-arrow .wa-next:after {
  display: none;
}
@media (max-width: 767px) {
  .service-delivered .ss-slide {
    padding: 35px 0px;
  }
}
.service-delivered .ss-slide h4 {
  margin-top: 50px;
  margin-bottom: 15px;
  line-height: 1;
}
.service-delivered .ss-slide h4.title-arrow {
  border: 0px;
  position: relative;
}
.service-delivered .ss-slide p {
  position: relative;
  padding-left: 15px;
}
.service-delivered .ss-slide p a img {
  width: 36px;
}
@media (max-width: 767px) {
  .service-delivered .ss-slide p {
    padding-left: 10px;
  }
}
.service-delivered .ss-slide p:before, .service-delivered .ss-slide p:after {
  position: absolute;
  left: -35px;
  top: -40px;
  color: #fd1e18;
  font-size: 74px;
  font-style: normal;
  font-weight: 500;
}
.service-delivered .ss-slide p:after {
  bottom: -80px;
  right: -30px;
  left: unset;
  top: unset;
}
.service-delivered .ss-slide .service-cs-section {
  padding-left: 15px;
}
@media (max-width: 1299px) {
  .service-delivered .ss-slide .service-cs-section {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .service-delivered .ss-slide .service-cs-section {
    padding-left: 9px;
  }
}
.service-delivered .ss-slide .services-logos {
  display: flex;
  width: 100%;
  padding-top: 0px;
  flex-direction: column;
}
.service-delivered .ss-slide .services-logos:first-child {
  margin-left: 0px;
}
.service-delivered .ss-slide .services-logos .sl-data {
  display: inline-block;
  margin-bottom: 30px;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.service-delivered .ss-slide .services-logos img {
  max-width: 114px;
  margin-right: 15px;
  margin-bottom: 10px;
}

span.right-anim img {
  margin-top: 30px;
  animation: bouncer 2s infinite;
  width: 20px;
}

@keyframes bouncer {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0) rotate(-90deg);
  }
  40% {
    transform: translateX(-15px) rotate(-90deg);
  }
  60% {
    transform: translateX(-7px) rotate(-90deg);
  }
}
.reversed-data {
  padding-top: 0px;
}
.reversed-data .spacetop {
  margin-top: 40px;
}
.reversed-data .page-hero {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .reversed-data .page-hero {
    flex-direction: column-reverse;
  }
}
.reversed-data .page-hero img {
  width: 40%;
}
@media (max-width: 767px) {
  .reversed-data .page-hero img {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
    max-width: 100%;
  }
}
.reversed-data .page-hero .banner-text {
  width: 40%;
}
@media (max-width: 767px) {
  .reversed-data .page-hero .banner-text {
    width: 100%;
  }
}

.knowledge-services {
  background-color: #f5f5f5;
}
.knowledge-services .ks-dataflow {
  display: flex;
}
@media (max-width: 992px) {
  .knowledge-services .ks-dataflow {
    flex-direction: column;
  }
}
.knowledge-services .ks-dataflow .ks-lftdata {
  width: 25%;
  padding-right: 70px;
}
@media (max-width: 992px) {
  .knowledge-services .ks-dataflow .ks-lftdata {
    width: 100%;
    padding-right: 0px;
  }
}
.knowledge-services .ks-dataflow .ks-listing {
  display: flex;
  width: 75%;
}
@media (max-width: 992px) {
  .knowledge-services .ks-dataflow .ks-listing {
    margin-top: 30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .knowledge-services .ks-dataflow .ks-listing {
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
  }
}
.knowledge-services .ks-dataflow .ks-listing .ks-list {
  width: calc(33% - 30px);
  padding: 30px 25px;
  margin-right: 30px;
  box-shadow: 0px 5.24504px 43.7087px 4.37087px rgba(6, 14, 26, 0.05);
  background-color: #fff;
  border-radius: 8.742px;
}
@media (max-width: 767px) {
  .knowledge-services .ks-dataflow .ks-listing .ks-list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.knowledge-services .ks-dataflow .ks-listing .ks-list h4 {
  margin-bottom: 30px;
}
.knowledge-services .ks-dataflow .ks-listing .ks-list ul {
  padding-left: 13px;
}
.knowledge-services .ks-dataflow .ks-listing .ks-list ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 4px 0;
}

.teams-swiper .swiper-slide {
  position: relative;
}
.teams-swiper img {
  width: 100%;
}
.teams-swiper .name, .teams-swiper .job-listing .job-list h4, .job-listing .job-list .teams-swiper h4, .teams-swiper .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .teams-swiper .wa-big, .teams-swiper .service-delivered .ss-slide h4, .service-delivered .ss-slide .teams-swiper h4 {
  margin-top: 15px;
  float: right;
}

.about-hero {
  display: flex;
}
@media (max-width: 767px) {
  .about-hero {
    flex-direction: column;
  }
}
.about-hero h2 {
  margin-right: 40px;
  align-self: flex-end;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about-hero h2 {
    margin: 0px;
    margin-bottom: 8px;
  }
}
.about-hero .ah-image img {
  width: 100%;
}
.about-hero .ah-image .name, .about-hero .ah-image .job-listing .job-list h4, .job-listing .job-list .about-hero .ah-image h4, .about-hero .ah-image .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .about-hero .ah-image .wa-big, .about-hero .ah-image .service-delivered .ss-slide h4, .service-delivered .ss-slide .about-hero .ah-image h4 {
  margin-top: 10px;
  float: right;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .about-hero .ah-image .name, .about-hero .ah-image .job-listing .job-list h4, .job-listing .job-list .about-hero .ah-image h4, .about-hero .ah-image .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .about-hero .ah-image .wa-big, .about-hero .ah-image .service-delivered .ss-slide h4, .service-delivered .ss-slide .about-hero .ah-image h4 {
    padding-right: 0px;
  }
}

.about-section {
  padding-left: 12%;
}
@media (max-width: 767px) {
  .about-section {
    padding-left: 0px;
  }
}
.about-section .about-dct {
  background-color: #000;
  display: flex;
  padding: 40px;
}
@media (max-width: 767px) {
  .about-section .about-dct {
    flex-direction: column;
    padding: 40px 15px;
  }
}
.about-section .about-dct .about-logo {
  width: 220px;
}
@media (max-width: 767px) {
  .about-section .about-dct .about-logo {
    margin-bottom: 30px;
    width: 120px;
  }
}
.about-section .about-dct .about-logo img {
  width: 100%;
}
.about-section .about-dct .about-info {
  width: calc(100% - 250px);
  margin-left: 30px;
  color: #fff;
}
@media (max-width: 767px) {
  .about-section .about-dct .about-info {
    width: 100%;
    margin-left: 0px;
  }
}
.about-section .about-dct .about-info .name, .about-section .about-dct .about-info .job-listing .job-list h4, .job-listing .job-list .about-section .about-dct .about-info h4, .about-section .about-dct .about-info .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .about-section .about-dct .about-info .wa-big, .about-section .about-dct .about-info .service-delivered .ss-slide h4, .service-delivered .ss-slide .about-section .about-dct .about-info h4 {
  font-weight: 600;
  line-height: 1.1;
}

.teams-listing {
  display: flex;
  margin-top: 30px;
  padding-right: 30px;
}
.teams-listing.align-center .swiper-wrapper {
  align-items: flex-start;
}
.teams-listing .swiper-wrapper {
  align-items: center;
}
@media (max-width: 1299px) {
  .teams-listing {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .teams-listing {
    margin-top: 0px;
    padding-right: 0px;
  }
}
.teams-listing .team-list {
  margin-right: 35px;
  display: flex;
  flex-direction: column;
}
.teams-listing .team-list .team-card > img {
  aspect-ratio: 1/2;
}
@media (max-width: 1299px) {
  .teams-listing .team-list {
    width: 200px;
    margin-right: 25px;
  }
}
.teams-listing .team-list .tc-second .team-info {
  margin-top: -32px;
  padding-top: 40px;
}
.teams-listing .team-list .tc-second .team-info a {
  top: 0px;
}
.teams-listing .team-list > img {
  width: 100%;
}
.teams-listing .team-list .team-info {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.teams-listing .team-list .team-info .ti-role {
  font-size: 13px;
}
.teams-listing .team-list .team-info .ti-name {
  font-size: 11px;
}
.teams-listing .team-list .team-info a {
  position: absolute;
  right: 5px;
  top: unset;
  bottom: -39px;
}
.teams-listing .team-list .team-info a img {
  width: 24px;
  height: 24px !important;
  opacity: 0.8;
  -o-object-position: unset;
     object-position: unset;
}
.teams-listing .team-list:nth-child(6) {
  align-items: center;
}
.teams-listing .team-list:nth-child(6) img {
  width: 100%;
}

.contact-section {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .contact-section {
    flex-direction: column;
  }
}
.contact-section .cs-address,
.contact-section .cs-forms {
  width: 100%;
}
@media (max-width: 767px) {
  .contact-section .cs-address,
  .contact-section .cs-forms {
    width: 100%;
  }
}
.contact-section .cs-address .address-listing {
  display: flex;
  justify-content: space-between;
  padding-right: 13%;
  flex-flow: wrap;
}
@media (max-width: 1299px) {
  .contact-section .cs-address .address-listing {
    padding-right: 20px;
    flex-flow: wrap;
  }
}
@media (max-width: 767px) {
  .contact-section .cs-address .address-listing {
    flex-direction: column;
  }
}
.contact-section .cs-address h3,
.contact-section .cs-address h4,
.contact-section .cs-address p {
  font-size: 14px;
  margin: 0px;
  padding: 0px;
}
.contact-section .cs-address h3,
.contact-section .cs-address h4 {
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}
.contact-section .cs-address a {
  display: block;
}
.contact-section .cs-address p {
  color: #898989;
  font-size: 13px;
}
.contact-section .cs-address .address-list {
  margin-bottom: 40px;
  min-width: 250px;
}
.contact-section .cs-address .address-list:nth-child(2) {
  min-width: 180px;
}
@media (max-width: 1299px) {
  .contact-section .cs-address .address-list {
    padding-right: 30px;
  }
  .contact-section .cs-address .address-list:last-child {
    padding-right: 0px;
  }
}
.contact-section .cs-forms {
  width: 35%;
}
@media (max-width: 767px) {
  .contact-section .cs-forms {
    width: 100%;
  }
}

.svp-section .half-data {
  width: 50%;
}
.svp-section .svp-swiper {
  padding: 30px 20px;
  padding-bottom: 80px;
}
.svp-section .svp-swiper .swiper-button-next,
.svp-section .svp-swiper .swiper-button-prev {
  bottom: 10px;
}
.svp-section .svp-swiper .swiper-slide {
  border-radius: 8.742px;
  background: #fff;
  box-shadow: 0px 5.24504px 43.7087px 4.37087px rgba(6, 14, 26, 0.05);
  padding: 20px;
  flex-direction: column;
  align-items: center;
  height: 300px;
}
.svp-section .svp-swiper .swiper-slide .svp-sliderimg {
  background-color: #f5f5f5;
  border-radius: 50%;
  padding: 20px;
}
.svp-section .svp-swiper .swiper-slide .svp-sliderimg img {
  width: 55px;
}
.svp-section .svp-swiper .swiper-slide h4,
.svp-section .svp-swiper .swiper-slide p {
  width: 100%;
  text-align: center;
}
.svp-section .svp-swiper .swiper-slide h5 {
  font-size: 16px;
}
.svp-section .svp-swiper .swiper-slide p {
  font-size: 14px;
}

.timeline {
  padding-top: 10px;
}
.timeline .timeline-swiper {
  margin-top: 10px;
  position: relative;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper {
    margin-top: 15px;
  }
}
.timeline .timeline-swiper .swiper-wrapper {
  align-items: flex-end;
}
.timeline .timeline-swiper:before {
  z-index: 2;
  background: linear-gradient(90deg, #fff 17.96%, rgba(255, 255, 255, 0.75) 48.95%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0px;
  width: 300px;
  height: 100%;
  top: 0px;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper:before {
    display: none;
  }
}
.timeline .timeline-swiper:after {
  z-index: 2;
  background: linear-gradient(90deg, #fff 17.96%, rgba(255, 255, 255, 0.75) 48.95%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  right: 0px;
  width: 600px;
  height: 100%;
  top: 0px;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .timeline .timeline-swiper:after {
    display: none;
  }
}
.timeline .timeline-swiper .swiper-slide {
  padding-top: 19px;
  border-bottom: 1px solid #000;
  position: relative;
  height: 400px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 30px;
}
.timeline .timeline-swiper .swiper-slide:before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 25px);
  left: 5px;
  top: 25px;
  background-color: #000;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper .swiper-slide:before {
    left: 25px;
  }
}
.timeline .timeline-swiper .swiper-slide:after {
  position: absolute;
  content: "";
  width: 10px;
  border-radius: 10px;
  height: 10px;
  left: 1px;
  top: 25px;
  background-color: #fd1e18;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper .swiper-slide:after {
    left: 20px;
  }
}
.timeline .timeline-swiper .swiper-slide.swiper-slide-next:after {
  background: transparent url(/assets/img/red-dot.svg) no-repeat center center;
  background-size: 46px;
  margin-left: -19px;
  width: 46px;
  height: 46px;
  margin-top: -22px;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper .swiper-slide.swiper-slide-next:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .timeline .timeline-swiper .swiper-slide.swiper-slide-active:after {
    background: transparent url(/assets/img/red-dot.svg) no-repeat center center;
    background-size: 46px;
    margin-left: -19px;
    width: 46px;
    height: 46px;
    margin-top: -22px;
  }
}
.timeline .timeline-swiper .swiper-slide.no-data:before, .timeline .timeline-swiper .swiper-slide.no-data:after {
  display: none;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper .swiper-slide.no-data {
    display: none;
  }
}
.timeline .timeline-swiper .swiper-slide:nth-child(even) {
  height: 200px;
}
.timeline .timeline-swiper .swiper-slide.timeline-csheight {
  height: 400px;
}
.timeline .timeline-swiper .swiper-slide.timeline-csheight .timeline-content {
  width: 280px;
}
.timeline .timeline-swiper .swiper-slide.timeline-small {
  height: 200px;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper .swiper-slide .data-timeline {
    padding-left: 25px;
  }
}
.timeline .timeline-swiper .swiper-slide .timeline-content {
  font-size: 14px;
  margin-top: 10px;
  width: 200px;
  padding-left: 14px;
}
@media (max-width: 767px) {
  .timeline .timeline-swiper .swiper-slide .timeline-content {
    padding-left: 10px;
  }
}
.timeline .timeline-swiper .swiper-slide .timeline-content ul {
  padding-left: 13px;
}
.timeline .timeline-swiper .swiper-slide .timeline-content .timeline-logos {
  display: flex;
  align-items: center;
}
.timeline .timeline-swiper .swiper-slide .timeline-content .timeline-logos img {
  max-width: 45px;
  margin-right: 5px;
}
.timeline .timeline-swiper .swiper-slide .timeline-content .timeline-logos img.medium-logo {
  max-width: 100px;
}
.timeline .timeline-swiper .swiper-slide .timeline-content .timeline-logos img.sm-logo {
  max-width: 70px;
}
.timeline .timeline-swiper .swiper-slide .timeline-content img {
  margin-top: 2px;
  margin-bottom: 5px;
}
.timeline .timeline-swiper .swiper-slide .timeline-content span {
  font-weight: 700;
}

.cs-page {
  padding-top: 150px;
}
@media (max-width: 767px) {
  .cs-page {
    padding-top: 90px;
    padding-right: 0px;
  }
}

.content-data {
  padding-right: 40px;
  padding-top: 150px;
}
@media (max-width: 992px) {
  .content-data {
    padding-top: 90px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .content-data {
    padding-right: 15px;
  }
}
.content-data .section-content-title {
  margin-bottom: 50px;
}
.content-data .trust-listing {
  margin-top: 60px;
}
.content-data .trust-listing .tl-list {
  display: flex;
  margin-bottom: 30px;
  padding: 15px;
  padding-left: 40px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 1.74835px 34.96696px 4.37087px rgba(6, 14, 26, 0.05);
}
@media (max-width: 767px) {
  .content-data .trust-listing .tl-list {
    flex-direction: column;
    align-items: center;
  }
}
.content-data .trust-listing .tl-list .tl-logo {
  width: 136px;
  height: 136px;
  background-color: #f9f9f9;
  border-radius: 100%;
  margin-right: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-data .trust-listing .tl-list .tl-logo img {
  width: 100%;
}
.content-data h4 {
  margin-top: 40px;
  line-height: 1.1;
}

.common-listing {
  min-height: 40vh;
}
.common-listing [class*=loader-] {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}
.common-listing .loader-14 {
  border-radius: 50%;
  left: 45%;
  top: 10vh;
  box-shadow: 0 1em 0 -0.2em currentcolor;
  position: relative;
  animation: loader-14 0.8s ease-in-out alternate infinite;
  animation-delay: 0.32s;
}
.common-listing .loader-14:after, .common-listing .loader-14:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  box-shadow: inherit;
  animation: inherit;
}
.common-listing .loader-14:before {
  left: -1em;
  animation-delay: 0.48s;
}
.common-listing .loader-14:after {
  right: -1em;
  animation-delay: 0.16s;
}
@keyframes loader-14 {
  0% {
    box-shadow: 0 2em 0 -0.2em currentcolor;
  }
  100% {
    box-shadow: 0 1em 0 -0.2em currentcolor;
  }
}
.common-listing .blog-list-data {
  display: flex;
  flex-flow: wrap;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.blog-list, .blog-details {
  display: flex;
  flex-direction: column;
  width: 32%;
  padding-right: 33px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .blog-list, .blog-details {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .blog-list, .blog-details {
    width: 100%;
    padding-right: 0px;
  }
}
.blog-list .date, .blog-details .date, .blog-list:first-child .blog-title, .blog-details:first-child .blog-title {
  font-family: var(--bc-montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  order: 2;
  color: rgba(38, 38, 38, 0.6);
  margin-bottom: 20px;
}
.blog-list .blog-title, .blog-details .blog-title, .blog-list:first-child .blog-title, .blog-details:first-child .blog-title {
  font-family: var(--bc-montserrat);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  order: 3;
  margin: 0px;
  margin-bottom: 20px;
}
.blog-list .blog-title a, .blog-details .blog-title a, .blog-list:first-child .blog-title a, .blog-details:first-child .blog-title a {
  color: #262626;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 53px;
}
@media (max-width: 767px) {
  .blog-list .blog-title a, .blog-details .blog-title a, .blog-list:first-child .blog-title a, .blog-details:first-child .blog-title a {
    height: unset;
    -webkit-line-clamp: unset;
  }
}
.blog-list .short-desc-blog, .blog-details .short-desc-blog {
  order: 4;
  margin-bottom: 20px;
}
.blog-list .short-desc-blog p, .blog-details .short-desc-blog p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0px;
  font-family: var(--bc-montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #696868;
}
.blog-list img, .blog-details img {
  order: 1;
  margin-bottom: 20px;
  aspect-ratio: 16/9;
  width: 100%;
  height: inherit;
}
@media (max-width: 767px) {
  .blog-list img, .blog-details img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left top;
       object-position: left top;
  }
}
.blog-list:first-child, .blog-details:first-child {
  width: calc(100% - 280px);
}
@media (max-width: 767px) {
  .blog-list:first-child, .blog-details:first-child {
    width: 100%;
    padding-right: 0px;
  }
}
.blog-list:first-child .date, .blog-details:first-child .date, .blog-list:first-child .blog-title, .blog-details:first-child .blog-title {
  order: 3;
}
.blog-list:first-child .blog-title, .blog-details:first-child .blog-title {
  -webkit-line-clamp: unset;
  height: unset;
  overflow: visible;
  order: 2;
  margin-bottom: 5px;
  line-height: 1.1;
}
.blog-list:first-child .blog-title a, .blog-details:first-child .blog-title a {
  height: unset;
}
.blog-list:first-child .short-desc-blog, .blog-details:first-child .short-desc-blog {
  order: 4;
}
.blog-list:nth-child(2), .blog-details:nth-child(2) {
  width: 280px;
}
.blog-list:nth-child(2) .blog-title a, .blog-details:nth-child(2) .blog-title a {
  height: unset;
}
@media (max-width: 767px) {
  .blog-list:nth-child(2), .blog-details:nth-child(2) {
    width: 100%;
    padding-right: 0px;
  }
}

.blog-details {
  padding-right: 100px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .blog-details {
    width: 50%;
    padding-right: 15px;
  }
}
.blog-details:first-child {
  width: 100%;
}
.blog-details .blog-title, .blog-details .blog-list:first-child .blog-title, .blog-list:first-child .blog-details .blog-title, .blog-details:first-child .blog-title {
  order: 2;
  color: #262626;
}
.blog-details img {
  max-width: 100%;
  order: 1;
}
.blog-details .detailed-data {
  order: 4;
}
.blog-details p {
  margin-bottom: 20px;
}
.blog-details p a {
  color: #000;
}
.blog-details p a:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center !important;
}

.mySwiper3 {
  margin-top: -30px;
}

.studies-swiper {
  padding-top: 70px;
}
.studies-swiper .swiper-button-next,
.studies-swiper .swiper-button-prev {
  top: 30px;
}

/* career */
.job-listing {
  width: 100%;
}
.job-listing .job-list {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 8px 16px 1px rgba(0, 0, 0, 0.08), 0px 0px 1px 0px rgba(0, 0, 0, 0.08);
  padding: 40px 56px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 1299px) {
  .job-listing .job-list {
    padding: 25px;
  }
}
.careers-page {
  padding-top: 50px;
  padding-right: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1299px) {
  .careers-page {
    padding-right: 15px;
    padding-bottom: 0px;
  }
}
@media (max-width: 992px) {
  .careers-page {
    flex-direction: column;
  }
}
.careers-page .cnt-form .form-group {
  padding-bottom: 20px;
  display: inline-block;
  width: 100%;
}
.careers-page .back-btn {
  cursor: pointer;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="14" viewBox="0 0 20 14" fill="none"><path d="M7.30253 12.8725C7.69253 12.4825 7.69253 11.8525 7.30253 11.4625L3.42253 7.58254L18.5925 7.58254C19.1425 7.58254 19.5925 7.13254 19.5925 6.58254C19.5925 6.03254 19.1425 5.58254 18.5925 5.58254L3.41253 5.58254L7.29253 1.70254C7.68253 1.31254 7.68253 0.682538 7.29253 0.292538C6.90253 -0.0974628 6.27253 -0.0974629 5.88253 0.292537L0.292531 5.88254C-0.0974687 6.27254 -0.0974688 6.90254 0.292531 7.29254L5.89253 12.8725C6.27253 13.2625 6.91253 13.2625 7.30253 12.8725Z" fill="%23FD1E18"/></svg>') no-repeat center center;
  height: 14px;
  width: 20px;
  padding: 10px 0;
  bottom: 0px;
  display: block;
  margin-top: 10px;
  border: 0px;
}
.careers-page .jobleft-info div {
  margin-bottom: 3px;
}
.careers-page .btn-group a {
  display: inline-block;
}
.careers-page .banner-text {
  position: sticky;
  margin-top: 0%;
  top: 200px;
  width: 45%;
}
@media (max-width: 1299px) {
  .careers-page .banner-text {
    position: static;
    width: 100%;
    margin-bottom: 40px;
    padding-right: 30px;
  }
}
.careers-page .banner-text h1 label {
  word-break: break-all;
}
.careers-page .career-container {
  padding-left: 50px;
  width: 55%;
  display: flex;
  align-items: center;
}
@media (max-width: 1299px) {
  .careers-page .career-container {
    width: 100%;
    padding-left: 0px;
  }
}
.careers-page .career-container .job-details h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  text-transform: uppercase;
}
.careers-page .career-container .job-details ul li {
  margin-top: 2px;
  margin-bottom: 2px;
}

.b-tab {
  display: none;
}

.b-tab.active {
  display: block;
  height: auto;
}

.b-nav-tab {
  display: inline-block;
  padding: 20px;
}

.b-nav-tab.active {
  color: #ff4200;
}

.subhead {
  font-size: 40px;
  font-family: var(--bc-montserrat);
  margin-top: 40px;
}
@media (max-width: 767px) {
  .subhead {
    font-size: 20px;
  }
}
.subhead span {
  color: #fd1e18;
}

/* ----------- iPad Pro ----------- */
/* total width */
body::-webkit-scrollbar {
  background-color: #fff;
  width: 10px;
}

/* background of the scrollbar except button or resizer */
body::-webkit-scrollbar-track {
  background-color: #fff;
}

/* scrollbar itself */
body::-webkit-scrollbar-thumb {
  background-color: #fd1e18;
  border-radius: 16px;
  border: 2px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {
  display: none;
}

.tagimage, .case-studies .swiper-slide .cs-wrapper > a span, .teams-swiper .swiper-slide .img-tag {
  background: rgba(255, 255, 255, 0.7294117647);
  color: #000;
  border-radius: 5px;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  padding: 6px 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}

.status-msg.error {
  padding: 0px 0px 20px 2px;
}

.team-sap {
  margin-top: 70px;
}

.teamscards {
  width: 100%;
}
.teamscards .team-card {
  width: 100%;
  height: 270px;
  transition: all 0.6s ease;
}
@media (min-width: 1299px) {
  .teamscards .team-card {
    height: 350px;
  }
}
.teamscards .team-card:first-child {
  flex-direction: column-reverse;
  display: flex;
  margin-bottom: 15px;
}
.teamscards .team-card.tc-first {
  padding-top: 40px;
}
.teamscards .team-card.tc-second {
  padding-bottom: 40px;
}
@media (min-width: 1700px) {
  .teamscards .team-card.tc-second {
    margin-top: 40px;
  }
}
.teamscards .team-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center -26px;
     object-position: center -26px;
  height: 100%;
}

.job-search {
  max-width: 400px;
  margin-top: 40px;
  width: 95%;
}
.job-search .form-group input {
  background: url(/assets/img/search-icon.svg) right 7px no-repeat;
}

.board-hero {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .board-hero {
    flex-flow: wrap;
    margin-top: 100px;
  }
}
.board-hero .xl-title, .board-hero .page-hero .banner-text h1, .page-hero .banner-text .board-hero h1, .board-hero .page-banner .swiper-slide .banner-text, .page-banner .swiper-slide .board-hero .banner-text {
  padding-right: 100px;
}
@media (max-width: 767px) {
  .board-hero .xl-title, .board-hero .page-hero .banner-text h1, .page-hero .banner-text .board-hero h1, .board-hero .page-banner .swiper-slide .banner-text, .page-banner .swiper-slide .board-hero .banner-text {
    width: 100%;
  }
}
.board-hero .bhero-right {
  width: 50%;
}
@media (max-width: 767px) {
  .board-hero .bhero-right {
    width: 100%;
  }
}

.about-mgt.teams-listing {
  display: flex;
  margin-top: 80px;
}
@media (max-width: 1299px) {
  .about-mgt.teams-listing {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .about-mgt.teams-listing {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .about-mgt.teams-listing {
    flex-direction: column;
    align-items: center;
  }
}
.about-mgt.teams-listing .team-list {
  margin-right: 35px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .about-mgt.teams-listing .team-list {
    margin-bottom: 30px;
    margin-right: 0px;
  }
}
.about-mgt.teams-listing .team-list > img {
  width: 100%;
}
.about-mgt.teams-listing .team-list .team-info {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.about-mgt.teams-listing .team-list .team-info a {
  position: absolute;
  right: 5px;
  top: -38px;
}
.about-mgt.teams-listing .team-list .team-info a img {
  width: 24px;
  opacity: 0.8;
  filter: drop-shadow(0px 0px 3px #888);
}
.about-mgt.teams-listing .team-list:nth-child(5n+1) {
  align-self: center;
}
@media (max-width: 767px) {
  .about-mgt.teams-listing .team-list:nth-child(5n+1) {
    align-self: center;
  }
}
.about-mgt.teams-listing .team-list:nth-child(5n+3), .about-mgt.teams-listing .team-list:nth-child(5n+5) {
  align-self: flex-end;
  flex-direction: column-reverse;
}
.about-mgt.teams-listing .team-list:nth-child(5n+3) a, .about-mgt.teams-listing .team-list:nth-child(5n+5) a {
  top: 48px;
}
.about-mgt.teams-listing .team-list:nth-child(5n+3) > img, .about-mgt.teams-listing .team-list:nth-child(5n+5) > img {
  margin-bottom: 46px;
}
@media (max-width: 767px) {
  .about-mgt.teams-listing .team-list:nth-child(5n+3), .about-mgt.teams-listing .team-list:nth-child(5n+5) {
    flex-direction: column;
    align-self: center;
  }
  .about-mgt.teams-listing .team-list:nth-child(5n+3) > img, .about-mgt.teams-listing .team-list:nth-child(5n+5) > img {
    margin-bottom: 0px;
  }
}
.about-mgt.teams-listing .team-list:nth-child(4) {
  align-self: center;
}
@media (max-width: 767px) {
  .about-mgt.teams-listing .team-list:nth-child(4) {
    align-self: center;
  }
}

.nowrap {
  white-space: nowrap;
}

.text-caps {
  text-transform: uppercase;
}

.darkbg {
  background-color: #000;
}
.darkbg nav ul li a:not(:only-child):after {
  filter: invert(1);
  padding-left: 4px;
  background: url(/assets/img/angle.svg) no-repeat center center;
  background-size: 6px;
  position: absolute;
  content: "";
  right: 9px;
  width: 6px;
  height: 6px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 3px;
  transform: rotate(180deg);
}
.darkbg nav ul li li a:hover:after {
  transform: rotate(90deg);
  filter: invert(0);
}
.darkbg nav ul li li:hover a:not(:only-child):after {
  transform: rotate(0deg);
  filter: invert(0);
}
.darkbg nav ul li:hover ul li a:after {
  transform: rotate(90deg) !important;
  filter: invert(0) !important;
}
.darkbg nav ul li:hover ul li:hover a:after {
  transform: rotate(0deg) !important;
  filter: invert(0) !important;
}
.darkbg #nav-toggle span,
.darkbg #nav-toggle span:before,
.darkbg #nav-toggle span:after {
  background: #ffffff;
}
.darkbg #nav-toggle.active span {
  background: transparent;
}
.darkbg .navigation {
  background-color: #000;
}
.darkbg .page-hero {
  padding-right: 100px;
  align-items: flex-end;
  min-height: unset;
}
.darkbg .page-hero.mobility-banner {
  padding-right: 0px;
}
.darkbg .page-hero.mobility-banner .banner-text {
  width: 30%;
}
@media (max-width: 767px) {
  .darkbg .page-hero.mobility-banner .banner-text {
    width: 100%;
  }
}
.darkbg .page-hero.mobility-banner .case-banner-right {
  width: 70%;
  text-align: right;
}
.darkbg .page-hero.mobility-banner .case-banner-right img {
  width: 100%;
}
@media (max-width: 767px) {
  .darkbg .page-hero.mobility-banner .case-banner-right {
    width: 100%;
    padding-left: 0px;
  }
  .darkbg .page-hero.mobility-banner .case-banner-right img {
    height: unset;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .darkbg .page-hero {
    padding-right: 0px;
    padding-top: 100px;
    flex-direction: column;
  }
}
.darkbg .page-hero .banner-text {
  color: #fff;
  margin: unset;
}
@media (max-width: 767px) {
  .darkbg .page-hero .banner-text {
    width: 100%;
  }
}
.darkbg .page-hero .banner-text .case-banner-content {
  display: flex;
  align-items: start;
}
.darkbg .page-hero .banner-text .case-banner-content .line-tag.name, .darkbg .page-hero .banner-text .case-banner-content .blog-list:first-child .name.blog-title, .blog-list:first-child .darkbg .page-hero .banner-text .case-banner-content .name.blog-title, .darkbg .page-hero .banner-text .case-banner-content .blog-details:first-child .name.blog-title, .blog-details:first-child .darkbg .page-hero .banner-text .case-banner-content .name.blog-title, .darkbg .page-hero .banner-text .case-banner-content .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .darkbg .page-hero .banner-text .case-banner-content .wa-big, .darkbg .page-hero .banner-text .case-banner-content .service-delivered .ss-slide h4, .service-delivered .ss-slide .darkbg .page-hero .banner-text .case-banner-content h4, .darkbg .page-hero .banner-text .case-banner-content .job-listing .job-list h4, .job-listing .job-list .darkbg .page-hero .banner-text .case-banner-content h4 {
  text-transform: uppercase;
}
.darkbg .page-hero .banner-text .case-banner-content.below-content {
  flex-direction: column;
}
.darkbg .page-hero .banner-text .case-banner-content.below-content .line-tag, .darkbg .page-hero .banner-text .case-banner-content.below-content .service-delivered .ss-slide .wizard-arrow .wa-next .wa-big, .service-delivered .ss-slide .wizard-arrow .wa-next .darkbg .page-hero .banner-text .case-banner-content.below-content .wa-big, .darkbg .page-hero .banner-text .case-banner-content.below-content .service-delivered .ss-slide h4, .service-delivered .ss-slide .darkbg .page-hero .banner-text .case-banner-content.below-content h4, .darkbg .page-hero .banner-text .case-banner-content.below-content .blog-list:first-child .blog-title, .blog-list:first-child .darkbg .page-hero .banner-text .case-banner-content.below-content .blog-title, .darkbg .page-hero .banner-text .case-banner-content.below-content .blog-details:first-child .blog-title, .blog-details:first-child .darkbg .page-hero .banner-text .case-banner-content.below-content .blog-title, .darkbg .page-hero .banner-text .case-banner-content.below-content .job-listing .job-list h4, .job-listing .job-list .darkbg .page-hero .banner-text .case-banner-content.below-content h4 {
  margin-top: 15px;
  margin-left: 3px;
  text-transform: uppercase;
}
.darkbg .page-hero .banner-text .case-banner-content img {
  max-width: 220px;
  max-height: 67px;
  margin-right: 20px;
  width: unset;
}
@media (max-width: 767px) {
  .darkbg .page-hero .banner-text .case-banner-content img {
    height: unset;
    max-width: 150px;
  }
}
.darkbg .page-hero .banner-text h1 {
  color: #fff;
}
.darkbg .page-hero .banner-text .banner-para {
  color: #fff;
}
.darkbg .case-banner-right {
  width: 50%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 90%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .darkbg .case-banner-right {
    width: 100%;
    padding-left: 0px;
  }
  .darkbg .case-banner-right img {
    height: unset;
    margin-top: 30px;
  }
}
.darkbg .case-banner-right .cbr-image img {
  max-width: 100%;
  width: unset;
}
.darkbg .case-card {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  width: 290px;
  margin-right: 40px;
}
@media (max-width: 1299px) {
  .darkbg .case-card {
    width: 100%;
  }
}
.darkbg .case-card span {
  font-weight: 700;
}
.darkbg .case-card ul {
  padding-left: 16px;
}
.darkbg .case-card h4 {
  color: #ea0034;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 767px) {
  .darkbg .case-card {
    margin-right: 0px;
    width: 100%;
  }
}
.darkbg .cbr-first-section {
  padding-right: 100px;
  display: flex;
}
.darkbg .cbr-first-section .colum-blank {
  width: 50%;
}
.darkbg .cs-section-data {
  margin-top: 40px;
  display: flex;
  padding-right: 100px;
  align-items: center;
  position: relative;
}
@media (max-width: 1299px) {
  .darkbg .cs-section-data {
    flex-direction: column;
    padding-right: 15px;
  }
}
.darkbg .cs-section-data:after {
  border-bottom: 1px solid #4b4b4b;
  width: calc(100% - 100px - 15%);
  position: absolute;
  bottom: 0px;
  height: 1px;
  content: "";
}
@media (max-width: 767px) {
  .darkbg .cs-section-data:after {
    width: calc(100% - 30px);
  }
}
.darkbg .cs-section-data .mixed-data {
  width: 53%;
}
@media (max-width: 1299px) {
  .darkbg .cs-section-data .mixed-data {
    width: 100%;
  }
}
.darkbg .cs-section-data .scd-image {
  width: 47%;
  margin-right: 40px;
  text-align: center;
}
@media (max-width: 1299px) {
  .darkbg .cs-section-data .scd-image {
    width: 100%;
    margin-right: 0px;
  }
}
.darkbg .cs-section-data .scd-image img {
  max-width: 100%;
  margin: auto;
}
@media (max-width: 1299px) {
  .darkbg .cs-section-data .scd-image img {
    max-width: 50%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .darkbg .cs-section-data .scd-image img {
    max-width: 100%;
    width: 300px;
  }
}
.darkbg .cs-section-data .css-margin {
  margin-bottom: 100px;
}
@media (max-width: 1299px) {
  .darkbg .cs-section-data .css-margin {
    margin-bottom: 20px;
  }
}
.darkbg .cs-section-data .css-data {
  display: flex;
}
@media (max-width: 767px) {
  .darkbg .cs-section-data .css-data {
    flex-direction: column;
  }
}
.darkbg.dct-curve .case-card h4 {
  color: #6ccff6;
}
.darkbg.dct-masn .case-card h4 {
  color: #ff812c;
}
.darkbg.dct-hungama .case-card h4 {
  color: #007bbe;
}
.darkbg.dct-skyarx .case-card h4 {
  color: #3fa9f5;
}
.darkbg.dct-abacus .case-card h4 {
  color: #f15725;
}
.darkbg.dct-veeps .case-card h4 {
  color: #ea0034;
}
.darkbg.dct-arizent .case-card h4 {
  color: #f8e508;
}
.darkbg.dct-northstar .case-card h4 {
  color: #27a8e1;
}

.hide-desktop {
  display: none;
}
@media (max-width: 1299px) {
  .hide-desktop {
    display: block;
  }
}

.hide-mobile {
  display: none;
}
@media (min-width: 1299px) {
  .hide-mobile {
    display: block;
  }
}

.show-phone {
  display: none;
}
@media (max-width: 767px) {
  .show-phone {
    display: block;
    width: 100%;
  }
}

.hide-phone {
  display: block;
}
@media (max-width: 767px) {
  .hide-phone {
    display: none;
  }
}

@media (max-width: 767px) {
  .open-service .close-service {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */