/*========== Variables ==========*/
/*======BG Colors ======*/
@media only screen and (min-width: 768px) {
  @font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: rgba(65, 65, 65, 0.9);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 80px;
  line-height: 1.5;
  color: #ffb81d;
  font-weight: bold;
  margin-bottom: 15px;
}

h2 {
  font-size: 46px;
  line-height: 58px;
  font-weight: bold;
  color: #110302;
  margin: 0 0 15px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  color: #110302;
  margin: 0 0 15px;
}

h4 {
  font-size: 20px;
  color: #110302;
  font-weight: bold;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  color: #5e6373;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 15px;
}

a {
  color: rgba(65, 65, 65, 0.9);
  text-decoration: none;
}

ul {
  list-style: none;
}
ul li {
  color: rgba(65, 65, 65, 0.9);
  font-size: 16px;
  line-height: 26px;
}

.container {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 20px;
}

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

section {
  position: relative;
}

.light-theme {
  background: #f6f8fb;
}

.dark-theme {
  background: #05247e;
}
.dark-theme .heading h2 {
  color: #ffffff;
}
.dark-theme .heading h2::after {
  background: #ffffff;
}
.dark-theme .heading p {
  color: #ffffff;
}
.dark-theme .heading a {
  color: #ffffff;
}

.width-100 {
  width: 100%;
}

.dis-flex {
  display: flex;
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.item-end {
  align-items: flex-end;
}

.align-right {
  text-align: right;
}

.justify-sb {
  justify-content: space-between;
}

.block {
  display: block;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.flex-1 {
  flex-basis: 100%;
}

.flex-2 {
  flex-basis: 50%;
}

.flex-3 {
  flex-basis: 33.33%;
}

.flex-4 {
  flex-basis: 25%;
}

.flex-5 {
  flex-basis: 20%;
}

.padding-t-120 {
  padding-top: 120px;
}

.padding-b-120 {
  padding-bottom: 120px;
}

.padding-t-70 {
  padding-top: 70px;
}

.padding-b-70 {
  padding-bottom: 70px;
}

.padding-t-60 {
  padding-top: 60px;
}

.padding-b-60 {
  padding-bottom: 60px;
}

.padding-t-50 {
  padding-top: 50px;
}

.padding-b-50 {
  padding-bottom: 50px;
}

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

.margin-t-80 {
  margin-top: 80px;
}

.margin-t-70 {
  margin-top: 70px;
}

.margin-t-60 {
  margin-top: 60px;
}

.margin-t-50 {
  margin-top: 50px;
}

.margin-t-20 {
  margin-top: 20px;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.learn-more {
  color: #016be3;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
.learn-more::after {
  content: "";
  background: url(../images/service/know-more-arrow-icon.png) top center no-repeat;
  position: relative;
  width: 15px;
  height: 11px;
  background-size: 100%;
  top: 0;
  left: 6px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.learn-more:before {
  content: "";
  clear: both;
  display: block;
  background: #016be3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 16px);
  height: 1px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.learn-more:hover:before {
  opacity: 1;
}
.learn-more:hover::after {
  left: 10px;
}

::placeholder {
  color: #737373;
  font-weight: 400;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.cmn-btn {
  color: #016be3;
  border: 1.5px solid #016be3;
  border-radius: 3px;
  background: transparent;
  font-size: 18px;
  line-height: 36px;
  display: block;
  width: 100%;
  padding: 8px 0 12px;
  margin: 30px 0 0;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.cmn-btn:hover {
  background-color: #016be3;
  color: #fff;
}

.white-btn {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 14px 20px;
  display: inline-block;
  font-size: 16px;
  line-height: 21px;
  transition: 0.5s all ease-in-out;
}
.white-btn:hover {
  background-color: #fff;
  color: #016be3;
  border: 1px solid #fff;
}
.white-btn.blue {
  color: #016be3;
  border: 1.5px solid #016be3;
  font-weight: 500;
}
.white-btn.blue:hover {
  background-color: #016be3;
  color: #fff;
}
.white-btn.white {
  background-color: #fff;
  color: #000;
}
.white-btn.white:hover {
  background-color: #016be3;
  color: #000;
  border: 1.5px solid #016be3;
}

.heading h2 {
  position: relative;
  margin-bottom: 40px;
}
.heading h2:after {
  content: "";
  background: #016be3;
  width: 80px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
}
.heading p {
  width: 90%;
  margin: auto;
  font-size: 18px;
  color: #414141;
  line-height: 29px;
}
.heading ul li {
  font-size: 18px;
  color: #414141;
  line-height: 29px;
}

.get-started {
  background: #05247e;
}
.get-started h2 {
  color: #fff;
}
.get-started p {
  margin-top: 15px;
  color: #fff;
}
.get-started p:first-child {
  margin-top: 0;
}
.get-started p a {
  color: #ffffff;
}

.breadcrumbs {
  position: relative;
  top: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  text-align: left;
  z-index: 2;
  font-weight: 500;
}
.breadcrumbs a {
  display: inline-block;
  position: relative;
  color: rgba(197, 197, 215, 0.61);
  padding-right: 14px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.breadcrumbs a:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
  width: 6px;
  height: 10px;
  background: url(../../assets/images/breadcrumbs-arrow.png) 0 1px no-repeat;
  background-size: 100%;
}
.breadcrumbs a:hover {
  color: #fff;
}

.service-breadcrumbs {
  color: #016be3;
  margin-bottom: 30px;
}
.service-breadcrumbs a {
  color: #253053;
  transition: all 0.3s ease-in-out;
}
.service-breadcrumbs a:hover {
  color: #016be3;
}

.for-home-client-logo {
  margin-top: 20px;
}
.for-home-client-logo i {
  width: 98px;
  height: 59px;
  background: url(../images/home/home-awards-icon.svg) 0 0 no-repeat;
  display: inline-block;
  background-size: cover;
}
.for-home-client-logo i:nth-child(1) {
  background-position: 0px 0px;
}
.for-home-client-logo i:nth-child(2) {
  background-position: -101px 0px;
}
.for-home-client-logo i:nth-child(3) {
  background-position: -203px 0;
}
.for-home-client-logo i:nth-child(4) {
  background-position: -304px 0;
}
.for-home-client-logo i:nth-child(5) {
  background-position: -406px 0;
}

.body-pop {
  position: relative;
  overflow: hidden;
}
.body-pop::after {
  content: "";
  clear: both;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background: #656565;
  opacity: 0.8;
}

.free-trail-pop-up {
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
}
.free-trail-pop-up.open-pop {
  display: grid;
}
.free-trail-pop-up .pop-up-inner {
  background-color: #ffffff;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.free-trail-pop-up .pop-close {
  text-align: right;
  display: block;
  margin: 25px 25px 25px auto;
  color: #212121;
  background: url(../images/pop-close.png) 0 0 no-repeat;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.free-trail-pop-up .pop-up-box {
  padding: 30px 100px 100px;
}
.free-trail-pop-up h2 {
  color: #212121;
}
.free-trail-pop-up p {
  margin-top: 10px;
  color: #656565;
}
.free-trail-pop-up p:first-of-type {
  margin-top: 20px;
}
.free-trail-pop-up .popup-green-btn {
  margin-top: 50px;
  padding: 23px 31px;
  color: #ffffff;
  background: #60b741;
  text-decoration: none;
  font-size: 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.free-trail-pop-up .popup-green-btn:hover {
  background-color: #ffb81d;
}

.is-arrow {
  display: block;
  text-decoration: underline;
  color: #05164d;
  text-align: left;
  margin: 40px 0 0;
  font-weight: 400;
  font-size: 18px;
}
.is-arrow:after {
  content: "";
  background: url(../images/home-images/arrow.svg) no-repeat center;
  width: 11px;
  display: inline-block;
  height: 11px;
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
}
.is-arrow:hover {
  text-decoration: none;
}
.is-arrow:hover:after {
  margin-left: 15px;
}

.top-section {
  padding: 0 0 80px;
  text-align: center;
}
.top-section h6 {
  color: #0400F5;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.top-section p {
  font-size: 18px;
}
.top-section.text-left {
  padding: 0;
  text-align: left;
}

.gradient-bg {
  background: linear-gradient(270deg, #0b147c 21.77%, #4b1bac 100%);
}
.gradient-bg .top-section h2 {
  color: #ffffff;
}
.gradient-bg .top-section p {
  color: #bdb7b7;
}

.btn-container {
  margin-top: 30px;
}
.btn-container .cta-button {
  display: inline-flex;
  padding: 10px 20px;
  line-height: 24px;
  cursor: pointer;
  position: relative;
  background: #DFFB0B;
  color: #0400F5;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.0509803922);
}
.btn-container .cta-button:after {
  content: "";
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: 100%;
  display: inline-block;
  margin-left: 10px;
}
.btn-container .cta-button:hover {
  background: #0400F5;
  color: #ffffff;
}
.btn-container .cta-button:hover:after {
  background: url(../images/home-images/white-cta.svg) no-repeat;
  background-size: 100%;
}
.btn-container .cta-button.white {
  background: #DFFB0B;
  color: #0400F5;
}
.btn-container .cta-button.white:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.btn-container .cta-button.white:hover {
  background: #ffffff;
  color: #0400F5;
}
.btn-container .cta-button.white:hover:after {
  background: url(../images/home-images/bluegr-hovercta.svg) no-repeat;
  background-size: 100%;
}

.explore-btn {
  position: relative;
  color: #0400F5;
  font-weight: 500;
  text-decoration: underline;
}
.explore-btn:after {
  content: "";
  background: url(../images/explore-btn.svg) no-repeat center;
  width: 11px;
  position: absolute;
  height: 11px;
  margin-left: 8px;
  top: 6px;
  transition: all 0.3s ease-in-out;
}
.explore-btn:hover:after {
  margin-left: 15px;
}

.ppc-badge {
  margin: 20px 0 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1780px) {
  .container {
    max-width: 1520px;
  }
}
@media only screen and (max-width: 1600px) {
  .container {
    max-width: 1380px;
  }
  .padding-t-120 {
    padding-top: 100px;
  }
  .padding-b-120 {
    padding-bottom: 100px;
  }
  .margin-t-100 {
    margin-top: 80px;
  }
  .margin-t-80 {
    margin-top: 60px;
  }
  .free-trail-pop-up .popup-green-btn {
    margin-top: 40px;
    padding: 14px 20px;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 10px 60px 70px;
  }
  .free-trail-pop-up .pop-close {
    margin: 20px 20px 20px auto;
  }
  .free-trail-pop-up .pop-up-inner {
    max-width: 900px;
  }
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1260px;
  }
  h1 {
    font-size: 65px;
    line-height: 91px;
  }
}
@media only screen and (max-width: 1320px) {
  .container {
    max-width: 1120px;
  }
  .padding-t-100 {
    padding-top: 60px;
  }
  .padding-b-100 {
    padding-bottom: 60px;
  }
  .padding-t-120 {
    padding-top: 80px;
  }
  .padding-b-120 {
    padding-bottom: 80px;
  }
  .padding-t-70 {
    padding-top: 60px;
  }
  .padding-b-70 {
    padding-bottom: 60px;
  }
  .margin-t-80 {
    margin-top: 60px;
  }
  .top-section {
    padding: 0 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  .tools-developer .flex-4 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
  h2 {
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 15px;
  }
  br {
    display: none;
  }
  h3 {
    font-size: 22px;
  }
  .flex-2 {
    flex-basis: 100%;
  }
  .flex-2:first-child {
    padding-right: 0;
  }
  .flex-3 {
    flex-basis: 50%;
  }
  .flex-4 {
    flex-basis: 50%;
  }
  .flex-5 {
    flex-basis: 33.33%;
  }
  .padding-t-150 {
    padding-top: 60px;
  }
  .padding-b-150 {
    padding-bottom: 60px;
  }
  .margin-b-150 {
    margin-bottom: 60px;
  }
  .margin-t-100,
  .margin-t-80,
  .margin-t-70,
  .margin-t-60 {
    margin-top: 40px;
  }
  .flex-4 {
    flex-basis: 50%;
  }
  .is-arrow {
    margin: 25px 0 0;
  }
  .free-trail-pop-up .pop-up-inner {
    max-width: 700px;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 0 50px 50px;
  }
  .free-trail-pop-up .green-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-family: sans-serif;
    line-height: 24px;
  }
  ::placeholder,
  input,
  textarea {
    font-family: sans-serif;
  }
  .padding-t-100 {
    padding-top: 40px;
  }
  .padding-b-100 {
    padding-bottom: 40px;
  }
  .padding-b-150 {
    padding-bottom: 60px;
  }
  .margin-b-150 {
    margin-bottom: 40px;
  }
  .padding-t-120 {
    padding-top: 50px;
  }
  .padding-b-120 {
    padding-bottom: 50px;
  }
  .padding-t-150 {
    padding-top: 60px;
  }
  .padding-t-70 {
    padding-top: 40px;
  }
  .padding-b-70 {
    padding-bottom: 60px;
  }
  h1 {
    font-size: 35px;
    line-height: 45px;
  }
  h2 {
    font-size: 30px;
    line-height: 35px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 15px;
  }
  ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .flex-3 {
    flex-basis: 100%;
  }
  .flex-4 {
    flex-basis: 100%;
  }
  .flex-5 {
    flex-basis: 100%;
  }
  .heading h2 br {
    display: none;
  }
  .heading h2:after {
    bottom: -15px;
  }
  .heading p {
    width: 100%;
    font-size: 16px;
    line-height: 27px;
  }
  .heading ul li {
    font-size: 16px;
    line-height: 27px;
  }
  .cmn-btn {
    font-size: 16px;
    line-height: 28px;
  }
  .white-btn {
    padding: 10px 20px;
  }
  .glider {
    overflow: hidden;
  }
  .service-breadcrumbs {
    margin-bottom: 10px;
  }
  .breadcrumbs {
    top: 0;
  }
  .free-trail-pop-up .pop-close {
    width: 14px;
    height: 14px;
    background-size: 100%;
    margin: 15px 20px 15px auto;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 0 15px 30px;
  }
  .free-trail-pop-up p {
    font-size: 14px;
    line-height: 22px;
  }
  .free-trail-pop-up p:first-of-type {
    margin-top: 10px;
  }
  .free-trail-pop-up .green-btn {
    margin-top: 30px;
    padding: 12px 15px;
    font-size: 14px;
  }
  .is-arrow {
    margin: 20px 0 0;
    font-size: 16px;
  }
  .top-section {
    padding: 0 0 40px;
  }
  .top-section p {
    font-size: 16px;
  }
  .btn-container {
    margin-top: 20px;
  }
  .btn-container .cta-button {
    padding: 12px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
  }
}
.popup-section {
  width: 100%;
}
.popup-section .popup-wrapper {
  z-index: 999;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup-section .popup-wrapper .popWrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-section .popup-wrapper .popWrap .popup-content {
  width: 612px;
  background: #016be3;
  border-radius: 25px;
  padding: 36px 70px;
  text-align: center;
  position: relative;
}
.popup-section .popup-wrapper .popWrap .popup-content h2 {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 8px;
  line-height: 40px;
}
.popup-section .popup-wrapper .popWrap .popup-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 15px;
  color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content p {
  color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec {
  margin: 20px 0 0;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a {
  display: inline-block;
  border: 1px solid #fff;
  margin: 15px auto 0;
  padding: 15px 20px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
  min-width: 376px;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a:hover {
  background: #05164d;
  color: #fff;
  border-color: #05164d;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a.book-btn {
  background: #fff;
  color: #05164d;
  border-color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content .closeicon {
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 10px;
  background: none;
}
.popup-section .exit-intent-popup {
  display: none;
}
.popup-section .exit-intent-popup.visible {
  display: block;
}

@media only screen and (max-width: 991px) {
  .popup-section .popup-wrapper .popWrap .popup-content {
    width: 90%;
    border-radius: 20px;
    padding: 30px 35px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content h2 {
    font-size: 27px;
    line-height: 32px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content .ctasec {
    margin: 20px 0 0;
  }
  .popup-section .popup-wrapper .popWrap .popup-content .ctasec a {
    padding: 12px 20px;
    margin: 10px 0 0;
    min-width: auto;
  }
}
.header-two {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.header-two .container {
  padding: 0 30px;
  width: 100%;
  max-width: 1900px;
}
.header-two .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: static;
}
.header-two .header-item-left {
  display: flex;
  flex-basis: 18%;
  align-items: center;
}
.header-two .header-item-left .large {
  transition: all 0.7s ease-in-out;
}
.header-two .header-item-left .large img {
  max-width: 220px;
}
.header-two .header-item-left .large .light {
  display: block;
}
.header-two .header-item-left .large .dark {
  display: none;
}
.header-two .header-item-left .small {
  opacity: 0;
  display: grid;
  background: #ececec;
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  position: absolute;
  top: 10px;
  transition: all 0.7s ease-in-out;
}
.header-two .header-item-right {
  flex-basis: 80%;
  display: flex;
  justify-content: right;
  align-items: center;
}
.header-two .header-item-right .mob-nav {
  margin-right: 100px;
}
.header-two .header-item-right .menu ul li {
  display: inline-block;
  transition: color 0.3s ease;
}
.header-two .header-item-right .menu ul li.menu-item-has-children a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  padding: 0 10px 35px;
  border: none;
  outline: none;
  color: #fff;
  transition: color 0.3s ease;
  font-weight: 500;
}
.header-two .header-item-right .menu ul li.menu-item-has-children a.active:after {
  content: "";
  background: #ffad00;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 1;
  z-index: 9;
}
.header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item {
  margin: 0 30px 0 100px;
}
.header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .nor {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
.header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .hov {
  display: none;
  vertical-align: middle;
  margin-left: 8px;
}
.header-two .header-item-right .menu ul li .menu-mega {
  position: absolute;
  left: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin-top: 0;
  top: 98%;
  padding: 0;
  z-index: 1;
  border-top: 1px solid #dedede;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: none;
  background: #fff;
}
.header-two .header-item-right .menu ul li .menu-mega a {
  padding: 15px 15px 15px 55px;
  position: relative;
  display: flex;
  color: #05164d;
  margin: 0;
  align-items: center;
  border-radius: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega a:after {
  display: none;
}
.header-two .header-item-right .menu ul li .menu-mega a .menuicon {
  position: absolute;
  left: 10px;
  top: 10px;
  display: block;
  filter: grayscale(1);
}
.header-two .header-item-right .menu ul li .menu-mega a:last-child {
  margin: 0;
}
.header-two .header-item-right .menu ul li .menu-mega a:hover {
  background: #fff9eb;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu {
  left: 64%;
  width: 280px;
  padding: 20px;
  border-radius: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents {
  min-height: initial;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
  top: 8px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
  padding: 0;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
  line-height: 1.2;
  padding: 5px;
  width: auto;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
  padding: 5px 5px 8px 38px;
  width: auto;
  font-size: 12px;
  margin: 5px 0 0;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
  width: 320px;
  left: 57%;
  margin: 0 auto;
  border-radius: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
  top: 11px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
  left: 65%;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
  width: 280px;
  left: 69%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents {
  width: 100%;
  min-height: 210px;
  height: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.flex-full {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content {
  width: 100%;
  display: block;
  height: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .four-column {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .three-column {
  width: 68%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #6b7280;
  display: block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
  text-transform: capitalize;
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a {
  padding-left: 70px;
  position: relative;
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 400 !important;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .title {
  font-size: 14px;
  line-height: 22px;
  color: #0f172b;
  margin-bottom: 2px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .title:hover {
  color: #ffaf00;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .menuicon {
  position: absolute;
  left: 10px;
  top: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content.is-active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
  padding: 15px 0 30px;
  width: 100%;
  justify-content: space-between;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-2 {
  flex-basis: 47%;
  padding: 0 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4 {
  flex-basis: 22%;
  padding: 0 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-5 {
  flex-basis: 19%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-6 {
  flex-basis: 16%;
  position: relative;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-1 {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head {
  color: #9f9f9f;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 10px 0 10px;
  display: block;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head.opacity-0 {
  opacity: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
  margin: 0 0 2px 34px;
  position: relative;
  padding: 5px 40px 5px 5px;
  width: max-content;
  line-height: 20px;
  border-radius: 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
  margin: 15px 0 0;
  padding: 5px 40px 5px 38px;
  width: max-content;
  line-height: 1;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head .title {
  margin: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head.p0 {
  margin-top: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.op-0 {
  opacity: 0;
  cursor: default;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a:hover {
  color: #0400f5;
  background: #F9FAFB;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a:hover .menuicon {
  filter: none;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a:hover .title {
  color: #0400f5;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a {
  font-weight: 400 !important;
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  display: block;
  padding: 10px;
  border-radius: 10px;
  background: transparent;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title {
  color: #0f172b;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title.view-all {
  color: #ffad00;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title.view-all:hover {
  color: #0f172b;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
  position: absolute;
  left: 5px;
  top: 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a:hover {
  color: #0f172b;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more {
  color: #ffad00;
  padding: 30px 0 0;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid #e6e6e6;
  border-radius: 0;
  margin: 20px 0 0;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:after {
  content: "";
  background: url(../header-images/arrow.svg) no-repeat center;
  display: inline-block;
  position: relative;
  opacity: 1;
  width: 14px;
  height: 19px;
  background-size: 100%;
  vertical-align: middle;
  margin-left: 10px;
  bottom: auto;
  transition: all 0.3s ease-in-out;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:hover {
  background-color: transparent;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:hover:after {
  margin-left: 15px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .double-menu {
  display: flex;
  justify-content: space-between;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .double-menu .menu-box {
  flex-basis: 48%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .spacer-md {
  margin: 0 0 30px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .spacer-sm {
  margin: 0 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu {
  width: 30%;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid #e6e6e6;
  background: rgb(248, 249, 250);
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  height: 100%;
  width: 20%;
  background: rgb(248, 249, 250);
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title a {
  padding-left: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a {
  padding-left: 45px;
  position: relative;
  margin: 0 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a .menuicon {
  position: absolute;
  left: 10px;
  top: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs {
  display: flex;
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content .three-column {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu {
  display: block;
  width: 30%;
  height: auto;
  width: 30%;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid #e6e6e6;
  background: #f8f9fa;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  height: 100%;
  width: 20%;
  background: rgb(248, 249, 250);
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title a {
  padding-left: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .menu-column a {
  padding-left: 55px;
  position: relative;
  width: calc(100% - 10px);
  margin: 0 0 10px -10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .menu-column a .menuicon {
  position: absolute;
  left: 10px;
  top: 15px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu {
  width: 100%;
  right: 0;
  margin: 0 auto;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents {
  width: 100%;
  min-height: 525px;
  height: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs {
  flex-basis: 20%;
  border-right: 1px solid #e6e6e6;
  padding: 15px 25px 15px 0;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li a {
  display: block;
  padding: 15px 35px 15px 15px;
  color: #262626;
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  font-size: 14px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li a:after {
  content: "";
  background: url(../header-images/arrow.svg) no-repeat center;
  position: absolute;
  top: 17px;
  right: 15px;
  width: 14px;
  height: 19px;
  background-size: 100%;
  opacity: 0;
  left: auto;
  bottom: auto;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li.no-link a {
  cursor: default;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li.is-active a {
  background: #eff6ff;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li.is-active a:after {
  opacity: 1;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs {
  flex-basis: 80%;
  padding: 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs.flex-full {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content {
  width: 100%;
  display: none;
  height: auto;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content.is-active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-5 {
  padding: 0 0 30px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo {
  border-left: 1px solid #e5e5e5;
  padding-left: 20px;
  background: #f4f4f4;
  position: relative;
  padding-bottom: 40px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo:after {
  content: "";
  background: #f4f4f4;
  width: 100px;
  height: 100%;
  right: -30px;
  top: 0;
  position: absolute;
  border-radius: 0 10px 10px 0;
  z-index: -1;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo a.top-head.no-padd {
  padding: 10px 0 0;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo a.top-head.no-padd .title {
  color: #6b7280;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo a.top-head.no-padd:hover {
  color: #6b7280;
  cursor: default;
  background: transparent;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo .m-0 {
  margin: 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo p {
  font-size: 10px;
  line-height: 20px;
}
.header-two .header-item-right .menu ul li:hover .menu-mega {
  display: block;
}
.header-two .header-item-right .cta-wrap {
  display: inline-block;
}
.header-two .header-item-right .cta-wrap .btn-container {
  margin: 0;
}
.header-two .header-item-right .cta-wrap .btn-container .cta-button {
  line-height: 26px;
  padding: 10px 16px;
}
.header-two .header-item-right .cta-wrap.large-reso {
  display: block;
}
.header-two .header-item-right .cta-wrap.small-reso {
  display: none;
}
.header-two.header-bg .header-item-left .large .light {
  display: none;
}
.header-two.header-bg .header-item-left .large .dark {
  display: block;
}
.header-two.header-bg .header-item-right {
  opacity: 0;
}
.header-two.header-bg .header-item-right .menu ul li.menu-item-has-children a {
  color: #45556c;
}
.header-two.header-bg .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .nor {
  display: none;
}
.header-two.header-bg .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .hov {
  display: inline-block;
}
.header-two.header-bg .header-item-right .cta-wrap .btn-sec .btn {
  border-color: rgba(5, 22, 77, 0.08);
}
.header-two.header-bg.sc-up {
  background: #fff;
}
.header-two.header-bg.sc-up .header-item-left {
  opacity: 1;
}
.header-two.header-bg.sc-up .header-item-right {
  opacity: 1;
}
.header-two.header-bg.sc-down .small {
  opacity: 1;
}
.header-two.header-bg.sc-down .large {
  opacity: 0;
}
.header-two.header-bg .cta-wrap .btn-container .cta-button {
  background: #dffb0b;
  color: #0400f5;
}
.header-two.header-bg .cta-wrap .btn-container .cta-button:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.header-two:hover {
  background: #fff;
}
.header-two:hover .header-item-left {
  opacity: 1;
}
.header-two:hover .header-item-left .large {
  opacity: 1;
}
.header-two:hover .header-item-left .large .light {
  display: none;
}
.header-two:hover .header-item-left .large .dark {
  display: block;
}
.header-two:hover .header-item-left .small {
  display: none;
}
.header-two:hover .header-item-right {
  opacity: 1;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children a {
  color: #45556c;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children a:hover {
  color: #0f172b;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .nor {
  display: none;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .hov {
  display: inline-block;
}
.header-two:hover .header-item-right .cta-wrap .btn-sec .btn {
  border-color: rgba(5, 22, 77, 0.08);
}
.header-two:hover .cta-wrap .btn-container .cta-button {
  background: #dffb0b;
  color: #0400f5;
}
.header-two:hover .cta-wrap .btn-container .cta-button:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.header-two:hover .cta-wrap .btn-container .cta-button:hover {
  background-color: #0400f5;
  color: #ffffff;
}
.header-two:hover .cta-wrap .btn-container .cta-button:hover:after {
  background: url(../images/home-images/white-cta.svg) no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 2490px) {
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 72%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 57%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 68%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 75%;
  }
}
@media screen and (max-width: 1920px) {
  .header-two .header-item-right .menu ul li .menu-mega .industries-menu {
    left: 68%;
  }
}
@media screen and (max-width: 1780px) {
  .header-two .header-item-right .menu ul li .menu-mega .industries-menu {
    left: 64%;
  }
}
@media screen and (max-width: 2490px) {
  .header-two .header-item-right .menu ul li .menu-mega .industries-menu {
    left: 65% !important;
  }
}
@media screen and (max-width: 1700px) {
  .header-two .container {
    max-width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 66%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 50%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 64%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 70%;
  }
}
@media screen and (max-width: 1580px) {
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 66%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 46%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 60%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 70%;
  }
}
@media screen and (max-width: 1440px) {
  .header-two .container {
    padding: 0 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 64%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 57%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 67%;
  }
}
@media screen and (max-width: 1390px) {
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4 {
    flex-basis: 25%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
    padding: 5px 20px 5px 5px;
    margin: 0 0 2px 31px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
    padding: 5px 20px 5px 35px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .header-two .container {
    padding: 0 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
    padding: 5px 20px 5px 5px;
    margin: 0 0 2px 31px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
    padding: 5px 20px 5px 35px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 58%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 57%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 63%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 38%;
  }
}
@media screen and (max-width: 1139px) {
  .header-two {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1d1c39;
    z-index: 99;
    padding: 10px 0;
  }
  .header-two .header-item-left {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .header-two .header-item-left .large {
    transition: all 0.7s ease-in-out;
  }
  .header-two .header-item-left .large img {
    max-width: 220px;
  }
  .header-two .header-item-left .small {
    display: none;
  }
  .header-two .header-item-right {
    flex-basis: 100%;
  }
  .header-two .header-item-right .mob-nav {
    flex-basis: 100%;
  }
  .header-two .header-item-right .menu {
    display: none;
  }
  .header-two .header-item-right .menu ul {
    margin: 0;
  }
  .header-two .header-item-right .menu ul li {
    margin: 20px 0 0;
    display: block;
  }
  .header-two .header-item-right .menu ul li.menu-item-has-children a {
    padding: 0;
    font-size: 15px;
    color: #fff;
  }
  .header-two .header-item-right .menu ul li.menu-item-has-children a.active:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item {
    margin: 20px 0 0;
  }
  .header-two .header-item-right .menu ul li:hover .menu-mega {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega {
    position: relative;
    display: none;
    background: 0 0;
    margin-top: 20px;
    padding-left: 0;
    border-top: 1px solid #dedede;
    box-shadow: 4px 4px 60px rgba(59, 85, 112, 0.25);
    display: none;
    background: #fff;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: auto;
    width: 100%;
    border-radius: 0;
    padding: 20px 10px !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    margin-top: 20px;
    width: 100%;
    left: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: auto;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    width: 100%;
    left: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu {
    left: auto;
    width: 100%;
    border-radius: 0;
    margin-top: 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
    padding-bottom: 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo {
    margin-top: 15px;
    padding-bottom: 0;
    padding-left: 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents {
    width: 100%;
    min-height: initial;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .left-tabs {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs {
    flex-basis: 100%;
    padding: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content {
    min-height: initial;
    display: block !important;
    height: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .four-column {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .three-column {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .title {
    color: #262626;
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title {
    padding: 10px 25px 10px 0;
    border-bottom: 1px solid #e6e6e6;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title.bor-0 {
    border-bottom: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a {
    padding: 10px 10px 10px 55px;
    margin: 0 0 0 -10px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .title {
    font-size: 15px;
    line-height: 20px;
    color: #262626;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .menuicon {
    left: 8px;
    width: 35px;
    height: 35px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content.is-active {
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .spacer-md {
    margin: 0 0 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
    padding: 0 0 20px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .sub-service {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .hr-submenu {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .sub-tech {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .m-active {
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-2 {
    flex-basis: 100%;
    padding: 0;
    margin: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4 {
    flex-basis: 100%;
    padding: 0;
    margin: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4.margin-0 {
    margin: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-6 {
    flex-basis: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-5 {
    flex-basis: 100%;
    position: relative;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head {
    font-size: 13px;
    margin: 8px 0 8px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head.opacity-0 {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
    width: max-content;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.op-0 {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a {
    color: #5d6579;
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a:hover:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more {
    padding: 20px 0 0;
    margin: 10px 0 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:after {
    display: inline-block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu {
    width: 100%;
    position: relative;
    padding-left: 0;
    border-left: none;
    background: #fff;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu.mob-hide {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title {
    padding: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title a {
    padding: 8px;
    width: calc(100% - 10px);
    margin: 0 0 5px -10px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title .ser-arrow-btn {
    right: -15px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 {
    flex-basis: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a {
    padding-left: 35px;
    margin: 0 0 15px;
    position: relative;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a .menuicon {
    position: absolute;
    left: 0;
    top: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs {
    display: flex;
    flex-wrap: wrap;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content .three-column {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu {
    width: 100%;
    position: relative;
    padding-left: 0;
    border-left: none;
    background: #fff;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu.tab-content {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu.mob-hide {
    display: none !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title {
    padding: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title a {
    padding: 8px;
    width: calc(100% - 10px);
    margin: 0 0 5px -10px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title .ser-arrow-btn {
    right: -15px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.m-active {
    display: block;
  }
  .header-two .header-item-right .mob-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 88px;
    left: 0;
    background: #1d1c39;
    padding: 0 20px;
    display: none;
    overflow-y: auto;
    padding-bottom: 120px;
  }
  .header-two .header-item-right .mob-nav.active {
    display: block;
  }
  .header-two .header-item-right .cta-wrap {
    display: inline-block;
  }
  .header-two .header-item-right .cta-wrap .btn-sec .btn {
    font-size: 15px;
    margin: 30px auto 0;
    cursor: pointer;
  }
  .header-two .header-item-right .cta-wrap .btn-sec .btn.rounded:before {
    top: 3px;
  }
  .header-two .header-item-right .cta-wrap.large-reso {
    display: none;
  }
  .header-two .header-item-right .cta-wrap.small-reso {
    display: block;
  }
  .header-two.header-bg .header-item-left .large .light {
    display: block;
  }
  .header-two.header-bg .header-item-left .large .dark {
    display: none;
  }
  .header-two.header-bg .header-item-right {
    opacity: 0;
  }
  .header-two.header-bg .header-item-right .menu ul li.menu-item-has-children a {
    color: #fff;
  }
  .header-two.header-bg .header-item-right .cta-wrap .btn-sec .btn {
    border-color: #fff;
  }
  .header-two.header-bg.sc-up {
    background: #1d1c39;
  }
  .header-two.header-bg.sc-up .header-item-left {
    opacity: 1;
  }
  .header-two.header-bg.sc-up .header-item-right {
    opacity: 1;
  }
  .header-two.header-bg.sc-down .small {
    opacity: 0;
  }
  .header-two.header-bg.sc-down .large {
    opacity: 1;
  }
  .header-two:hover {
    background: #1d1c39;
  }
  .header-two:hover .header-item-left {
    opacity: 1;
  }
  .header-two:hover .header-item-left .large {
    opacity: 1;
  }
  .header-two:hover .header-item-left .large .light {
    display: block;
  }
  .header-two:hover .header-item-left .large .dark {
    display: none;
  }
  .header-two:hover .header-item-left .small {
    display: none;
  }
  .header-two:hover .header-item-right {
    opacity: 1;
  }
  .header-two:hover .header-item-right .menu ul li.menu-item-has-children a {
    color: #fff;
  }
  .header-two:hover .header-item-right .menu ul li.menu-item-has-children a:hover {
    color: #fff;
    opacity: 0.8;
  }
  .header-two:hover .header-item-right .cta-wrap .btn-sec .btn {
    border-color: rgba(5, 22, 77, 0.08);
  }
  .header-two .bar1,
  .header-two .bar2,
  .header-two .bar3 {
    width: 25px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
  }
  .header-two .mback {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff !important;
    padding-left: 12px;
    position: relative;
    display: block;
    margin: 10px 0;
  }
  .header-two .mback::before {
    content: "";
    clear: both;
    display: block;
    background: url(../header-images/button-icons-sprite.png) -21px -47px no-repeat;
    width: 18px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
    margin: 0 auto;
    transform: rotate(-180deg);
  }
  .header-two .hamberger-menu {
    transition: all 0.3s ease-in-out;
    z-index: 999;
    height: 100%;
    padding: 0 5px;
    position: relative;
  }
  .header-two .open-close .bar1 {
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .header-two .open-close .bar2 {
    opacity: 0;
  }
  .header-two .open-close .bar3 {
    transform: rotate(45deg) translate(-5px, -3px);
  }
  .header-two .arrow-btn {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 24px;
    background: url(../header-images/mobile-btn.png) 40px -2px no-repeat;
    vertical-align: top;
    text-align: right;
    float: right;
  }
  .header-two .arrow-btn.rot {
    background-position: 36px -33px;
  }
  .header-two .ser-arrow-btn,
  .header-two .hr-arrow-btn,
  .header-two .tech-arrow-btn {
    display: inline-block;
    position: absolute;
    right: 5px;
    width: 30px;
    height: 30px;
    background: url(../header-images/arrow-mob.svg) no-repeat;
    background-size: 16px;
    z-index: 999;
    background-position: center center;
  }
  .header-two .ser-arrow-btn.rot,
  .header-two .hr-arrow-btn.rot,
  .header-two .tech-arrow-btn.rot {
    transform: rotate(90deg);
  }
  .header-two .ser-arrow-btn,
  .header-two .tech-arrow-btn {
    top: 4px;
  }
}
@media screen and (max-width: 1139px) {
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column.sub-service {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column.m-active {
    display: block;
  }
  .header-two .ser-arrow-btn.rot, .header-two .hr-arrow-btn.rot, .header-two .tech-arrow-btn.rot {
    transform: rotate(90deg);
  }
  .tab-content {
    position: relative;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs {
    flex-basis: 100% !important;
    padding: 0 0 !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents {
    min-height: unset;
  }
  .tab-content .four-column .tab-title a img {
    display: none !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a {
    padding: 10px !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
    display: none !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .top-head {
    padding: 10px !important;
  }
}
.header-two .ser-arrow-btn {
  top: 25px;
}

.slide-logo {
  padding: 39px 0;
  text-align: center;
}
.slide-logo .dis-flex {
  overflow: hidden;
}
.slide-logo .logo-heading {
  position: relative;
  width: 90%;
  margin: 0 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-basis: 100%;
  margin: 0 0 25px;
  justify-content: center;
}
.slide-logo .logo-heading h4 {
  color: rgba(65, 65, 65, 0.9);
  font-size: 18px;
  margin: 0 35px;
  background: #ffffff;
  position: relative;
  font-weight: 400;
}
.slide-logo .logo-heading h4 span {
  margin: 0 35px;
  background: #ffffff;
}
.slide-logo .logo-heading strong {
  color: #0400F5;
  font-weight: 500;
}
.slide-logo .logo-heading:before {
  width: 90%;
  content: "";
  height: 0.197px;
  background: rgba(5, 22, 77, 0.4);
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.slide-logo .logo-section {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(5, 22, 77, 0.4);
  padding: 0 0 25px;
}
.slide-logo .logo-section .glide__slide {
  height: 90px;
}
.slide-logo .logo-section .glide__slide img {
  width: 100%;
  vertical-align: middle;
}

@media (max-width: 1042px) {
  .slide-logo .logo-section .glide__slide {
    height: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .slide-logo {
    display: none;
    padding: 30px 0;
  }
  .slide-logo .logo-heading {
    margin: 0 0 20px;
    margin: 0 0 20px;
    justify-content: center;
  }
  .slide-logo .logo-heading h4 {
    font-size: 18px;
    margin: 0 20px;
  }
  .slide-logo .logo-heading:before {
    display: none;
  }
  .slide-logo .logo-heading:after {
    display: none;
  }
  .slide-logo .logo-section {
    width: 100%;
    margin: 0 auto;
  }
  .slide-logo .logo-section .glide__slide {
    height: auto;
  }
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: initial;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.hiring-model-three-column-section .threebox .flex-3 {
  padding: 0 10px;
  margin-top: 20px;
}
.hiring-model-three-column-section .threebox .box-3 {
  height: 100%;
  border: 1px solid rgba(212, 224, 237, 0.7);
  border-radius: 5px;
  padding: 60px 40px;
  transition: all 0.3s ease-in-out;
}
.hiring-model-three-column-section .threebox .box-3:hover {
  border: 1px solid #016BE3;
  box-shadow: 0 16px 40px rgba(176, 202, 228, 0.2);
  border-radius: 5px;
  background-color: #fff;
}
.hiring-model-three-column-section .threebox .box-3 h3 {
  margin: 20px 0;
}
.hiring-model-three-column-section .threebox .box-3 p {
  margin: 0 0 20px 0;
  opacity: 0.9;
}
.hiring-model-three-column-section .threebox .box-3 ul {
  padding-left: 20px;
}
.hiring-model-three-column-section .threebox .box-3 ul li {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 15px;
  opacity: 0.9;
  position: relative;
}
.hiring-model-three-column-section .threebox .box-3 ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #016be3;
  position: absolute;
  left: -20px;
  border-radius: 50%;
  top: 5px;
}
.hiring-model-three-column-section .threebox .box-3 span {
  display: block;
  margin-bottom: 10px;
  color: #253053;
  margin-top: 30px;
  line-height: 140%;
}

:root {
  --blue: #016be3;
  --yellow: #ffbc38;
  --white: #ffffff;
  --gray: #202020;
  --white: #fff;
  --black: #000;
}

.footer-section {
  background: #f1f6ff;
}

.footer {
  width: 100%;
  background: #f1f6ff;
  padding: 30px 0 40px;
}
.footer .footer-top {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-top .count-sec {
  display: flex;
  flex-basis: 70%;
  justify-content: space-between;
}
.footer .footer-top .count-sec .count-col {
  margin-right: 40px;
}
.footer .footer-top .count-sec h5 {
  color: #000000;
  font-size: 20px;
  margin: 0 0 10px;
}
.footer .footer-top .count-sec p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}
.footer .footer-top .subs-box {
  background: #0400F5;
  position: relative;
  padding: 20px 40px;
  flex-basis: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
}
.footer .footer-top .subs-box h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 15px;
}
.footer .footer-top .btn-container {
  margin: 10px 0 0;
}
.footer .footer-top .btn-container .cta-button {
  padding: 10px 16px;
  background: #ffffff;
  color: #0400F5;
}
.footer .footer-top .btn-container .cta-button:after {
  background: url(../images/home-images/bluegr-hovercta.svg) no-repeat;
  background-size: 100%;
}
.footer .footer-top .btn-container .cta-button:hover {
  background: #DFFB0B;
  color: #0400F5;
}
.footer .footer-top .btn-container .cta-button:hover:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.footer .footer-top .white-btn:hover {
  background: var(--gray);
  color: var(--white);
  border-color: var(--gray);
}
.footer .footer-middle {
  padding: 40px 0 25px;
  justify-content: space-between;
}
.footer .footer-middle .flex-5 {
  flex-basis: auto;
  padding-right: 60px;
  text-align: left;
}
.footer .footer-middle .flex-5:last-child {
  padding-right: 0;
}
.footer .footer-middle h4 {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
}
.footer .footer-middle ul li {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 26px;
}
.footer .footer-middle ul li a {
  color: rgba(0, 0, 0, 0.6);
}
.footer .footer-middle ul li a:hover {
  color: var(--black);
}
.footer .footer-bottom {
  padding: 40px 0 0;
  gap: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  justify-content: space-between;
}
.footer .footer-bottom .flex-3 {
  flex-basis: auto;
  text-align: left;
}
.footer .footer-bottom h3 {
  font-size: 15px;
  line-height: 24px;
  color: var(--black);
  font-weight: 400;
  margin: 0 0 22px;
}
.footer .footer-bottom .logo-box .dis-flex a {
  margin-right: 30px;
}
.footer .footer-bottom .social-box .dis-flex a {
  margin-right: 20px;
}
.footer .footer-bottom .social-box .dis-flex a:hover {
  opacity: 0.8;
}
.footer .footer-bottom .copyright p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.footer-copyright {
  background: #0400F5;
  color: #fff;
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}
.footer-copyright .copyright-left p,
.footer-copyright .copyright-right p {
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
}
.footer-copyright .copyright-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-copyright .copyright-left ul {
  display: flex;
  align-items: center;
  margin: 0 0 0 15px;
}
.footer-copyright .copyright-left ul li {
  margin: 0 5px;
}
.footer-copyright .copyright-left ul li a {
  color: #fff;
  font-size: 13px;
}
.footer-copyright .copyright-left ul li a:hover {
  text-decoration: underline;
}
.footer-copyright .copyright-right p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-copyright .copyright-right p img {
  margin: 3px 0 0;
}

/*Media Query Start From Here*/
@media (max-width: 1440px) {
  .footer .footer-top .count-sec .count-col {
    margin-right: 25px;
  }
  .footer .footer-middle ul li {
    font-size: 15px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 20px;
  }
}
@media (max-width: 1280px) {
  .footer-copyright .copyright-left p {
    font-size: 12px;
  }
  .footer-copyright .copyright-left ul {
    margin-left: 10px;
  }
  .footer-copyright .copyright-left ul li a {
    font-size: 12px;
  }
  .footer-copyright .copyright-right p {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .footer .footer-middle ul li {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1160px) {
  .footer .footer-top .count-sec p {
    font-size: 12px;
    line-height: 24px;
  }
  .footer .footer-top .subs-box {
    padding: 20px 15px;
    border-radius: 20px;
  }
  .footer .footer-top .subs-box::before {
    width: 60px;
    height: 52px;
  }
  .footer .footer-top .subs-box::after {
    width: 34px;
    height: 46px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 20px;
  }
  .footer .footer-bottom {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .footer .footer-top {
    flex-wrap: wrap;
  }
  .footer .footer-top .count-sec {
    flex-basis: 100%;
    justify-content: space-between;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    margin: 20px 0 0;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 20%;
  }
  .footer .footer-top .count-sec .count-col {
    margin-right: 18px;
  }
  .footer .footer-bottom {
    gap: 0;
    justify-content: space-between;
  }
  .footer .footer-bottom .flex-3 {
    flex-basis: 33%;
  }
  .footer .footer-bottom .copyright p {
    font-size: 13px;
    line-height: 22px;
  }
  .footer .footer-bottom h3 {
    font-size: 14px;
    line-height: 22px;
  }
  .footer .footer-bottom .logo-box .dis-flex a {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer .footer-bottom .social-box .dis-flex a {
    margin-right: 10px;
  }
}
@media (max-width: 1024px) {
  .footer-copyright .justify-sb {
    justify-content: center;
  }
}
@media (max-width: 980px) {
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright .copyright-left,
  .footer-copyright .copyright-right {
    flex-basis: 100%;
  }
  .footer-copyright .copyright-right {
    flex-basis: 100%;
    margin-top: 10px;
  }
  .footer-copyright .copyright-right p {
    justify-content: center;
  }
  .footer-copyright .copyright-right p img {
    margin: 3px 0 0;
  }
}
@media (max-width: 767px) {
  .footer .footer-top {
    flex-wrap: wrap;
  }
  .footer .footer-top .count-sec {
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer .footer-top .count-sec .count-col {
    flex-basis: 48%;
    margin-right: 0;
    text-align: center;
    padding: 0 0 20px;
  }
  .footer .footer-top .count-sec h5 {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .footer .footer-top .count-sec p {
    font-size: 12px;
    line-height: 22px;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    padding: 30px;
  }
  .footer .footer-middle {
    padding: 30px 0 10px;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 48%;
    padding: 0 0 20px;
  }
  .footer .footer-middle h4 {
    font-size: 17px;
  }
  .footer .footer-middle ul li {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 24px;
  }
  .footer .footer-bottom {
    padding: 30px 0 0;
    gap: 0;
  }
  .footer .footer-bottom .flex-3 {
    flex-basis: 100%;
    text-align: center;
    margin: 20px 0 0;
  }
  .footer .footer-bottom .flex-3 .dis-flex {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .footer .footer-bottom .logo-box .dis-flex a {
    margin-right: 20px;
  }
  .footer .footer-bottom h3 {
    font-weight: 500;
  }
}
/*Media Query Ends Here*/
.contact-us-section {
  position: relative;
}
.contact-us-section ::placeholder {
  color: rgba(50, 50, 50, 0.5);
}
.contact-us-section:before {
  content: "";
  clear: both;
  display: block;
  background: #092795;
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
}
.contact-us-section .left-box {
  flex-basis: 44%;
  padding: 164px 45px 111px 0;
  background: #092795;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.contact-us-section .left-box p {
  color: #dfdfdf;
}
.contact-us-section .left-box h2 {
  color: #ffffff;
  margin-bottom: 56px;
}
.contact-us-section .left-box h3 {
  color: #ffffff;
  margin-bottom: 10px;
}
.contact-us-section .left-box .profile-outer {
  margin-top: 20px;
}
.contact-us-section .left-box .profile-pic {
  margin-right: 10px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}
.contact-us-section .left-box .profile-pic span {
  display: block;
  margin-top: 7px;
}
.contact-us-section .list-box {
  padding-left: 60px;
  position: relative;
}
.contact-us-section .list-box::before {
  clear: both;
  background: #2448c8;
  box-shadow: 0px 0px 10px rgba(9, 39, 149, 0.25);
  color: #ffffff;
  font-size: 18px;
  line-height: 21.09px;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  z-index: 1;
}
.contact-us-section .side-dash1 p {
  padding-bottom: 40px;
}
.contact-us-section .side-dash1::before {
  content: "1";
}
.contact-us-section .side-dash1::after {
  content: "";
  clear: both;
  display: block;
  height: 100%;
  border-left: 0.8px dashed rgba(223, 223, 223, 0.5);
  width: 4px;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 0;
}
.contact-us-section .side-dash2::before {
  content: "2";
}
.contact-us-section .right-box {
  flex-basis: 56%;
  padding: 160px 0 160px 70px;
  border-radius: 0 10px 10px 0;
}
.contact-us-section .form-text-cont {
  flex-basis: 50%;
  margin-bottom: 35px;
}
.contact-us-section .form-text-cont:nth-child(2n-1) {
  padding-right: 35px;
}
.contact-us-section .input-field {
  padding: 19px 15px;
  background: transparent;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  border: 0.5px solid #323232;
  color: #454444;
  font-weight: normal;
}
.contact-us-section small {
  display: none;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}
.contact-us-section .verror small {
  display: block;
}
.contact-us-section .verror .input-field,
.contact-us-section .verror .user-input {
  border-color: red !important;
}
.contact-us-section .width-full .user-input {
  padding: 19px 15px;
  background: transparent;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  border: 0.5px solid #323232;
  color: #979797;
  margin-bottom: 15px;
}
.contact-us-section .comment-input {
  height: 80px;
  resize: none;
  background: none;
  outline: 0;
  border: none;
  overflow-y: auto;
  padding: 0;
  font-weight: normal;
}
.contact-us-section .drop-input {
  position: relative;
  bottom: 0;
  left: 0;
}
.contact-us-section .drop-box {
  text-decoration: none;
  padding: 5px 10px;
  border: 0.5px solid #ffffff;
  font-size: 12px;
}
.contact-us-section .checkout-submit {
  background: #082eb5;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease-in-out;
}
.contact-us-section .checkout-submit:hover {
  background-color: #60ac0b;
}
.contact-us-section .user-input.checkout {
  text-align: right;
  width: 100%;
}
.contact-us-section .form-text-cont.width-full {
  flex-basis: 100%;
  padding-right: 0;
}
.contact-us-section .drop-area-box {
  display: inline-block;
  background: none;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 30px 5px 10px;
  border: 0.5px solid #fff;
  font-size: 12px;
  line-height: 15px;
  border-radius: 0;
  cursor: pointer;
  color: #323232;
  border: 0.5px solid #082eb5;
  margin-top: 10px;
}
.contact-us-section .drop-area-box input {
  display: none;
}
.contact-us-section .drop-area-box label {
  cursor: pointer;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1023px) {
  .contact-us-section::before {
    display: none;
  }
  .contact-us-section .left-box,
  .contact-us-section .right-box {
    flex-basis: 100%;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-us-section::before {
    display: none;
  }
  .contact-us-section .left-box h2 {
    margin-bottom: 30px;
  }
  .contact-us-section .left-box h2 br {
    display: none;
  }
  .contact-us-section .left-box .profile-pic img {
    max-width: 45px;
  }
  .contact-us-section .side-dash1::after {
    left: 15px;
  }
  .contact-us-section .list-box {
    padding-left: 45px;
  }
  .contact-us-section .list-box::before {
    height: 30px;
    width: 30px;
  }
  .contact-us-section .right-box .form-text-cont {
    flex-basis: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }
  .contact-us-section .left-box,
  .contact-us-section .right-box {
    flex-basis: 100%;
    padding: 40px 20px;
  }
}
.footer-form-section {
  position: relative;
  background: #ffffff;
}
.footer-form-section ::placeholder {
  color: rgba(50, 50, 50, 0.5);
}
.footer-form-section:before {
  content: "";
  width: 40%;
  position: absolute;
  top: 0;
  left: 0;
  background: #0400F5;
  height: 100%;
}
.footer-form-section .left-box {
  flex-basis: 35%;
  position: relative;
  z-index: 1;
}
.footer-form-section .left-box .soc-box {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}
.footer-form-section .left-box .soc-box a {
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  line-height: initial;
}
.footer-form-section .left-box .soc-box a:before {
  content: "";
  width: 1px;
  height: 25px;
  position: absolute;
  left: 9px;
  top: -2px;
  background: rgba(65, 65, 65, 0.3);
}
.footer-form-section .left-box .soc-box a:hover {
  color: #ffffff;
}
.footer-form-section .left-box .soc-box a:first-child {
  padding: 0;
}
.footer-form-section .left-box .soc-box a:first-child:before {
  display: none;
}
.footer-form-section .left-box .soc-box a i {
  margin-right: 10px;
}
.footer-form-section .left-box .soc-box a i img {
  vertical-align: middle;
}
.footer-form-section .left-box .soc-box a:before {
  content: "";
  width: 1px;
  height: 25px;
  position: absolute;
  left: 9px;
  top: -2px;
  background: rgba(65, 65, 65, 0.3);
}
.footer-form-section .left-box .soc-box a span {
  position: relative;
}
.footer-form-section .left-box .soc-box a span:after {
  content: "";
  width: 100%;
  height: 2px;
  background: url(../images/home-images/soc-border.svg) 0 0 no-repeat;
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 1 !important;
}
.footer-form-section .left-box .award-box {
  width: 100%;
  padding: 30px 0 0;
}
.footer-form-section .left-box .award-box p {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}
.footer-form-section .left-box .award-box p strong {
  font-weight: 700;
}
.footer-form-section .left-box .award-box p a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-form-section .left-box .award-box .row-box .col-box {
  margin: 30px 0 0;
  align-items: self-start;
}
.footer-form-section .left-box .award-box .row-box .col-box .icon {
  flex-basis: 50px;
}
.footer-form-section .left-box .award-box .row-box .col-box .desp {
  flex-basis: 85%;
  padding-left: 0;
}
.footer-form-section .left-box .award-box .row-box .col-box .desp h4 {
  color: #e0e0e0;
  font-weight: 500;
}
.footer-form-section .left-box .award-box .row-box .col-box .desp p {
  font-size: 14px;
  margin: 5px 0 0;
  line-height: 24px;
  color: #c0c0c0;
  font-weight: 400;
}
.footer-form-section .left-box .award-box .client-stack {
  margin: 30px 0 0;
}
.footer-form-section .left-box .award-box .client-stack ul {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.footer-form-section #ffile-type-error {
  color: #ff0000;
  font-size: 12px;
}
.footer-form-section .list-box {
  padding-left: 60px;
  position: relative;
  padding-top: 25px;
}
.footer-form-section .list-box::before {
  clear: both;
  background: #016be3;
  box-shadow: 0 0 10px rgba(9, 39, 149, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 21.09px;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
  justify-content: center;
  display: flex;
  align-items: center;
  z-index: 1;
}
.footer-form-section .side-dash1 p {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-form-section .side-dash1::before {
  content: "1";
}
.footer-form-section .side-dash1::after {
  content: "";
  clear: both;
  display: block;
  height: 100%;
  border-left: 0.8px dashed rgba(223, 223, 223, 0.5);
  width: 4px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 0;
}
.footer-form-section .side-dash2::before {
  content: "2";
}
.footer-form-section .contact-form-box {
  background: #ffffff;
  border-radius: 15px;
}
.footer-form-section .right-box {
  flex-basis: 60%;
  padding-left: 50px;
}
.footer-form-section .form-text-cont {
  flex-basis: 50%;
  margin-top: 30px;
  position: relative;
}
.footer-form-section .form-text-cont:nth-child(2n-1) {
  padding-right: 20px;
}
.footer-form-section .form-text-cont .user-input {
  position: relative;
}
.footer-form-section .form-text-cont .user-input label {
  position: absolute;
  top: -13px;
  left: 8px;
  font-size: 13px;
  background: #fff;
  padding: 0 8px;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 500;
}
.footer-form-section .form-text-cont .dis-flex {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.footer-form-section .input-field {
  border: 1.5px solid #d4e0ed;
  padding: 0 15px;
  height: 54px;
  background: transparent;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  border-radius: 5px;
  outline: 0;
  color: rgba(51, 51, 51, 0.5);
  line-height: initial;
}
.footer-form-section .input-field:focus {
  border: 0.5px solid #010101;
}
.footer-form-section .user-input.textarea-box .input-field {
  height: initial;
  padding: 15px;
}
.footer-form-section small {
  display: none;
  color: #ff0000;
  font-size: 12px;
}
.footer-form-section .verror small {
  display: block;
}
.footer-form-section .verror .input-field,
.footer-form-section .verror .user-input {
  border-color: #ff0000 !important;
}
.footer-form-section .verror.user-input small {
  margin-top: 5px;
}
.footer-form-section .comment-input {
  min-height: 100px;
  border: 0;
  outline: 0;
  width: 100%;
  resize: none;
  font-size: 16px;
  line-height: 20px;
  color: #323232;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
}
.footer-form-section .drop-input {
  position: relative;
  bottom: 0;
  left: 0;
}
.footer-form-section .drop-box {
  text-decoration: none;
  padding: 5px 10px;
  border: 0.5px solid #fff;
  font-size: 12px;
}
.footer-form-section .checkout {
  flex-basis: 34%;
  text-align: right;
}
.footer-form-section .checkout .btn-container {
  margin-top: 0;
}
.footer-form-section .checkout .btn-container .cta-button {
  background: #0400F5 url(../images/home-images/white-cta.svg) no-repeat right 15px center;
  border: none;
  padding: 16px 50px 16px 20px;
  color: #ffffff;
}
.footer-form-section .checkout .btn-container .cta-button:hover {
  background: #016be3 url(../images/home-images/white-cta.svg) no-repeat right 15px center;
}
.footer-form-section .form-text-cont.width-full {
  flex-basis: 100%;
  padding-right: 0;
}
.footer-form-section .drop-area-box {
  display: inline-block;
  background: none;
  font-weight: 500;
  text-decoration: none;
  font-size: 12px;
  line-height: 15px;
  border-radius: 0;
  cursor: pointer;
  color: #323232;
}
.footer-form-section .drop-area-box input {
  display: none;
}
.footer-form-section .drop-area-box button {
  background: rgba(217, 217, 217, 0.2);
  color: #414040;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #d1d1e1;
  font-size: 12px;
  border-radius: 5px;
  font-weight: 500;
}
.footer-form-section .drop-area-box button:hover {
  background: rgba(217, 217, 217, 0.8);
  opacity: 1;
}
.footer-form-section .for-two-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
.footer-form-section .autocomplete-items {
  display: none;
}
.footer-form-section .autocomplete-items.has-data {
  background: #fff;
  display: block;
  height: 140px;
  overflow-y: auto;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  max-width: 280px;
  box-shadow: 0px 6px 9px rgba(1, 0, 12, 0.4);
  border-radius: 5px;
  z-index: 2;
}
.footer-form-section .autocomplete-items.has-data div {
  color: #444444;
  background: #fff;
  border-bottom: 1px solid #444444;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  padding: 15px 20px;
}
.footer-form-section .autocomplete-items.has-data div.autocomplete-active, .footer-form-section .autocomplete-items.has-data div:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.footer-form-section .gal-loader {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  display: none;
}
.footer-form-section .gal-loader.active {
  display: block;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}
.footer-form-section .gal-loader.active .loader {
  display: block;
}
.footer-form-section .gal-loader.show-me {
  display: block;
  min-height: 100px;
}
.footer-form-section .gal-loader .loader {
  border: 5px solid #9f9f9f;
  border-radius: 50%;
  border-top: 5px solid #016be3;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin-bottom: 10px;
  margin-right: 10px;
  display: inline-block;
  position: absolute;
  top: 22px;
  left: 50%;
  display: none;
}
.footer-form-section .gallery div {
  display: inline-flex;
  margin-right: 10px;
  vertical-align: baseline;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.footer-form-section .gallery div button,
.footer-form-section .gallery div a {
  text-decoration: none;
  background: #ffb81d;
  padding: 4px;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  position: absolute;
  right: 4px;
  cursor: pointer;
  border: 0;
  outline: 0;
}
.footer-form-section .gallery div button:focus,
.footer-form-section .gallery div a:focus {
  background: #f30909;
}
.footer-form-section .gallery img {
  width: auto;
  height: 45px;
  margin-right: 10px;
  vertical-align: middle;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer-form-section .form-quiz-group {
  display: flex;
  align-items: center;
  flex-basis: 66%;
}
.footer-form-section .form-quiz-group .quizQ {
  border: 1px dashed #c4c4c4;
  border-radius: 4px;
  padding: 13px 30px;
  background: url("../images/quiz-bg.png") 5px center no-repeat;
  height: 50px;
}
.footer-form-section .form-quiz-group .equal {
  margin: 0 15px;
}
.footer-form-section .form-quiz-group span {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #4a4c55;
}
.footer-form-section .form-quiz-group .refreshbtn {
  background: url(../images/home-images/refresh-icon.svg) top center no-repeat;
  background-size: 100%;
  width: 24px;
  height: 21px;
  margin-left: 35px;
  cursor: pointer;
  margin-top: -4px;
  transition: all 0.5s ease 0s;
  display: inline-block;
  vertical-align: middle;
}
.footer-form-section .form-quiz-group .refreshbtn:active {
  transform: rotate(360deg);
}
.footer-form-section .form-quiz-group .quizAns input {
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  height: 50px;
  max-width: 67px;
  text-align: center;
  padding: 10px 20px;
}
.footer-form-section .form-quiz-group .quizAns span {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #ff0000;
}
.footer-form-section .user-input .pcode-prefix {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 0;
  border: 0;
  outline: 0;
  width: 100px;
  background: none;
  padding-left: 44px;
  color: #737373;
}
.footer-form-section .flag-box {
  flex-basis: 26%;
}
.footer-form-section .phone-flag-box .user-input:last-child {
  flex-basis: 74%;
  padding-left: 20px;
}

.info-wrap {
  display: flex;
  justify-content: left;
  align-items: center;
}
.info-wrap .info {
  margin-left: 10px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.info-wrap .info:after {
  content: "";
  width: 14px;
  height: 15px;
  background: url(../images/info-icon2.svg) 0 0 no-repeat;
  position: absolute;
  top: -1px;
  transform: translateY(-50%);
  left: 0;
}
.info-wrap .info .info-content {
  width: 315px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 4px 4px 30px 0px rgba(227, 233, 245, 0.38);
  padding: 15px;
  position: absolute;
  top: 25px;
  left: -75px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  text-align: left;
  line-height: initial;
  z-index: 9;
}
.info-wrap .info .info-content h4 {
  font-size: 14px;
  color: #000;
  margin: 0 0 5px;
}
.info-wrap .info .info-content p {
  font-size: 11px;
  color: #000;
  line-height: 160%;
  margin: 0 0 5px;
  font-weight: normal;
}
.info-wrap .info .info-content .kmore {
  font-size: 11px;
  margin: 10px 0 0;
  text-decoration: underline;
  position: relative;
  color: #000;
}
.info-wrap .info .info-content .kmore:after {
  content: "";
  background: url(../images/know-arrow.png) 0 0 no-repeat;
  width: 8px;
  display: inline-block;
  height: 8px;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}
.info-wrap .info .info-content .kmore:hover {
  text-decoration: none;
  color: #000;
}
.info-wrap .info .info-content .kmore:hover:after {
  margin-left: 10px;
}
.info-wrap .info .info-content:before {
  content: "";
  clear: both;
  display: block;
  background: url(../images/poly.svg) 0 0 no-repeat;
  background-size: 100%;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -15px;
  left: 70px;
}
.info-wrap .info:hover .info-content {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1320px) {
  .footer-form-section .form-quiz-group .equal {
    margin: 0 5px;
  }
  .footer-form-section .form-quiz-group .refreshbtn {
    margin-left: 20px;
  }
  .footer-form-section .form-quiz-group .quizQ {
    padding: 13px 20px;
  }
  .footer-form-section .form-quiz-group {
    flex-basis: 50%;
  }
  .footer-form-section .checkout {
    flex-basis: 35%;
  }
  .footer-form-section .checkout .checkout-submit {
    padding: 12px 15px;
  }
}
@media screen and (max-width: 1200px) {
  .footer-form-section .contact-form-box {
    border-radius: 10px;
  }
}
@media screen and (max-width: 991px) {
  .footer-form-section .left-box {
    flex-basis: 100%;
    padding-right: 0;
  }
  .footer-form-section .left-box h2 {
    margin-bottom: 30px;
  }
  .footer-form-section .left-box .award-box .row-box .col-box .icon {
    flex-basis: 50px;
  }
  .footer-form-section .left-box .award-box .row-box .col-box .desp {
    flex-basis: 80%;
  }
  .footer-form-section .right-box {
    flex-basis: 100%;
    margin-top: 60px;
    padding: 0;
  }
  .footer-form-section .right-box .top-section.text-left {
    padding: 30px 0;
    text-align: center;
  }
  .footer-form-section .contact-form-box {
    padding: 0;
  }
  .footer-form-section .input-field {
    height: 50px;
    font-size: 14px;
  }
  .footer-form-section .comment-input {
    font-size: 14px;
  }
  .footer-form-section .checkout .btn-container {
    text-align: center;
  }
  .footer-form-section:before {
    width: 100%;
    height: 43%;
  }
}
@media screen and (max-width: 767px) {
  .footer-form-section .phone-flag-box .user-input:last-child {
    padding-left: 10px;
  }
  .footer-form-section .user-input .pcode-prefix {
    top: 25px;
  }
  .footer-form-section .form-text-cont {
    flex-basis: 100%;
  }
  .footer-form-section .form-text-cont:nth-child(2n-1) {
    padding-right: 0px;
  }
  .footer-form-section .for-two-col {
    margin-top: 30px;
  }
  .footer-form-section .for-two-col .attachment-box {
    flex-basis: 100%;
  }
  .footer-form-section .for-two-col .checkout {
    flex-basis: 100%;
    text-align: left;
    margin-top: 30px;
  }
  .footer-form-section .left-box h2 br {
    display: none;
  }
  .footer-form-section .left-box .profile-pic img {
    max-width: 45px;
  }
  .footer-form-section .side-dash1::after {
    left: 15px;
  }
  .footer-form-section .list-box {
    padding-left: 45px;
  }
  .footer-form-section .list-box::before {
    height: 30px;
    width: 30px;
  }
  .footer-form-section .right-box .form-text-cont:first-child {
    margin-top: 0;
  }
  .footer-form-section .comment-input {
    min-height: 85px;
  }
  .footer-form-section .drop-area-box label::before {
    background-position: 4px 6px;
    background-size: 70%;
    width: 28px;
    height: 28px;
    top: -5px;
  }
  .footer-form-section .form-quiz-group {
    flex-basis: 100%;
    align-items: baseline;
  }
  .footer-form-section .form-quiz-group .quizQ {
    min-width: 130px;
    padding: 12px 15px;
  }
  .footer-form-section .form-quiz-group span {
    font-size: 16px;
  }
  .footer-form-section .form-quiz-group .refreshbtn {
    margin-left: 10px;
    margin-top: 1px;
    width: 20px;
  }
  .footer-form-section .form-quiz-group .quizAns span {
    margin: 5px 0 0;
    display: block;
  }
  .info-wrap .info .info-content {
    width: 250px;
  }
  .footer-form-section:before {
    height: 41%;
  }
}
.digital-trans .dis-flex {
  justify-content: space-between;
  align-items: center;
}
.digital-trans .dis-flex .flex-2 {
  flex-basis: 46%;
}
.digital-trans .dis-flex h3 {
  margin: 0 0 15px;
}
.digital-trans .dis-flex p {
  margin: 0 0 20px;
}
.digital-trans .dis-flex ul li {
  line-height: 22px;
  margin-bottom: 10px;
  color: #737373;
  opacity: 0.9;
  padding-left: 20px;
  position: relative;
}
.digital-trans .dis-flex ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #016be3;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 5px;
}
.digital-trans .dis-flex:nth-child(2n) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .digital-trans .dis-flex .flex-2 {
    flex-basis: 100%;
  }
  .digital-trans .dis-flex h3 {
    margin: 0 0 15px;
  }
  .digital-trans .dis-flex p {
    margin: 0 0 15px;
  }
  .digital-trans .right-img-section {
    margin: 15px 0 0;
  }
}
.ecomsol .flex-2 {
  padding: 0 10px;
  margin: 20px 0 0;
}
.ecomsol .flex-2 .box-3 {
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.ecomsol .flex-2 .box-3:hover {
  border-color: #016BE3;
}
.ecomsol .flex-2 .box-3 .imgsc {
  flex-basis: 35%;
}
.ecomsol .flex-2 .box-3 .imgsc img {
  display: block;
}
.ecomsol .flex-2 .box-3 .contsc {
  flex-basis: 60%;
}
.ecomsol .flex-2 .box-3 .contsc h3 {
  line-height: 28px;
}
.ecomsol .flex-2 .box-3 .contsc h3,
.ecomsol .flex-2 .box-3 .contsc p {
  margin: 0 0 20px;
}
.ecomsol .flex-2 .box-3 .contsc ul li {
  line-height: 22px;
  margin-bottom: 10px;
  color: #737373;
  opacity: 0.9;
  padding-left: 20px;
  position: relative;
}
.ecomsol .flex-2 .box-3 .contsc ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #016be3;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 5px;
}

@media only screen and (max-width: 1024px) {
  .ecomsol .flex-2 {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .ecomsol .flex-2 .box-3 .imgsc {
    flex-basis: 100%;
  }
  .ecomsol .flex-2 .box-3 .imgsc img {
    border-radius: 5px;
    width: 100%;
  }
  .ecomsol .flex-2 .box-3 .contsc {
    padding: 20px;
    flex-basis: 100%;
  }
  .ecomsol .flex-2 .box-3 .contsc h3,
  .ecomsol .flex-2 .box-3 .contsc p {
    margin: 0 0 15px;
  }
}
.hero-img-section {
  background-size: cover;
  min-height: 100vh;
  z-index: 1;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hero-img-section p {
  color: #fff;
  width: 90%;
  margin: 0 auto 15px;
  font-size: 18px;
  line-height: 29px;
}
.hero-img-section p br {
  display: none;
}
.hero-img-section .dis-flex {
  width: 70%;
  justify-content: space-around;
  margin: auto;
}
.hero-img-section .dis-flex .column {
  flex-basis: 33.33%;
  line-height: 140%;
  padding: 0 30px;
  margin: 35px 0 0;
  border-right: 1px solid #fff;
}
.hero-img-section .dis-flex .column:nth-child(3n) {
  border-right: 0;
}

.cms-develop .heading {
  margin: 0 0 100px;
}
.cms-develop .key-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 75%;
  margin: 0 auto;
}
.cms-develop .key-wrap .flex-wrap {
  width: 100%;
  position: relative;
}
.cms-develop .key-wrap .flex-wrap .cms-image {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cms-develop .key-wrap .flex-wrap .dis-flex {
  justify-content: space-between;
}
.cms-develop .key-wrap .flex-wrap .dis-flex .flex-2 {
  flex-basis: 30%;
  margin: 0 0 10px;
}
.cms-develop .key-wrap .flex-wrap .dis-flex .flex-2 .box-3 {
  padding: 40px;
  display: flex;
  align-items: center;
  border: 0;
  padding: 20px;
  justify-content: space-between;
}
.cms-develop .key-wrap .flex-wrap .dis-flex .flex-2 .box-3 .txtwrap {
  width: calc(100% - 60px);
}
.cms-develop .key-wrap .flex-wrap .dis-flex .flex-2 .box-3 p {
  margin-top: 7;
}
.cms-develop .key-wrap .flex-wrap .dis-flex .flex-2 .box-3:last-child {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1366px) {
  .hero-img-section .dis-flex .column {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-img-section p br {
    display: none;
  }
  .hero-img-section .dis-flex {
    width: 100%;
  }
  .our-infrastructure-section .infra-box {
    padding: 30px !important;
  }
  .cms-develop .key-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 979px) {
  .our-infrastructure-section .flex-5 {
    flex-basis: 33.33%;
  }
  .cms-image img {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .hero-img-section .dis-flex .column {
    flex-basis: 100%;
    margin: 15px 0 0;
    border: 1px solid #fff;
    padding: 20px;
  }
  .hero-img-section {
    background: #04237f;
    height: auto;
    padding: 100px 0 50px;
    background-size: 0;
  }
  .hero-img-section p {
    width: 100%;
    font-size: 16px;
    line-height: 27px;
  }
  .hero-img-section .dis-flex .column:nth-child(3n) {
    border: 1px solid #fff;
  }
  .our-infrastructure-section .flex-5 {
    flex-basis: 100%;
    margin: 0 0 10px;
  }
  .cms-develop .heading {
    margin: 0 0 50px;
  }
  .cms-develop .key-wrap .flex-wrap .dis-flex .flex-2 {
    flex-basis: 100%;
    border: 1px solid #e5e5e5;
  }
  .cms-develop .key-wrap .flex-wrap .cms-image {
    margin: 0 auto 30px;
    position: static;
  }
}
.blockchain-adv {
  padding-top: 13px;
}
.blockchain-adv .flex-wrap .dis-flex {
  justify-content: space-between;
  align-items: center;
}
.blockchain-adv .flex-wrap .dis-flex .content-box {
  flex-basis: 50%;
}
.blockchain-adv .flex-wrap .dis-flex .content-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}
.blockchain-adv .flex-wrap .dis-flex .right-img-section {
  flex-basis: 40%;
}
.blockchain-adv .flex-wrap .dis-flex .right-img-section picture {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 0 30px;
}
.blockchain-adv .flex-wrap .dis-flex .right-img-section h3 {
  text-align: center;
}
.blockchain-adv .flex-wrap .dis-flex .block-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blockchain-adv .flex-wrap .dis-flex .block-row .column {
  flex-basis: 48%;
  margin: 0 0 40px;
}
.blockchain-adv .flex-wrap .dis-flex .block-row .w-60 {
  flex-basis: 60%;
}
.blockchain-adv .flex-wrap .dis-flex h3 {
  margin: 0 0 20px;
}
.blockchain-adv .flex-wrap .dis-flex h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #444444;
}
.blockchain-adv .flex-wrap .dis-flex p {
  margin-top: 20px;
}
.blockchain-adv .flex-wrap .dis-flex ul li {
  margin-bottom: 10px;
  opacity: 0.9;
  padding-left: 20px;
  position: relative;
}
.blockchain-adv .flex-wrap .dis-flex ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #016be3;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 5px;
}
.blockchain-adv .flex-wrap .dis-flex:nth-child(2n) {
  flex-direction: row-reverse;
}
.blockchain-adv .padding-b-60 {
  padding: 0 0 60px;
}
.blockchain-adv .dis-flex:last-child {
  border: 0;
}
.blockchain-adv .dis-flex:last-child {
  padding: 0;
}
.blockchain-adv .product-know-more-request-btn {
  margin-top: 10px;
  display: inline-block;
}
.blockchain-adv .product-know-more-request-btn a {
  margin-right: 20px;
  padding: 15px 25px;
}
.blockchain-adv .product-know-more-request-btn .request-btn {
  background: #016BE3;
  color: white;
}
.blockchain-adv .product-know-more-request-btn .request-btn:hover {
  background: #ffffff;
  border: 1.5px solid #016BE3;
  color: #016BE3;
}

@media screen and (max-width: 1240px) {
  .blockchain-adv .flex-wrap .dis-flex .content-box {
    margin: 20px 0 0;
    flex-basis: 100%;
  }
  .blockchain-adv .flex-wrap .dis-flex h3 {
    margin: 0 0 15px;
  }
  .blockchain-adv .flex-wrap .dis-flex .right-img-section {
    padding-top: 0px;
    text-align: center;
    margin: 50px 0 0;
    flex-basis: 100%;
  }
  .blockchain-adv .flex-wrap .dis-flex .right-img-section img {
    border-radius: 5px;
  }
  .blockchain-adv .flex-wrap .dis-flex .right-img-section picture {
    margin: 0 0 15px;
  }
  .blockchain-adv .flex-wrap .dis-flex .right-img-section h3 {
    text-align: left;
  }
  .blockchain-adv .product-know-more-request-btn {
    margin-top: 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .blockchain-adv .padding-b-60 {
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .blockchain-adv .flex-wrap .dis-flex .block-row {
    margin: 20px 0 0;
  }
  .blockchain-adv .flex-wrap .dis-flex .block-row .column {
    flex-basis: 100%;
    margin: 0 0 20px;
  }
  .blockchain-adv .flex-wrap .dis-flex .right-img-section {
    padding-top: 0px;
  }
  .blockchain-adv .padding-b-60 {
    padding: 0 0 20px;
  }
  .blockchain-adv .product-know-more-request-btn a {
    padding: 15px 16px;
    margin-right: 7px;
    font-size: 19px;
    line-height: 25px;
  }
}
.block-plate .threebox .box-3 {
  border: 0;
}

@media screen and (max-width: 767px) {
  .block-plate .flex-2 {
    flex-basis: 100%;
  }
}
.our-process .process-img {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 20px;
}
.our-process .card {
  padding: 80px 30px 0 30px;
}
.our-process .card p {
  background: #fff;
  position: relative;
  z-index: 1;
  font-weight: 600;
  padding: 6px 0;
  opacity: 0.9;
}
.our-process .process-card {
  margin-top: 110px;
  padding-top: 30px;
}
.our-process .process-card .card-single {
  width: 35%;
  margin: auto;
  padding: 0 30px;
}
.our-process .process-card .card-single h3 {
  margin-bottom: 10px;
}
.our-process .process-card .card-single p {
  opacity: 0.9;
}

.ques-ans-section .flex-2 {
  margin-top: 60px;
}
.ques-ans-section .flex-2:nth-child(2n-1) {
  padding-right: 70px;
}
.ques-ans-section .flex-2:nth-child(2n) {
  padding-left: 70px;
}
.ques-ans-section h3 {
  display: block;
  text-decoration: none;
  font-weight: 500;
  padding: 0 40px 0 30px;
  position: relative;
}
.ques-ans-section h3::before {
  content: "";
  clear: both;
  display: block;
  background: #016BE3;
  height: 4px;
  width: 20px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 12px;
}
.ques-ans-section .content-box {
  padding-left: 30px;
}
.ques-ans-section .content-box p {
  font-size: 18px;
  margin-top: 20px;
  line-height: 29px;
}
.ques-ans-section .content-box ul, .ques-ans-section .content-box ol {
  padding-left: 20px;
}
.ques-ans-section .content-box ul li, .ques-ans-section .content-box ol li {
  margin: 6px 0;
}
.ques-ans-section .no-list-type ul {
  list-style-type: none;
  padding-left: 0;
}

.process-timeline-section .vetting-process p {
  margin-top: 20px;
}
.process-timeline-section .timeline {
  position: relative;
  margin-top: 110px;
}
.process-timeline-section .timeline ul {
  list-style: none;
}
.process-timeline-section .timeline ul li {
  position: relative;
  width: 50%;
}
.process-timeline-section .timeline ul li:nth-child(even) {
  text-align: right;
}
.process-timeline-section .timeline ul li:nth-child(even)::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  right: -54px;
  top: 50%;
  transform: translate(0%, -50%);
}
.process-timeline-section .timeline ul li:nth-child(even)::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 80px;
  right: 70px;
  top: 50%;
  transform: translate(0%, -50%);
  background-image: url("../images/company/vetting-process-dot-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.process-timeline-section .timeline ul li:nth-child(even):nth-child(2)::before {
  background-image: url(../images/company/vetting-process-img2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.process-timeline-section .timeline ul li:nth-child(even):nth-child(4)::before {
  background-image: url(../images/company/vetting-process-img4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.process-timeline-section .timeline ul li:nth-child(odd) {
  text-align: left;
  margin-left: auto;
}
.process-timeline-section .timeline ul li:nth-child(odd)::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  left: -47px;
  top: 50%;
  transform: translate(0%, -50%);
}
.process-timeline-section .timeline ul li:nth-child(odd)::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 80px;
  left: 80px;
  top: 50%;
  transform: translate(0%, -50%);
  background-image: url(../images/company/vetting-process-dot-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.process-timeline-section .timeline ul li:nth-child(odd):nth-child(1)::before {
  background-image: url(../images/company/vetting-process-img1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.process-timeline-section .timeline ul li:nth-child(odd):nth-child(3)::before {
  background-image: url(../images/company/vetting-process-img3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.process-timeline-section .timeline ul li:nth-child(odd):nth-child(5)::before {
  background-image: url(../images/company/vetting-process-img5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.process-timeline-section .timeline ul li:nth-child(even) .content {
  margin-right: 174px;
  text-align: left;
}
.process-timeline-section .timeline ul li:nth-child(odd) .content {
  margin-left: 184px;
}
.process-timeline-section .timeline::before {
  content: "";
  position: absolute;
  height: 75%;
  width: 0;
  border-left: 0.4px dashed #016BE3;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
}
.process-timeline-section .timeline .content {
  padding: 50px 0px;
}
.process-timeline-section .timeline .content h3 {
  font-size: 24px;
  line-height: 33px;
}
.process-timeline-section .timeline .content p {
  font-size: 18px;
  line-height: 32px;
  margin-top: 15px;
}

.how-are-we-different-section .dotsdull {
  border: 1px solid #016BE3;
  border-radius: 10px;
}
.how-are-we-different-section .bluebgs {
  background: #016BE3;
  border-radius: 10px;
  padding: 18px 89px;
  align-items: center;
}
.how-are-we-different-section .bluebgs .leftblue h3 {
  color: #ffffff;
}
.how-are-we-different-section .bluebgs .leftblue h4 {
  font-weight: 600;
  font-size: 30px;
  line-height: 64px;
  color: #FFFFFF;
}
.how-are-we-different-section .bluebgs .vresus {
  background: #78B7FF;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  text-align: center;
  border: 2.24px solid #FFFFFF;
  margin-left: -39px;
}
.how-are-we-different-section .bluebgs .vresus p {
  padding: 16px 13px;
  font-size: 31.14px;
  line-height: 38px;
  color: #ffc732;
  font-weight: bold;
}
.how-are-we-different-section .bluebottom .leftbluebottom {
  padding: 20px 141px 60px 65px;
  position: relative;
}
.how-are-we-different-section .bluebottom .leftbluebottom .mobileonly {
  display: none;
}
.how-are-we-different-section .bluebottom .leftbluebottom:first-child::after {
  content: "";
  border-left: 1px solid #016BE3;
  position: absolute;
  width: 1px;
  height: 89%;
  right: 4px;
  top: 11%;
}
.how-are-we-different-section .bluebottom .leftbluebottom ul {
  list-style: none;
}
.how-are-we-different-section .tick-icon-list li {
  position: relative;
  list-style-type: none;
  padding-left: 30px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 28px;
  opacity: 0.9;
}
.how-are-we-different-section .tick-icon-list li::before {
  content: "";
  clear: both;
  display: block;
  background: url(../images/company/tick-list-icon.png) no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50px;
}
.how-are-we-different-section .mobile {
  display: none;
}

@media screen and (max-width: 1600px) {
  .process-timeline-section .timeline {
    margin-top: 70px;
  }
  .process-timeline-section .timeline .content p {
    line-height: 28px;
    margin-top: 10px;
  }
  .process-timeline-section .timeline .content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .how-are-we-different-section .tick-icon-list li {
    margin-top: 20px;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom {
    padding: 20px 5% 40px;
  }
  .ques-ans-section .flex-2 {
    margin-top: 40px;
  }
  .ques-ans-section .flex-2:nth-child(2n-1) {
    padding-right: 50px;
  }
  .ques-ans-section .flex-2:nth-child(2n) {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 1440px) {
  .process-timeline-section .timeline .content p {
    line-height: 24px;
    margin-top: 10px;
    font-size: 16px;
  }
  .process-timeline-section .timeline .content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .how-are-we-different-section .dotsdull .vresus h4 {
    margin: 17px 0 10px;
  }
  .how-are-we-different-section .dotsdull .bluebgs {
    padding: 14px 78px;
  }
  .how-are-we-different-section .dotsdull .bluebgs .vresus {
    width: 66px;
    height: 66px;
  }
  .how-are-we-different-section .dotsdull .bluebgs .leftblue h4 {
    font-size: 23px;
    line-height: 30px;
  }
  .how-are-we-different-section .dotsdull li {
    font-size: 16px;
  }
  .ques-ans-section .flex-2 {
    margin-top: 40px;
  }
  .ques-ans-section .flex-2:nth-child(2n-1) {
    padding-right: 30px;
  }
  .ques-ans-section .flex-2:nth-child(2n) {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .process-timeline-section .timeline::before {
    left: 120px;
  }
  .process-timeline-section .timeline ul li {
    width: 100%;
    text-align: left;
  }
  .process-timeline-section .timeline ul li:nth-child(odd), .process-timeline-section .timeline ul li:nth-child(even) {
    text-align: left;
    margin-left: 0;
  }
  .process-timeline-section .timeline ul li:nth-child(odd)::before, .process-timeline-section .timeline ul li:nth-child(even)::before {
    height: 89px;
    width: 89px;
    left: 76px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd)::after, .process-timeline-section .timeline ul li:nth-child(even)::after {
    height: 14px;
    width: 55px;
    left: 186px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd) .content, .process-timeline-section .timeline ul li:nth-child(even) .content {
    margin-left: 291px;
    padding: 32px 0px;
    margin-right: 0px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd) .content h3, .process-timeline-section .timeline ul li:nth-child(even) .content h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd) .content p, .process-timeline-section .timeline ul li:nth-child(even) .content p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
  .how-are-we-different-section .dotsdull li {
    margin-top: 10px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .our-process .process-img {
    margin-top: 0 !important;
    width: 80%;
    margin: auto;
  }
  .our-process .process-card {
    margin-top: 70px;
    padding-top: 20px;
  }
  .our-process .card {
    padding: 45px 30px 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .our-process {
    counter-reset: step;
  }
  .our-process .process-img {
    display: none;
  }
  .our-process .card {
    flex-basis: 100%;
    background: #fff;
    margin-bottom: 14px;
    padding: 80px 30px 30px 30px;
    position: relative;
  }
  .our-process .card p {
    background: transparent;
  }
  .our-process .card::before {
    counter-increment: step;
    content: "" counter(step);
    position: absolute;
    top: 25px;
    color: #016be3;
    left: 0;
    right: 0;
    border: 1px solid #016be3;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  .our-process .process-card {
    margin-top: 40px;
  }
  .our-process .process-card .card-single {
    width: 100%;
  }
  .process-timeline-section .timeline::before {
    left: 70px;
  }
  .process-timeline-section .timeline ul li {
    width: 100%;
    text-align: left;
  }
  .process-timeline-section .timeline ul li:nth-child(odd), .process-timeline-section .timeline ul li:nth-child(even) {
    text-align: left;
    margin-left: 0;
  }
  .process-timeline-section .timeline ul li:nth-child(odd)::before, .process-timeline-section .timeline ul li:nth-child(even)::before {
    height: 89px;
    width: 89px;
    left: 27px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd)::after, .process-timeline-section .timeline ul li:nth-child(even)::after {
    left: 127px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd) .content, .process-timeline-section .timeline ul li:nth-child(even) .content {
    margin-left: 221px;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom {
    padding: 0;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom:first-child::after {
    border-left: 0;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom .mobileonly {
    display: block;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom ul {
    padding: 10px 20px 40px;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom.flex-2 {
    flex-basis: 100%;
  }
  .how-are-we-different-section .dotsdull li {
    font-size: 14px;
    line-height: 22px;
  }
  .how-are-we-different-section .dotsdull .bluebgs {
    padding: 15px 29px;
    margin-bottom: 27px;
  }
  .how-are-we-different-section .dotsdull .desktoponly {
    display: none;
  }
  .how-are-we-different-section .dotsdull .vresus h4 {
    margin: 0;
  }
  .how-are-we-different-section .mobile {
    background: #78B7FF;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    text-align: center;
    border: 2.24px solid #fff;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .how-are-we-different-section .mobile h4 {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
  }
  .ques-ans-section .flex-2 {
    margin-top: 30px;
  }
  .ques-ans-section .flex-2:first-child {
    margin-top: 0;
  }
  .ques-ans-section .flex-2:nth-child(2n-1) {
    padding-right: 0;
  }
  .ques-ans-section .flex-2:nth-child(2n) {
    padding-left: 0;
  }
  .ques-ans-section .content-box p {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .process-timeline-section .vetting-process p {
    margin-top: 15px;
  }
  .process-timeline-section .timeline {
    margin-top: 40px;
  }
  .process-timeline-section .timeline::before {
    left: 30px;
    top: 110px;
    height: calc(90% - 110px);
  }
  .process-timeline-section .timeline ul li {
    width: 100%;
    text-align: left;
  }
  .process-timeline-section .timeline ul li:nth-child(odd), .process-timeline-section .timeline ul li:nth-child(even) {
    text-align: left;
    margin-left: 0;
  }
  .process-timeline-section .timeline ul li:nth-child(odd)::before, .process-timeline-section .timeline ul li:nth-child(even)::before {
    height: 60px;
    width: 60px;
    left: 0;
  }
  .process-timeline-section .timeline ul li:nth-child(odd)::after, .process-timeline-section .timeline ul li:nth-child(even)::after {
    height: 8px;
    width: 34px;
    left: 68px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd) .content, .process-timeline-section .timeline ul li:nth-child(even) .content {
    margin-left: 119px;
    padding: 25px 0px;
    margin-right: 0;
  }
  .process-timeline-section .timeline ul li:nth-child(odd) .content h3, .process-timeline-section .timeline ul li:nth-child(even) .content h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .process-timeline-section .timeline ul li:nth-child(odd) .content p, .process-timeline-section .timeline ul li:nth-child(even) .content p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom .mobileonly {
    display: block;
  }
  .how-are-we-different-section .bluebottom .leftbluebottom ul {
    padding: 10px 15px 40px;
  }
  .how-are-we-different-section .dotsdull .bluebgs {
    padding: 15px 20px;
    margin-bottom: 0;
  }
  .ques-ans-section .content-box p {
    font-size: 14px;
  }
}
.banner-main.for-client-banner {
  background: url("../images/for-client-banner.jpg") top center no-repeat;
  background-size: cover;
}
.banner-main.for-client-banner p {
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  line-height: 160%;
}

.client-testmonial-section .glider-track {
  padding: 20px 0;
}
.client-testmonial-section .glider-dot {
  width: 9px;
  height: 9px;
  background: #d9d9d9;
  margin-top: 20px;
}
.client-testmonial-section .glider-dot.active {
  background: #016be3;
}
.client-testmonial-section .slide-item {
  padding: 0 10px;
  position: relative;
}
.client-testmonial-section .slide-item .item-box {
  background: #ffffff;
  box-shadow: 0px 4px 30px rgba(218, 226, 234, 0.5);
  border-radius: 0px 0px 5px 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  height: 100%;
}
.client-testmonial-section .slide-item .item-box .fk-container {
  position: relative;
}
.client-testmonial-section .slide-item .item-box .fk-container img {
  width: 100% !important;
}
.client-testmonial-section .slide-item .item-box:hover {
  border-color: #016be3;
}
.client-testmonial-section .slide-item iframe {
  border: 0;
  border: 0;
  height: auto;
  vertical-align: bottom;
  width: 100%;
  max-height: 100%;
}
.client-testmonial-section .slide-item iframe.active {
  height: 100%;
  max-height: unset;
  z-index: 1;
}
.client-testmonial-section .slide-item .yt-player {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -9;
}
.client-testmonial-section .slide-item .content-box {
  padding: 25px 30px 30px;
}
.client-testmonial-section .slide-item p {
  opacity: 0.9;
}
.client-testmonial-section .slide-item .client-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #253053;
  opacity: 0.9;
  margin-top: 20px;
  display: block;
}

.clients-content-section {
  margin-top: 60px;
}
.clients-content-section .flex-3 {
  padding: 0 10px;
}
.clients-content-section .flex-3:nth-child(2) .item-box:last-child .content-box {
  min-height: 229px;
}
.clients-content-section .flex-3:first-child .item-box:last-child .content-box {
  min-height: 418px;
}
.clients-content-section .item-box {
  margin: 10px 0;
}
.clients-content-section .content-box {
  background: #ffffff;
  box-shadow: 0px 4px 30px rgba(218, 226, 234, 0.5);
  border-radius: 5px;
  padding: 40px 25px 30px 40px;
  position: relative;
  border: 1px solid #fff;
}
.clients-content-section .content-box::before {
  content: "";
  background: url("../../assets/images/quote-gray.png") top center no-repeat;
  width: 19px;
  height: 16px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.clients-content-section .content-box p {
  font-weight: 400;
  opacity: 0.9;
}
.clients-content-section .content-box h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #253053;
  opacity: 0.9;
}
.clients-content-section .content-box .title-box {
  margin-top: 20px;
}
.clients-content-section .content-box .title-box p {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  opacity: 0.6;
  margin-top: 5px;
}
.clients-content-section .content-box:hover {
  border-color: #016be3;
}

@media only screen and (max-width: 767px) {
  .clients-content-section {
    margin-top: 20px;
  }
}
.faq-section .faq-outer {
  max-width: 970px;
  margin: 0 auto;
}
.faq-section .faq-outer .faq-accordion-item-outer {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  margin: 0 0 20px;
  padding: 0 20px;
}
.faq-section .faq-outer .faq-accordion-item-outer.active {
  border-bottom: 2px solid #0400F5;
}
.faq-section .faq-outer .faq-accordion-item-outer.active .faq-accordion-content {
  display: block;
}
.faq-section .faq-outer .faq-accordion-item-outer.active .open-icon {
  display: none;
}
.faq-section .faq-outer .faq-accordion-item-outer.active .faq-accordion-toggle::after {
  display: none;
}
.faq-section .faq-outer .faq-accordion-item-outer:nth-child(1) .faq-accordion-toggle {
  border-top: 0;
}
.faq-section .faq-outer .faq-accordion-toggle {
  display: block;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 20px 35px 20px 0;
  position: relative;
  font-weight: 600;
  color: #111827;
  border-bottom: 1px solid #e4e4e4;
  margin: 0;
  font-size: 20px;
  line-height: 32px;
}
.faq-section .faq-outer .faq-accordion-toggle a {
  display: contents;
}
.faq-section .faq-outer .faq-accordion-toggle::before {
  content: "";
  clear: both;
  display: block;
  background: #0400F5;
  height: 3px;
  width: 18px;
  border-radius: 3px;
  position: absolute;
  right: 0;
}
.faq-section .faq-outer .faq-accordion-toggle::after {
  content: "";
  clear: both;
  display: block;
  background: #0400F5;
  height: 18px;
  width: 3px;
  border-radius: 3px;
  position: absolute;
  right: 7px;
}
.faq-section .faq-outer .faq-accordion-content {
  display: none;
  padding: 20px 0;
}
.faq-section .faq-outer .faq-accordion-content p {
  margin: 0 0 10px;
  font-weight: 400;
  color: #4B5563;
}
.faq-section .faq-outer .faq-accordion-content ul,
.faq-section .faq-outer .faq-accordion-content ol {
  margin: 20px 0 0;
  padding-left: 0;
}
.faq-section .faq-outer .faq-accordion-content ul li,
.faq-section .faq-outer .faq-accordion-content ol li {
  margin: 10px 0 0;
  position: relative;
  padding-left: 18px;
  color: #4B5563;
}
.faq-section .faq-outer .faq-accordion-content ul li:before,
.faq-section .faq-outer .faq-accordion-content ol li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #0400F5;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.faq-section .faq-outer .no-list-type ul {
  list-style-type: none;
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  .faq-section .faq-outer .faq-accordion-content p {
    font-size: 14px;
    margin-top: 10px;
  }
  .faq-section .faq-outer .faq-accordion-toggle {
    font-size: 18px;
    line-height: 28px;
    padding: 15px 30px 15px 0;
  }
  .faq-section .faq-outer .faq-accordion-toggle::before {
    height: 2px;
    width: 12px;
  }
  .faq-section .faq-outer .faq-accordion-toggle::after {
    height: 12px;
    width: 2px;
    right: 5px;
  }
}
.light-theme-grey-bg {
  background: linear-gradient(270deg, #0b147c 21.77%, #4b1bac 100%);
}

.error-img-section {
  background: linear-gradient(270deg, #0b147c 21.77%, #4b1bac 100%);
}
.error-img-section .form-footer {
  padding: 0 40px;
  margin-top: 133px;
  align-items: flex-start;
  justify-content: space-between;
}
.error-img-section .form-footer .mid-block {
  flex-basis: 50%;
}
.error-img-section .form-footer .mid-block.dis-flex {
  justify-content: space-between;
}
.error-img-section .form-footer .last-block {
  flex-basis: 45%;
}
.error-img-section .form-footer .last-block li {
  margin-bottom: 20px !important;
}
.error-img-section .form-footer a {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}
.error-img-section .form-footer a:hover {
  opacity: 1;
  color: #253053;
}
.error-img-section .form-footer a:hover span {
  opacity: 0.8;
}
.error-img-section .form-footer span,
.error-img-section .form-footer li,
.error-img-section .form-footer a {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  list-style-type: none;
  opacity: 0.6;
  color: #666e86;
  margin-top: 10px;
}
.error-img-section .form-footer .title {
  display: block;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.error-img-section .form-footer strong {
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}
.error-img-section .form-footer li,
.error-img-section .form-footer .title {
  margin-top: 10px;
  margin-bottom: 10px;
}
.error-img-section .form-footer li {
  transition: all 0.3s ease-in-out;
}
.error-img-section .form-footer li:hover {
  opacity: 1;
}
.error-img-section .form-footer li:hover strong {
  opacity: 1;
}
.error-img-section .form-footer .flex-3 a span:hover {
  color: #253053 !important;
}
.error-img-section .form-footer .flex-3 .title {
  padding-left: 38px;
  height: 20px;
  background: url("../images/country-flags-sprite.png") 0px 0px no-repeat;
}
.error-img-section .form-footer .flex-3:nth-child(1) a span {
  color: #253053;
}
.error-img-section .form-footer .flex-3:nth-child(1) .title {
  background-position: 0 2px;
}
.error-img-section .form-footer .flex-3:nth-child(2) .title {
  background-position: 0 -28px;
}
.error-img-section .form-footer .flex-3:nth-child(3) .title {
  background-position: 0 -64px;
}
.error-img-section .form-footer .flex-3:nth-child(4) .title {
  background-position: 0 -201px;
}
.error-img-section .form-footer .flex-3:nth-child(5) .title {
  background-position: 0 -132px;
}
.error-img-section .form-footer .flex-3:nth-child(6) .title {
  padding-left: 40px;
  background-position: 0 -168px;
}

.error-img-section .content-img-box {
  background-color: #fff;
  padding-top: 90px;
  background-image: url(../images/company/thanks_bg_saddow.png);
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 300px;
  background-size: contain;
  border-radius: 10px;
}
.error-img-section .content-img-box .topcontent {
  padding: 0 90px;
}
.error-img-section .content-img-box .second-error-box {
  padding: 0 40px;
  margin-top: 133px;
}
.error-img-section .content-img-box .second-error-box p {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.error-img-section .content-box {
  padding-top: 28px;
}
.error-img-section .content-box h1 {
  color: #253053;
  font-weight: 700;
  font-size: 64px;
  line-height: 75px;
}
.error-img-section .content-box h3 {
  margin-top: 10px;
  color: #016be3;
  line-height: 33px;
}
.error-img-section .content-box h4 {
  margin-top: 25px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  opacity: 0.9;
}
.error-img-section .img-box {
  justify-content: right;
  display: flex;
  padding-right: 140px;
}
.error-img-section .para-text-content {
  margin-top: 10px;
}
.error-img-section .para-text-content p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #253053;
  opacity: 0.9;
}
.error-img-section .para-text-content a {
  color: #016be3;
}
.error-img-section .box-img-bottom {
  background: url(../images/company/thanks_bg_saddow.png) center bottom no-repeat;
  background-size: 100% !important;
}
.error-img-section .first-box {
  flex-basis: 20%;
}
.error-img-section .first-box .email-part {
  text-decoration: underline;
  color: #253053;
  font-family: "Noto Sans";
  margin-bottom: 5px;
}
.error-img-section .first-box p.whatsapp-bx {
  margin-top: 20px;
  opacity: 0.6;
}
.error-img-section .first-box p.whatsapp-nobx {
  opacity: 0.6;
  margin-top: 5px;
}
.error-img-section .second-box {
  flex-basis: 20%;
  opacity: 0.6;
}
.error-img-section .second-box span.flag-country-nm {
  text-transform: uppercase;
}
.error-img-section .second-box .second-bx-frst-part {
  margin-bottom: 5px;
}
.error-img-section .second-box .second-bx-scond-part {
  margin-top: 11px;
  margin-bottom: 5px;
}
.error-img-section .second-box span.flag-part {
  margin-right: 10px;
}
.error-img-section .second-box p a:hover {
  color: #253053;
  opacity: 1;
}
.error-img-section .third-box {
  flex-basis: 20%;
}
.error-img-section .fourth-box {
  flex-basis: 40%;
}
.error-img-section .fourth-box p {
  margin-bottom: 20px;
  opacity: 0.6;
}
.error-img-section .fourth-box p span {
  font-weight: 600;
}

@media only screen and (max-width: 1280px) {
  .error-img-section .content-img-box {
    padding-top: 62px;
    padding-bottom: 220px;
  }
  .error-img-section .content-img-box .second-error-box {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .error-img-section .first-box,
  .error-img-section .second-box,
  .error-img-section .third-box,
  .error-img-section .fourth-box {
    flex-basis: 25%;
  }
  .error-img-section .img-box {
    padding-right: 30px;
    margin-top: 27px;
  }
  .error-img-section .content-img-box {
    margin-top: 70px;
    padding-top: 41px;
    padding-bottom: 171px;
  }
  .error-img-section .content-img-box .topcontent {
    padding: 0;
  }
  .error-img-section .content-img-box .second-error-box {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .error-img-section {
    padding-top: 60px;
  }
  .error-img-section .img-box {
    margin-top: 40px;
  }
  .error-img-section .flex-3 {
    flex-basis: 100%;
    margin-top: 20px;
  }
  .error-img-section .form-footer {
    margin-top: 37px;
  }
  .error-img-section .form-footer .last-block {
    flex-basis: 100%;
    margin-top: 30px;
  }
  .error-img-section .content-img-box {
    background-image: none;
    padding-bottom: 30px;
    padding-top: 0;
  }
  .error-img-section .content-img-box .second-error-box {
    margin-top: 0;
    padding: 0 25px;
  }
  .error-img-section .content-img-box .topcontent {
    padding: 0 25px;
  }
  .error-img-section .content-box {
    padding-top: 18px;
    padding-right: 0;
  }
  .error-img-section .content-box h4 {
    margin-top: 12px;
  }
  .error-img-section .content-box h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .error-img-section .content-box h1 {
    font-size: 56px;
    line-height: 63px;
  }
  .error-img-section .img-box {
    padding-right: 0;
  }
}
.page-id-670 .glider-dots {
  display: none;
}

.banner-main {
  background: #04237f;
  color: #ffffff;
}
.banner-main .about-content {
  width: 55%;
}
.banner-main .about-content h1 {
  margin-bottom: 20px;
  padding-top: 48px;
}
.banner-main .about-content p {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 29px;
}
.banner-main .about-content .counter-container .hire-counter {
  margin: 35px 0;
  text-align: left;
}
.banner-main .about-content .counter-container .hire-counter div {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #ffc732;
}
.banner-main .about-content .counter-container .hire-counter span {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding-right: 50px;
}
.banner-main .header-right-image {
  width: 45%;
  padding-left: 91px;
}
.banner-main .header-right-image img {
  width: 100%;
}
.banner-main.top-team-part {
  background: url("../images/company/team-banner.webp") top center no-repeat;
  background-size: cover;
}
.banner-main.top-team-part .ourteam-content p {
  margin: 20px auto 0;
  color: #ffffff;
  width: 84%;
  font-size: 18px;
  line-height: 29px;
}
.banner-main.policy-section {
  background: url("../images/company/team-banner.webp") top center no-repeat;
  background-size: cover;
}
.banner-main.policy-section .privacy-header-content p {
  margin: 20px auto 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 29px;
}
.banner-main.legal-disclaimer-page-section {
  background: url("../images/company/team-banner.webp") top center no-repeat;
  background-size: cover;
}
.banner-main.legal-disclaimer-page-section .disclaimer-header-content p {
  margin: 20px auto 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 29px;
}
.banner-main.career-top-section {
  background: url("../images/company/career-header-img.webp") top center no-repeat;
  background-size: cover;
}
.banner-main.career-top-section .career-content {
  width: 55%;
  margin: auto;
  padding: 85px;
  padding-left: 0;
}
.banner-main.career-top-section .career-content p {
  margin-top: 20px;
  color: #ffffff;
  font-size: 18px;
  line-height: 29px;
}
.banner-main.career-top-section .career-header-right-image {
  width: 45%;
  padding-left: 62px;
}
.banner-main.career-top-section .career-header-right-image img {
  width: 100%;
}
.banner-main.products-main-section {
  background: url("../images/company/team-banner.webp") top center no-repeat;
  background-size: cover;
}
.banner-main.products-main-section .products-header-content p {
  margin: 20px auto 0;
  color: #ffffff;
}
.banner-main.how-we-works-top-section {
  background: url("../images/company/career-header-img.webp") top center no-repeat;
  background-size: cover;
}
.banner-main.how-we-works-top-section .works-top-content p {
  margin: 20px auto 0;
  color: #ffffff;
  width: 84%;
}

.client-logo-box-section {
  margin-top: 0;
  background: linear-gradient(2deg, rgba(231, 240, 255, 0.43) 0%, rgba(231, 240, 255, 0.26) 57.81%, rgba(250, 252, 255, 0.203125) 79.69%, rgba(255, 255, 255, 0) 100%);
}

.mission-vision-section .left-side-img {
  width: 39%;
  position: relative;
}
.mission-vision-section .left-side-img .ceoname {
  position: absolute;
  right: -66px;
  top: 67%;
  background: #fff;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(188, 208, 224, 0.3);
  border-radius: 7px;
  text-align: center;
  padding: 17px 30px 14px;
}
.mission-vision-section .left-side-img .ceoname h6 {
  font-size: 16px;
  margin-bottom: 0;
}
.mission-vision-section .left-side-img .ceoname p {
  font-size: 14px;
  color: #B0B0BA;
  text-align: left;
  padding-left: 36px;
}
.mission-vision-section .left-side-img .ceoname p::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #B0B0BA;
  left: 33px;
  bottom: 27px;
}
.mission-vision-section .left-side-img img {
  width: 100%;
}
.mission-vision-section .right-side-content {
  width: 61%;
  padding-left: 208px;
  padding-top: 36px;
}
.mission-vision-section .right-side-content .content h3 {
  font-size: 24px;
  line-height: 28px;
}
.mission-vision-section .right-side-content .content p {
  margin-top: 10px;
  font-size: 18px;
  line-height: 29px;
}
.mission-vision-section .right-side-content .content.vision-content {
  margin-top: 45px;
}
.mission-vision-section .right-side-content .content.vision-content::before {
  content: url(../images/company/vision_img.png);
  position: relative;
  left: -60px;
  top: 36px;
}
.mission-vision-section .right-side-content .content.mission-content::before {
  content: url(../images/company/mission_img.png);
  position: relative;
  left: -60px;
  top: 36px;
}

.why-choose-three-column-section .threebox .flex-3 {
  padding-right: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
}
.why-choose-three-column-section .threebox .flex-3.has-anchor:hover .box-3 {
  border: 1px solid #016BE3;
  box-shadow: 0px 16px 40px rgba(176, 202, 228, 0.2);
  border-radius: 5px;
}
.why-choose-three-column-section .threebox .box-3 {
  height: 100%;
  border: 1px solid rgba(212, 224, 237, 0.7);
  border-radius: 5px;
  padding: 40px 30px 55px;
  transition: all 0.3s ease-in-out;
}
.why-choose-three-column-section .threebox .box-3 h3,
.why-choose-three-column-section .threebox .box-3 p {
  margin-top: 20px;
}
.why-choose-three-column-section .threebox .box-3 p {
  opacity: 0.9;
}
.why-choose-three-column-section .threebox .box-3 h3 a {
  color: #444;
}
.why-choose-three-column-section .threebox .box-3 ul li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 22px;
}
.why-choose-three-column-section .threebox .box-3 ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #016be3;
  position: absolute;
  left: 0px;
  border-radius: 50%;
  top: 5px;
}
.why-choose-three-column-section .second-section-content p {
  margin-bottom: 15px;
}

.three-column-img-text-section .threebox-img-text .flex-3 {
  padding-right: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
}
.three-column-img-text-section .threebox-img-text .flex-3.has-anchor a {
  transition: all 0.3s ease-in-out;
  display: block;
  height: 100%;
}
.three-column-img-text-section .threebox-img-text .flex-3.has-anchor a:hover .box-3 {
  border: 1px solid #016BE3;
  box-shadow: 0px 16px 40px rgba(176, 202, 228, 0.2);
  border-radius: 5px;
}
.three-column-img-text-section .threebox-img-text .box-3 {
  height: 100%;
  border: 1px solid rgba(212, 224, 237, 0.7);
  border-radius: 5px;
  padding: 40px 30px 55px;
  transition: all 0.3s ease-in-out;
}
.three-column-img-text-section .threebox-img-text .top-box {
  justify-content: space-between;
}
.three-column-img-text-section .threebox-img-text .top-box .left-heading {
  flex-basis: 76%;
  margin-right: 10px;
  min-height: 106px;
}
.three-column-img-text-section .threebox-img-text .top-box .right-icon {
  flex-basis: 18%;
  text-align: right;
}
.three-column-img-text-section .threebox-img-text .bottom-txt-box {
  margin-top: 5px;
}
.three-column-img-text-section .threebox-img-text .bottom-txt-box p {
  opacity: 0.9;
}

.industry-coverage-section .coverage-three-box .industry-box {
  border: 1px solid #D4E0ED;
  border-radius: 5px;
  margin: 20px 10px 0px;
  transition: all 0.3s ease-in-out;
  display: block;
}
.industry-coverage-section .coverage-three-box .industry-box h3 {
  transition: all 0.3s ease-in-out;
}
.industry-coverage-section .coverage-three-box .industry-box .img-box {
  overflow: hidden;
}
.industry-coverage-section .coverage-three-box .industry-box .img-box img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.industry-coverage-section .coverage-three-box .industry-box .title-box {
  padding: 24px 0 24px 20px;
}
.industry-coverage-section .coverage-three-box .industry-box:hover {
  border-color: #016BE3;
}
.industry-coverage-section .coverage-three-box .industry-box:hover .img-box img {
  transform: scale(1.1);
}
.industry-coverage-section .coverage-three-box .industry-box:hover h3 {
  color: #016BE3;
}

.our-team-section .heading p {
  margin-top: 15px;
}
.our-team-section .team-images img {
  width: 100%;
}

.our-esteemed-clients-section .client-logo {
  background: #FFFFFF;
  border: 0.5px solid #F5F5F5;
  box-shadow: 0px 4px 30px rgba(230, 240, 248, 0.25);
  border-radius: 5px;
  padding: 25px 79px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.our-infrastructure-section .infra-box {
  background: #FFFFFF;
  border: 0.5px solid #E2E2E2;
  box-shadow: 0px 4px 30px rgba(230, 240, 248, 0.25);
  border-radius: 5px;
  padding: 48px 30px;
  height: 100%;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.our-infrastructure-section .infra-box:hover {
  border-color: #016BE3;
}
.our-infrastructure-section .infra-box .infra-content {
  margin-top: 20px;
}
.our-infrastructure-section .infra-box picture {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-team-member-section {
  margin-top: -142px;
}
.our-team-member-section .member-profile {
  background: #F6F7F9;
  border-radius: 5px;
  padding: 41px 69px 50px;
  height: 100%;
  text-align: center;
  position: relative;
}
.our-team-member-section .member-profile .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #016BE3;
  border-radius: 5px;
  padding: 50px;
  display: grid;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.our-team-member-section .member-profile .hover-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.9;
  position: relative;
  padding-top: 25px;
}
.our-team-member-section .member-profile .hover-content p:before {
  content: "";
  background: url("../images/quote-sm.png") top center no-repeat;
  background-size: 100%;
  width: 17px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.our-team-member-section .member-profile .hover-content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ECECEC;
  opacity: 0.9;
  display: block;
  margin-top: 5px;
}
.our-team-member-section .member-profile .hover-content span.title {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: #FFFFFF;
  opacity: 1;
}
.our-team-member-section .member-profile:hover .hover-content {
  opacity: 1;
}
.our-team-member-section .member-profile h3 {
  padding-top: 20px;
}
.our-team-member-section .member-profile p {
  padding-top: 5px;
}
.our-team-member-section .box-3 {
  padding-right: 30px;
  margin-bottom: 30px;
}
.our-team-member-section .box-3:nth-child(3n) {
  padding-right: 0px;
}

.image-slider .slide-item img {
  width: 100%;
}

.priv-poly-content-section .policy-content {
  width: 74%;
  margin: auto;
}
.priv-poly-content-section .policy-content p {
  margin-top: 20px;
}
.priv-poly-content-section .policy-content p a {
  color: #016BE3;
}

.legal-disclaimer-content-section p {
  margin-top: 20px;
}

.thank-you-img-section .content-box {
  padding-right: 0;
  flex-basis: 100%;
  text-align: center;
}
.thank-you-img-section .content-box h1 {
  font-size: 48px;
  line-height: 60px;
  color: #fff;
}
.thank-you-img-section .para-text-content {
  margin-top: 20px;
}
.thank-you-img-section .para-text-content p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.thank-you-img-section .para-text-content a {
  color: #fff;
  text-decoration: underline;
}
.thank-you-img-section .img-box {
  justify-content: right;
  display: flex;
}

.open-position-section iframe {
  height: 2420px;
  width: 100%;
  border: none;
}

@media only screen and (max-width: 1600px) {
  .our-infrastructure-section .infra-box {
    padding: 42px;
  }
  .our-team-member-section .member-profile {
    padding: 40px 40px 50px;
  }
}
@media only screen and (max-width: 1280px) {
  .mission-vision-section .left-side-img .ceoname {
    padding: 11px 21px;
    right: -60px;
    top: 65%;
  }
  .mission-vision-section .left-side-img .ceoname p {
    padding-left: 29px;
  }
  .mission-vision-section .left-side-img .ceoname p::before {
    left: 21px;
    bottom: 23px;
  }
  .mission-vision-section .right-side-content {
    padding-top: 30px;
    padding-left: 195px;
  }
  .mission-vision-section .right-side-content .content.vision-content {
    margin-top: 20px;
  }
  .why-choose-three-column-section .threebox .box-3 p,
  .why-choose-three-column-section .threebox .box-3 h3 {
    margin-top: 15px;
  }
  .three-column-img-text-section .threebox-img-text .box-3 {
    padding: 38px 30px;
  }
  .three-column-img-text-section .threebox-img-text .left-heading h3 {
    font-size: 21px;
  }
  .open-position-section iframe {
    height: 3560px;
  }
}
@media only screen and (max-width: 1200px) {
  .banner-main.career-top-section .career-header-right-image {
    padding-left: 27px;
  }
  .banner-main.career-top-section .career-content {
    padding: 49px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-main .about-content h1 {
    padding-top: 0px;
  }
  .mission-vision-section .left-side-img .ceoname {
    right: -69px;
    top: 54%;
  }
  .mission-vision-section .right-side-content {
    padding-top: 0px;
  }
  .three-column-img-text-section .threebox-img-text .left-heading h3 {
    font-size: 19px;
  }
  .three-column-img-text-section .threebox-img-text .right-icon img {
    height: 70px;
    width: auto;
  }
  .our-team-member-section {
    margin-top: -96px;
  }
  .our-team-member-section .member-profile {
    padding: 25px 15px 23px;
  }
  .our-team-member-section .member-profile h3 {
    font-size: 22px;
  }
  .our-team-member-section .member-profile p {
    font-size: 16px;
  }
  .our-team-member-section .flex-3 {
    flex-basis: 33.33%;
  }
  .our-team-member-section .box-3 {
    padding-right: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-main .about-content {
    width: 100%;
  }
  .banner-main .about-content .counter-container .hire-counter {
    flex-basis: 25%;
  }
  .banner-main .header-right-image {
    width: 100%;
  }
  .mission-vision-section .left-side-img {
    width: 95%;
  }
  .mission-vision-section .left-side-img .ceoname {
    padding: 19px 44px;
    right: -39px;
    top: 69%;
  }
  .mission-vision-section .left-side-img .ceoname p {
    padding-left: 39px;
  }
  .mission-vision-section .left-side-img .ceoname p::before {
    left: 45px;
    bottom: 29px;
  }
  .mission-vision-section .right-side-content {
    width: 100%;
    padding-left: 65px;
    padding-top: 7px;
  }
  .mission-vision-section .right-side-content .content.vision-content {
    margin-top: 7px;
  }
  .our-esteemed-clients-section .flex-5 {
    flex-basis: 33%;
  }
  .three-column-img-text-section .threebox-img-text .left-heading h3 {
    font-size: 21px;
  }
  .banner-main.career-top-section .career-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .banner-main.career-top-section .career-header-right-image {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-main {
    padding-top: 100px;
  }
  .banner-main .about-content {
    width: 100%;
  }
  .banner-main .about-content h1 {
    margin-bottom: 14px;
    padding-top: 0px;
  }
  .banner-main .about-content .counter-container .hire-counter {
    margin: 15px 0;
    flex-basis: 50%;
  }
  .banner-main .header-right-image {
    padding-left: 0;
    width: 100%;
  }
  .banner-main.top-team-part .ourteam-content p {
    width: 100%;
  }
  .mission-vision-section .left-side-img {
    width: 100%;
  }
  .mission-vision-section .left-side-img .ceoname {
    padding: 11px;
    right: -16px;
    top: 62%;
  }
  .mission-vision-section .left-side-img .ceoname p {
    font-size: 12px;
    padding-left: 39px;
  }
  .mission-vision-section .left-side-img .ceoname p::before {
    left: 21px;
    bottom: 23px;
  }
  .mission-vision-section .left-side-img .ceoname h6 {
    font-size: 14px;
  }
  .why-choose-three-column-section .threebox .box-3 {
    min-height: auto;
    height: auto;
  }
  .why-choose-three-column-section .threebox .flex-3 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .why-choose-three-column-section .threebox .flex-3:last-child {
    margin-bottom: 0;
  }
  .why-choose-three-column-section .threebox .box-3 {
    padding: 40px 30px;
    height: auto;
  }
  .three-column-img-text-section .threebox-img-text .flex-3 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .three-column-img-text-section .threebox-img-text .flex-3:last-child {
    margin-bottom: 0;
  }
  .three-column-img-text-section .threebox-img-text .top-box .left-heading {
    height: auto;
    min-height: 0px;
  }
  .three-column-img-text-section .threebox-img-text .top-box .left-heading br {
    display: none;
  }
  .three-column-img-text-section .threebox-img-text .top-box .right-icon {
    flex-basis: 20%;
    text-align: right;
  }
  .three-column-img-text-section .threebox-img-text .top-box .right-icon img {
    height: 56px;
    width: auto;
  }
  .three-column-img-text-section .threebox-img-text .bottom-txt-box {
    margin-top: 16px;
  }
  .our-esteemed-clients-section .flex-5 {
    flex-basis: 50%;
  }
  .our-esteemed-clients-section .client-logo {
    padding: 25px 38px;
  }
  .industry-coverage-section .coverage-three-box .industry-box {
    margin: 10px 0px;
  }
  .our-infrastructure-section .infra-box {
    padding: 31px 76px;
  }
  .our-team-member-section {
    margin-top: -63px;
  }
  .our-team-member-section .flex-3 {
    flex-basis: 100%;
  }
  .our-team-member-section .box-3 {
    padding-right: 0px;
  }
}

/*# sourceMappingURL=company.css.map */
