@charset "UTF-8";
@media only screen and (min-width: 768px) {
  @font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-VariableFont_wght.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
}
.fixed_top_icon {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: none;
}
.fixed_top_icon .back-to-top-btn {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  border: 1px solid #D4D4D8;
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: 45px;
  gap: 5px;
  height: 73px;
  align-items: center;
  border-radius: 100px;
}
.fixed_top_icon .back-to-top-btn .arrow {
  background-image: url(../images/index-v10/top-icon-grey.svg);
  width: 12px;
  display: block;
  background-repeat: no-repeat;
  height: 25px;
}
.fixed_top_icon .back-to-top-btn .text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #9F9FA9;
}
.fixed_top_icon .back-to-top-btn:hover {
  background-color: #1D5BC4;
  border-color: #1D5BC4;
}
.fixed_top_icon .back-to-top-btn:hover .arrow {
  background-image: url(../images/index-v10/top-icon-white.svg);
}
.fixed_top_icon .back-to-top-btn:hover .text {
  color: #ffffff;
}

.fixed_top_icon.active {
  display: block;
}

.mb-70 {
  margin-bottom: 70px;
}

.primary_btn {
  border: 1px solid #ffffff;
  line-height: 1 !important;
  width: fit-content;
  color: #ffffff;
  border-radius: 100px;
}
.primary_btn:hover {
  background-color: #1D5BC4;
  border-color: #1D5BC4;
}
.primary_btn a {
  line-height: 1.1 !important;
  padding: 11.5px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 500;
}
.primary_btn a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  vertical-align: middle;
  background-image: url(../images/index-v10/white-btn-arrow.svg);
  background-size: cover !important;
}

.btn-primary-two {
  border: 1px solid #9F9FA9;
  border-radius: 100px;
  width: fit-content;
  overflow: hidden;
}
.btn-primary-two a {
  padding: 10px 15px;
  color: #52525C;
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 500;
}
.btn-primary-two a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  background-image: url(../images/index-v10/more-btn.svg);
  background-size: cover !important;
}
.btn-primary-two a.rotate::after {
  transform: rotate(180deg);
}
.btn-primary-two:hover a {
  border-color: #1D5BC4;
  background: #1D5BC4;
  color: #ffffff;
}
.btn-primary-two:hover a::after {
  background-image: url(../images/index-v10/more-hover-btn.svg);
}

.btn-primary-two.white {
  border: 1px solid #ffffff;
}
.btn-primary-two.white a {
  color: #ffffff;
}

.btn-primary-two.white.right a {
  padding: 10px 15px;
}
.btn-primary-two.white.right a::after {
  background-image: url(../images/index-v10/white-right.svg);
}
.btn-primary-two.white.right:hover {
  border-color: #1D5BC4;
}
.btn-primary-two.white.right:hover::after {
  background-image: url(../images/index-v10/white-right.svg);
}

.btn-primary-two.grey-right {
  border-color: #9F9FA9;
}
.btn-primary-two.grey-right a {
  padding: 10px 15px;
  color: #52525C;
}
.btn-primary-two.grey-right a::after {
  background-image: url(../images/index-v10/grey-right.svg);
}
.btn-primary-two.grey-right:hover {
  border-color: #1D5BC4;
}
.btn-primary-two.grey-right:hover a {
  color: #ffffff;
}
.btn-primary-two.grey-right:hover a::after {
  background-image: url(../images/index-v10/white-right.svg);
}

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

body {
  background-color: #ffffff;
  color: #4B5563;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.bg-blue {
  background-color: #006eff;
}

.bg-white {
  background-color: #ffffff;
}

.bg-blue-linear {
  background: linear-gradient(180deg, #211f47 0%, #05164d 100%);
}
.bg-blue-linear h2 {
  color: #ffffff;
}
.bg-blue-linear p {
  color: #D9D9E0 !important;
}

.light-background {
  background: #F9FAFB;
}

h1 {
  font-size: 60px;
  line-height: 1.3;
  color: #FFAD00;
  font-weight: 800;
  margin-bottom: 15px;
}

h2 {
  font-size: 42px;
  line-height: 60px;
  font-weight: 700;
  color: #05164D;
  margin: 0 0 15px;
}

h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #05164D;
  margin: 0 0 15px;
}

h4 {
  font-size: 18px;
  color: #05164D;
  font-weight: 600;
}

h6 {
  font-size: 18px;
}

.master-menu-text,
.nav-link,
h1,
h2,
h3 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  /* Subtle sub-pixel fix */
}

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

ul {
  list-style: none;
}

p:last-child {
  margin-bottom: 0px;
}

.font-30 {
  font-size: 30px;
  line-height: 40px;
}

a {
  color: #4B5563;
  text-decoration: none;
}

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

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

section {
  position: relative;
}

.strong,
strong {
  font-weight: 600;
}

.clr-yellow {
  color: #FFAD00;
}

.head-small {
  font-size: 24px;
  line-height: 32px;
  display: block;
  text-transform: uppercase;
}

.sub-head {
  font-size: 34px;
  line-height: 46px;
}

.bg-light,
.bg-dark-theme {
  background: #f8f8f8;
}

.subhead-small {
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  color: #ffffff;
  text-transform: uppercase;
}

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

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

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

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

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

.block {
  display: block;
}

.flex-2 {
  flex-basis: 50%;
}
.flex-2:first-child {
  padding-right: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-b-150 {
  margin-bottom: 150px;
}

.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;
}

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

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

.head-txt {
  max-width: 1060px;
  margin: auto;
}
.head-txt p {
  margin-top: 20px;
  color: #4B5563;
  line-height: 26px;
}
.head-txt small {
  font-size: 14px;
}
.head-txt a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.head-txt a:hover {
  text-decoration: underline;
}

.green-btn {
  background: #FFAD00;
  padding: 16px 42px 16px 22px;
  display: inline-block;
  color: #05164d;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  line-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
}
.green-btn:hover {
  background-color: #ffffff;
}

.green-bdr-btn {
  background: none;
  border: 1px #FFAD00 solid;
  padding: 18px 84px 18px 66px;
  display: inline-block;
  color: #FFAD00;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  cursor: pointer;
}
.green-bdr-btn:hover {
  border-color: #FFAD00;
  color: #FFAD00;
}
.green-bdr-btn:hover .arrow-icon.green::after {
  background-position: -21px 2px;
}

.arrow-icon {
  position: relative;
}
.arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: url(../images/arrow-icon.png) no-repeat;
  width: 11px;
  height: 17px;
}
.arrow-icon.green::after {
  background: url(../images/green-yl-btn.png) 0 2px no-repeat;
}

.form-link-outer {
  display: block;
  font-size: 16px;
  line-height: 28px;
  margin-top: 10px;
}
.form-link-outer .form-link {
  border: 0;
  outline: 0;
  background: none;
  font-size: 14px;
  line-height: 28px;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form-link-outer .form-link:hover {
  color: #FFAD00;
}

.bg-light-theme .link-box {
  background: #05164d;
  color: #ffffff;
}

.bg-dark-theme .link-box {
  background: #05164d;
  color: #ffffff;
}

.top-content p,
.top-content li {
  color: #4B5563;
  line-height: 26px;
}

.tick-icon-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0 0;
}
.tick-icon-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 25px;
  flex-basis: 48%;
}
.tick-icon-list li a {
  display: inline-flex;
}
.tick-icon-list li sup {
  font-size: 10px;
  font-size: 10px;
  margin-left: 2px;
  margin-top: -4px;
}
.tick-icon-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ffb81d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.learn-more .round-arrow-icon {
  width: 24px;
  height: 24px;
  background: url(../images/arrow-circle.png) 0 0 no-repeat;
  display: inline-block;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.learn-more::before {
  content: "";
  clear: both;
  display: block;
  background: #8e8c8c;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -5px;
  transition: all 0.3s ease-in-out;
}
.learn-more:hover {
  color: #FFAD00 !important;
}
.learn-more:hover .round-arrow-icon {
  background-image: url(../images/arrow-circle-hover.png);
  margin-left: 15px;
}

.client-logo-box-section {
  padding: 22px 0;
}
.client-logo-box-section .dis-flex {
  justify-content: space-between;
}
.client-logo-box-section .logo-heading {
  width: 220px;
}
.client-logo-box-section h4 {
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: #aaadb6;
  font-weight: 600;
}
.client-logo-box-section .dis-flex {
  align-items: center;
}
.client-logo-box-section .logo-box-outer {
  background: url(../images/banner-client-logo.svg) 0 0 no-repeat;
  width: calc(100% - 240px);
  height: 69px;
  background-size: 100%;
}

.input-field {
  color: #ffffff;
}

::placeholder {
  color: #6B7280;
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

::placeholder {
  color: #6B7280;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
}

input,
textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.lighter-theme-img {
  display: none !important;
}

.dot-icon {
  background-color: #FFAD00;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px transparent, 0 0 30px #FFAD00, 0 0 20px #FFAD00, 0 0 0px #FFAD00, 0 0 0px #FFAD00, 0 0 0px #FFAD00, 0 0 80px #FFAD00;
}
.dot-icon::before {
  content: "";
  border: 1px #FFAD00 solid;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}
.dot-icon.dot-md {
  width: 19px;
  height: 19px;
}
.dot-icon.dot-md::before {
  padding: 5px;
  top: -6px;
  left: -6px;
}
.dot-icon.dot-sm {
  width: 12px;
  height: 12px;
}
.dot-icon.dot-sm::before {
  padding: 4px;
  top: -5px;
  left: -5px;
}

.for-box-effect {
  transition: all 0.3s ease-in-out;
  background: transparent;
}

.two-column-right-box-section.bg-dark-theme .has-vlink:hover {
  background: #fff;
}
.two-column-right-box-section .has-vlink:hover {
  background: #f6f6f6;
}

.bg-blue-opacity {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px #f3f3f3;
}

.bg-blue-opacity-light {
  background: rgba(255, 255, 255, 0.2);
}

.green-bdr-btn {
  border-color: #FFAD00;
  color: #FFAD00;
}
.green-bdr-btn .arrow-icon.green::after {
  background-position: -21px 2px;
}
.green-bdr-btn:hover {
  border-color: #60b741;
  color: #60b741;
  color: #60b741;
}
.green-bdr-btn:hover .arrow-icon.green::after {
  background-position: 0 2px;
}

.link-box {
  background: transparent;
  color: #212121;
}
.link-box:hover {
  color: #ffffff;
}

.learn-more .round-arrow-icon {
  background-position: 0 0;
}
.learn-more:hover {
  color: #FFAD00;
}
.learn-more:hover .round-arrow-icon {
  background-position: 0 0;
}

.bg-jacarta,
.bg-voilet,
.bg-white {
  background-color: #f6f6f6;
}

.lighter-theme-img {
  display: block !important;
}

.dark-theme-img {
  display: none !important;
}

.hero-section,
.second-level-section {
  padding: 180px 0 70px;
  display: grid;
  flex-wrap: wrap;
  min-height: calc(100vh - 120px);
  align-items: center;
}
.hero-section p span,
.hero-section strong,
.second-level-section p span,
.second-level-section strong {
  color: #ffffff;
}
.hero-section a,
.second-level-section a {
  text-decoration: none;
}
.hero-section::after,
.second-level-section::after {
  content: "";
  background: url(../images/client-logo-sprite.png) bottom center no-repeat;
  background-size: 100%;
  width: 100%;
  height: 92px;
  max-width: 1640px;
  margin: 78px auto 0;
  display: none;
}
.hero-section ul,
.second-level-section ul {
  margin: 30px 0 0;
  list-style: none;
}
.hero-section ul li,
.second-level-section ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 27px;
  line-height: 26px;
  flex-basis: 100%;
  color: #bdb7b7;
}
.hero-section ul li:before,
.second-level-section ul li:before {
  content: "";
  background: url(../images/checklist-icon.svg) no-repeat;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  border-radius: 50px;
}

.second-level-section {
  padding: 145px 0 80px;
  align-items: normal;
}
.second-level-section .has-free-trial {
  position: relative;
  display: block;
}
.second-level-section .has-free-trial::before {
  content: "";
  clear: both;
  display: block;
  background: url(../images/two-weeks-trial-img.png) top center no-repeat;
  background-size: 100%;
  position: absolute;
  top: -8px;
  right: -7px;
  width: 251px;
  height: 197px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.second-level-section .has-free-trial:hover::before {
  background-image: url(../images/two-weeks-trial-img-light.png);
}
.second-level-section .col-estimate-box {
  margin-top: 40px;
}
.second-level-section .col-estimate-box h3 {
  font-weight: 700;
  color: #f7f7f9;
}
.second-level-section .col-estimate-box .flex-3 {
  padding: 0 10px;
  max-width: 245px;
}
.second-level-section .col-estimate-box .flex-3:first-child {
  padding-left: 0;
}
.second-level-section .col-estimate-box .inner-content {
  background: #1b1a39;
  border: 1px solid #403f6f;
  padding: 15px 30px 15px 40px;
  height: 100%;
}
.second-level-section .col-estimate-box .inner-content p {
  margin-bottom: 0;
  margin-top: 5px;
  font-size: 18px;
}
.second-level-section .tick-icon-list li {
  color: #bdb7b7;
}

.faq-section .container {
  max-width: 1250px;
}
.faq-section .head-txt {
  max-width: 945px;
}
.faq-section .head-txt h2 {
  text-transform: capitalize;
}
.faq-section .faq-outer {
  max-width: 970px;
  margin: 0 auto;
}
.faq-section .faq-accordion-item-outer {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  margin: 0 0 20px;
  padding: 0 20px;
}
.faq-section .faq-accordion-item-outer.active {
  border-bottom: 2px solid #FFAD00;
}
.faq-section .faq-accordion-item-outer.active .faq-accordion-content {
  display: block;
}
.faq-section .faq-accordion-item-outer.active .open-icon {
  display: none;
}
.faq-section .faq-accordion-item-outer.active .faq-accordion-toggle::after {
  display: none;
}
.faq-section .faq-accordion-item-outer:nth-child(1) .faq-accordion-toggle {
  border-top: 0;
}
.faq-section .faq-accordion-toggle {
  display: block;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 20px 20px 20px 0;
  position: relative;
  font-weight: 600;
  color: #05164D;
  border-bottom: 1px solid #e4e4e4;
  margin: 0;
  font-size: 20px;
  line-height: 32px;
}
.faq-section .faq-accordion-toggle a {
  display: contents;
}
.faq-section .faq-accordion-toggle::before {
  content: "";
  clear: both;
  display: block;
  background: #FFAD00;
  height: 3px;
  width: 18px;
  border-radius: 3px;
  position: absolute;
  right: 0;
}
.faq-section .faq-accordion-toggle::after {
  content: "";
  clear: both;
  display: block;
  background: #FFAD00;
  height: 18px;
  width: 3px;
  border-radius: 3px;
  position: absolute;
  right: 7px;
}
.faq-section .faq-accordion-content {
  display: none;
  padding: 20px 0;
}
.faq-section .faq-accordion-content p {
  margin: 0 0 10px;
}
.faq-section .faq-accordion-content ul,
.faq-section .faq-accordion-content ol {
  margin: 20px 0;
  padding-left: 0;
}
.faq-section .faq-accordion-content ul li,
.faq-section .faq-accordion-content ol li {
  margin: 5px 0 0;
  position: relative;
  padding-left: 18px;
}
.faq-section .faq-accordion-content ul li:before,
.faq-section .faq-accordion-content ol li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FFAD00;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.faq-section .no-list-type ul {
  list-style-type: none;
  padding-left: 0;
}

.page-id-12791 .faq-section .head-txt h2 {
  text-transform: initial;
}

.breadcrumbs {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  z-index: 2;
  font-weight: 500;
  margin-bottom: 30px;
}
.breadcrumbs a {
  display: inline-block;
  position: relative;
  padding-right: 14px;
  color: #bababa;
  font-size: 14px;
  line-height: 22px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #ffffff;
}
.breadcrumbs a:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
  width: 6px;
  height: 10px;
  background: url(../images/breadcrumbs-arrow.png) top center no-repeat;
  background-size: 100%;
}
.breadcrumbs span {
  color: #bababa;
  position: relative;
  padding-right: 14px;
  display: inline-block;
}
.breadcrumbs span:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  right: 3px;
  width: 6px;
  height: 10px;
  background: url(../images/breadcrumbs-arrow.png) top center no-repeat;
  background-size: 100%;
}

.for-client-logo-box {
  margin-bottom: 30px;
}
.for-client-logo-box .logo-box {
  width: 109px;
  height: 57px;
  background: url(../images/home-partner-logo.png) 0 0 no-repeat;
  display: inline-block;
}
.for-client-logo-box .logo-box.logo2 {
  background-position: -111px 0;
}
.for-client-logo-box .logo-box.logo3 {
  background-position: -220px 0;
}
.for-client-logo-box .logo-box.logo4 {
  background-position: -329px 0;
}
.for-client-logo-box .logo-box.logo5 {
  background-position: -439px 0;
}
.for-client-logo-box .logo-box.logo6 {
  background-position: -549px 0;
}

.client-video-section iframe {
  vertical-align: bottom;
  background-color: #656565;
  width: 100%;
  border: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.client-video-section .client-videos {
  position: relative;
  margin: 0 10px;
  border: 1px solid #e2e9ef;
  background-color: #ffffff;
}
.client-video-section .client-description {
  padding: 30px 25px;
  min-height: 142px;
  text-align: center;
  background: #fff;
}
.client-video-section .client-description span {
  display: block;
  text-align: center;
}
.client-video-section .client-description .star-rating {
  width: 96px;
  height: 17px;
  background: url(../images/star-rating.png) no-repeat center;
  background-size: 100%;
  display: block;
  margin: 10px auto;
}
.client-video-section .client-description h3 {
  margin: 0 0 5px;
}
.client-video-section .client-description .detail {
  color: #666666;
  font-weight: 300;
}
.client-video-section .client-testimonial-slider {
  margin-top: 90px;
}
.client-video-section .glider-next,
.client-video-section .glider-prev {
  display: none;
}
.client-video-section .glider-dots {
  align-items: center;
  margin-top: 50px;
}
.client-video-section .glider-dots .glider-dot {
  width: 10px;
  height: 10px;
  background: #d9d9d9;
}
.client-video-section .glider-dots .glider-dot.active {
  width: 15px;
  height: 15px;
  background: #373658;
  margin: 0 1px;
}
.client-video-section .shadow-box {
  position: relative;
}
.client-video-section .shadow-box .client-video-box {
  position: relative;
}
.client-video-section .shadow-box .client-video-box .frame-mask {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.client-video-section .shadow-box .client-video-box .frame-mask img {
  display: block;
  height: 100%;
  width: 100%;
}
.client-video-section .shadow-box:hover::before {
  display: none;
}
.client-video-section .glider-track {
  padding-bottom: 16px;
}

.experts-talk-first-section {
  position: relative;
  z-index: 1;
}
.experts-talk-first-section:before, .experts-talk-first-section:after {
  content: "";
  position: absolute;
  z-index: -1;
}
.experts-talk-first-section:before {
  background: url(../images/intersect-left.png) 0 0 no-repeat;
  background-size: 100%;
  bottom: 0;
  left: 0;
  width: 116px;
  height: 163px;
}
.experts-talk-first-section:after {
  background: url(../images/intersect-right.png) 0 0 no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 304px;
  height: 475px;
}
.experts-talk-first-section .button-section {
  justify-content: center;
}
.experts-talk-first-section .button-section .btn-sec {
  justify-content: center;
}

.experts-talk-first-section.bg-blue-linear .primary_btn a {
  color: #ffffff;
}

.experts-talk-second-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.experts-talk-second-section .col-left,
.experts-talk-second-section .col-right {
  flex-basis: 48%;
}
.experts-talk-second-section .col-right .dis-flex {
  justify-content: flex-end;
}
.experts-talk-second-section .col-right .count-box-section {
  text-align: center;
}
.experts-talk-second-section .col-right .count-box-section .count-box-big {
  margin-top: 20px;
}
.experts-talk-second-section .col-right .count-box-section .count-box-small {
  font-size: 16px;
  line-height: 22px;
  margin-top: 10px;
  display: inline-block;
}
.experts-talk-second-section:before, .experts-talk-second-section:after {
  content: "";
  position: absolute;
  width: 381px;
  height: 301px;
  z-index: -1;
}
.experts-talk-second-section:before {
  background: url(../images/intersect-circ-left.png) 0 0 no-repeat;
  background-size: 100%;
  top: 0;
  left: -100px;
}
.experts-talk-second-section:after {
  background: url(../images/intersect-circ-right.png) 0 0 no-repeat;
  background-size: 100%;
  bottom: 0;
  right: -100px;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .safari_only,
    a,
    span.title,
    .checkout-submit {
      font-weight: 500 !important;
    }
  }
}
@-moz-document url-prefix() {
  a,
  span.title,
  .checkout-submit {
    font-weight: 500 !important;
  }
}
.customer-column-section .client-video-section iframe {
  position: initial !important;
}

.related-tags-section h3 {
  text-transform: uppercase;
}
.related-tags-section a {
  display: inline-block;
  background: rgba(232, 227, 227, 0.32);
  border: 1px solid #d1d1e1;
  border-radius: 40px;
  text-decoration: none;
  padding: 14px 25px;
  color: #212121;
  transition: all 0.3s ease-in-out;
  margin: 20px 20px 0 0;
}
.related-tags-section a:hover, .related-tags-section a.active {
  background: rgba(255, 173, 0, 0.15);
  color: #212121;
  border-color: #FFAD00;
}

.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 h6 {
  color: #FFAD00;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.top-section p {
  font-size: 16px;
  font-weight: 500;
}
.top-section.b-100 {
  max-width: 100%;
  margin: auto;
  padding: 0 0 100px;
  text-align: center;
}

.gradient-bg {
  background: linear-gradient(90deg, #05164d 0%, #0c33b3 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: 14px 16px;
  cursor: pointer;
  position: relative;
  background: #ffffff;
  color: #05164d;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
}
.btn-container .cta-button:after {
  content: "";
  background: url(../images/home-images/yellow-cta.svg) no-repeat;
  width: 26px;
  height: 26px;
  background-size: 100%;
  display: inline-block;
  margin-left: 10px;
}
.btn-container .cta-button:hover {
  background-color: #FFAD00;
  color: #05164d;
}
.btn-container .cta-button:hover:after {
  background: url(../images/home-images/blue-cta.svg) no-repeat;
}
.btn-container .cta-button.yellow {
  background: #FFAD00;
  color: #05164d;
}
.btn-container .cta-button.yellow:after {
  background: url(../images/home-images/white-cta.svg) no-repeat;
}
.btn-container .cta-button.yellow:hover {
  background: #05164d;
  color: #ffffff;
}
.btn-container .cta-button.yellow:hover:after {
  background: url(../images/home-images/yellow-cta.svg) no-repeat;
}

.explore-btn {
  position: relative;
  color: #05164d;
  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;
}

@media only screen and (max-width: 1600px) {
  .container {
    max-width: 1380px;
  }
  .related-tags-section .tags-outer {
    margin-top: 10px;
  }
  .related-tags-section a {
    margin: 20px 10px 0 0;
    padding: 12px 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1260px;
  }
  .client-video-section .client-testimonial-slider {
    margin-top: 70px;
  }
  .subhead-small {
    font-size: 18px;
  }
  .margin-t-50 {
    margin-top: 30px;
  }
  .faq-section .container {
    max-width: 1160px;
  }
  .for-client-logo-box i {
    width: 118px;
    height: 68px;
    background: url(../images/header-partner-logo-dark-md-.svg) 0 0 no-repeat;
    margin: 0 5px;
  }
  .for-client-logo-box i:nth-child(1) {
    background-position: 0 -85.5px;
  }
  .for-client-logo-box i:nth-child(2) {
    background-position: -127px -85.5px;
  }
  .for-client-logo-box i:nth-child(3) {
    background-position: -254px -85.5px;
  }
  .for-client-logo-box i:nth-child(4) {
    background-position: -381px -85.5px;
  }
  .breadcrumbs {
    margin-bottom: 20px;
  }
  h1 {
    font-size: 55px;
    line-height: 1.3;
  }
  h2 {
    font-size: 36px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 1320px) {
  .container,
  .hero-section::after,
  .second-level-section::after,
  .hero-img-section h1 {
    max-width: 1160px;
  }
  .client-logo-box-section h4 {
    font-size: 12px;
  }
  .experts-talk-first-section:after {
    width: 200px;
    height: 380px;
  }
  .experts-talk-second-section:before, .experts-talk-second-section:after {
    width: 220px;
    height: 180px;
  }
  .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-b-70 {
    padding-top: 60px;
  }
  .padding-t-70 {
    padding-bottom: 60px;
  }
  .margin-t-80 {
    margin-top: 60px;
  }
  .top-section.b-100 {
    padding: 0 0 60px;
  }
}
@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 15px;
  }
  .client-logo-box-section {
    text-align: center;
  }
  .client-logo-box-section .logo-heading {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  .client-logo-box-section .logo-box-outer {
    flex-basis: 100%;
    padding-left: 0;
    width: 100%;
  }
  .client-video-section .client-description .client-name {
    font-size: 20px;
  }
  .for-client-logo-box i {
    margin: 0;
  }
}
@media only screen and (max-width: 991px) {
  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;
  }
  .head-small {
    font-size: 18px;
    line-height: 20px;
  }
  .head-txt p {
    margin-top: 15px;
  }
  .head-txt small {
    text-transform: lowercase;
  }
  .hero-section::after,
  .second-level-section::after {
    margin-top: 10px;
  }
  .second-level-section .col-estimate-box .flex-3 {
    flex-basis: 33.33%;
  }
  .experts-talk-first-section .container .head-txt h2 {
    font-size: 26px;
    line-height: 40px;
  }
  .experts-talk-first-section .container .head-txt p {
    margin-top: 15px;
  }
  .count-box-section .count-box-big {
    font-size: 26px;
  }
  .experts-talk-second-section .container .head-txt h2 {
    font-size: 26px;
    line-height: 40px;
  }
  .experts-talk-second-section .container .d-flex {
    flex-direction: column;
  }
  .experts-talk-second-section .container .d-flex .col-left {
    text-align: center;
  }
  .experts-talk-second-section .container .d-flex .col-right .count-box-section {
    justify-content: space-between;
    margin-left: 0;
  }
  .experts-talk-second-section .container .d-flex .col-right .count-box-section .flex-3 {
    flex-basis: 30%;
  }
  .is-arrow {
    margin: 25px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-family: sans-serif;
    line-height: 24px;
  }
  ::placeholder,
  input,
  textarea {
    font-family: sans-serif;
  }
  .subhead-small {
    font-size: 14px;
  }
  .tick-icon-list li {
    margin: 0 0 5px;
    flex-basis: 100%;
    line-height: 24px;
  }
  .tick-icon-list li::before {
    top: 8px;
  }
  .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: 40px;
    line-height: 50px;
  }
  h2 {
    font-size: 28px;
    line-height: 37px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 15px;
  }
  .flex-3 {
    flex-basis: 100%;
  }
  .flex-4 {
    flex-basis: 100%;
  }
  .flex-5 {
    flex-basis: 100%;
  }
  .font-30 {
    font-size: 18px;
    line-height: 26px;
  }
  .green-btn {
    padding: 15px 44px 15px 24px;
    font-size: 16px;
  }
  .head-txt p {
    font-size: 14px;
    line-height: 23px;
  }
  .breadcrumbs {
    line-height: 18px;
  }
  .dot-icon.dot-md, .dot-icon.dot-sm {
    width: 8px;
    height: 8px;
  }
  .dot-icon.dot-md::before, .dot-icon.dot-sm::before {
    padding: 3px;
    top: -4px;
    left: -4px;
  }
  .client-logo-box-section {
    display: none;
  }
  .for-client-logo-box {
    text-align: center;
  }
  .for-client-logo-box i {
    margin: 0 4px;
  }
  .form-link-outer {
    font-size: 14px;
    line-height: 20px;
  }
  .form-link-outer .form-link {
    font-size: 14px;
    line-height: 20px;
  }
  .sub-head {
    font-size: 20px;
    line-height: 28px;
  }
  .hero-section,
  .second-level-section {
    padding-top: 100px;
    min-height: auto;
  }
  .hero-section::after,
  .second-level-section::after {
    display: none !important;
  }
  .experts-talk-first-section:after {
    display: none;
  }
  .experts-talk-first-section:before {
    width: 50px;
    height: 70px;
  }
  .experts-talk-second-section .container .head-txt h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .experts-talk-second-section:before, .experts-talk-second-section:after {
    width: 120px;
    height: 110px;
  }
  .client-video-section .client-testimonial-slider {
    margin-top: 40px;
    padding: 0 10px;
  }
  .client-video-section iframe {
    height: 240px;
  }
  .client-video-section .glider-dots {
    margin-top: 40px;
  }
  .client-video-section .client-videos {
    margin: 0;
  }
  .second-level-section {
    padding-bottom: 50px;
  }
  .second-level-section .has-free-trial::before {
    top: 0;
    right: -5px;
    width: 140px;
    height: 110px;
  }
  .second-level-section .col-estimate-box {
    margin-top: 10px;
    justify-content: center;
  }
  .second-level-section .col-estimate-box .inner-content {
    text-align: center;
  }
  .second-level-section .col-estimate-box .flex-3 {
    flex-basis: 50%;
    margin-top: 10px;
  }
  .second-level-section .tick-icon-list ul {
    margin: 20px 0 0;
  }
  .second-level-section .tick-icon-list li::before {
    background-position: 2px 3px;
  }
  .second-level-section ul li {
    line-height: 24px;
  }
  .second-level-section .margin-t-70 {
    text-align: center;
  }
  .faq-section .faq-accordion-content p {
    font-size: 14px;
    margin-top: 10px;
  }
  .faq-section .faq-accordion-content ul li:before {
    top: 7px;
  }
  .faq-section .faq-accordion-content ol li:before {
    top: 7px;
  }
  .faq-section .faq-accordion-toggle {
    font-size: 18px;
    line-height: 28px;
    padding: 15px 30px 15px 0;
  }
  .faq-section .faq-accordion-toggle::before {
    height: 2px;
    width: 12px;
  }
  .faq-section .faq-accordion-toggle::after {
    height: 12px;
    width: 2px;
    right: 5px;
  }
  .related-tags-section {
    text-align: center;
  }
  .related-tags-section a {
    margin: 8px 5px 0 0;
    padding: 5px 15px;
  }
  .for-client-logo-box {
    margin-bottom: 20px;
  }
  .for-client-logo-box .logo-box {
    margin: 0 0 10px;
  }
  .for-client-logo-box .logo-box.logo3 {
    display: none;
  }
  .is-arrow {
    margin: 20px 0 0;
    font-size: 16px;
  }
  .top-section p {
    font-size: 16px;
  }
  .top-section.b-100 {
    padding: 0 0 40px;
  }
  .btn-container {
    margin-top: 20px;
  }
  .btn-container .cta-button {
    padding: 12px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
  }
}
body.page-template-template-testimonials .client-video-section iframe,
.keka-iframe iframe {
  position: initial !important;
  height: 260px;
}

.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: #fff;
  border-radius: 25px;
  padding: 36px 70px;
  text-align: center;
  position: relative;
}
.popup-section .popup-wrapper .popWrap .popup-content h2 {
  color: #ffad00;
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 5px;
  line-height: 40px;
}
.popup-section .popup-wrapper .popWrap .popup-content h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #05164d;
}
.popup-section .popup-wrapper .popWrap .popup-content p {
  color: #666;
}
.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 #05164d;
  margin: 15px auto 0;
  padding: 15px 20px;
  font-weight: 500;
  color: #05164d;
  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: #ffad00;
  border-color: #ffad00;
}
.popup-section .popup-wrapper .popWrap .popup-content .closeicon {
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 10px;
  background: 0 0;
}
.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;
  }
}
.back-to-top-btn {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  border: 1px solid #D4D4D8;
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: 45px;
  gap: 5px;
  height: 73px;
  align-items: center;
  border-radius: 100px;
}
.back-to-top-btn .arrow {
  background-image: url(../images/index-v10/top-icon-grey.svg);
  width: 12px;
  display: block;
  background-repeat: no-repeat;
  height: 25px;
}
.back-to-top-btn .text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #9F9FA9;
}
.back-to-top-btn:hover {
  background-color: #1D5BC4;
  border-color: #1D5BC4;
}
.back-to-top-btn:hover .arrow {
  background-image: url(../images/index-v10/top-icon-white.svg);
}
.back-to-top-btn:hover .text {
  color: #ffffff;
}

.contact-us-section {
  background: linear-gradient(to right, #F0F0F3 39%, #fff 30%) !important;
}

@media screen and (max-width: 992px) {
  .contact-us-section {
    background: linear-gradient(to bottom, #F0F0F3 39%, #fff 30%) !important;
  }
}
.contact-us-section {
  position: relative;
  background: linear-gradient(to right, #F0F0F3 39%, #fff 30%);
}
.contact-us-section .left-box {
  flex-basis: 35%;
  position: relative;
  z-index: 1;
}
.contact-us-section .left-box .soc-box {
  margin: 20px 0 0;
  color: rgba(5, 22, 77, 0.8);
  font-size: 14px;
  font-weight: 500;
}
.contact-us-section .left-box .soc-box a {
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
  color: rgba(5, 22, 77, 0.8);
  line-height: initial;
}
.contact-us-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);
}
.contact-us-section .left-box .soc-box a:hover {
  color: #05164d;
}
.contact-us-section .left-box .soc-box a:first-child {
  padding: 0;
}
.contact-us-section .left-box .soc-box a:first-child:before {
  display: none;
}
.contact-us-section .left-box .soc-box a i {
  margin-right: 10px;
}
.contact-us-section .left-box .soc-box a i img {
  vertical-align: middle;
}
.contact-us-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);
}
.contact-us-section .left-box .soc-box a span {
  position: relative;
}
.contact-us-section .left-box .soc-box a span:after {
  content: "";
  width: 100%;
  height: 2px;
  background: url(../images/soc-border.svg) 0 0 no-repeat;
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 1 !important;
}
.contact-us-section .left-box .award-box {
  width: 100%;
  padding: 30px 0 0;
}
.contact-us-section .left-box .award-box p {
  color: #1C2024;
  font-weight: 500;
  font-size: 20px;
}
.contact-us-section .left-box .award-box p strong {
  font-weight: 700;
}
.contact-us-section .left-box .award-box p a {
  color: #05164D;
  text-decoration: underline;
}
.contact-us-section .left-box .award-box .row-box .col-box {
  margin: 30px 0 0;
  align-items: self-start;
}
.contact-us-section .left-box .award-box .row-box .col-box .icon {
  flex-basis: 10%;
}
.contact-us-section .left-box .award-box .row-box .col-box .desp {
  flex-basis: 90%;
  padding-left: 0;
}
.contact-us-section .left-box .award-box .row-box .col-box .desp h4 {
  color: #6f6f6f;
  font-weight: 500;
}
.contact-us-section .left-box .award-box .row-box .col-box .desp p {
  font-size: 14px;
  margin: 5px 0 0;
  line-height: 24px;
  color: #4B5563;
  font-weight: 400;
}
.contact-us-section .left-box .award-box .client-stack {
  margin: 30px 0 0;
}
.contact-us-section .left-box .award-box .client-stack ul {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.contact-us-section .right-box {
  width: 58%;
  background: #ffffff;
  padding: 0;
}
.contact-us-section .right-box h2 {
  margin: 0 0 10px;
}
.contact-us-section .right-box .top-section {
  margin: 0 0 50px;
}
.contact-us-section .form-text-cont {
  flex-basis: 50%;
  margin-bottom: 30px;
  position: relative;
}
.contact-us-section .form-text-cont:nth-child(2n-1) {
  padding-right: 20px;
}
.contact-us-section .form-text-cont.verror label {
  color: #dc0019;
}
.contact-us-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: #6B7280;
}
.contact-us-section .user-input {
  position: relative;
}
.contact-us-section .user-input label {
  position: absolute;
  top: -15px;
  left: 8px;
  font-size: 13px;
  background: #fff;
  padding: 0 8px;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 500;
}
.contact-us-section .user-input:focus-within label {
  color: rgb(51, 51, 51);
}
.contact-us-section .user-input:focus-within .input-field {
  border-color: rgb(5, 22, 77);
}
.contact-us-section .form-control small,
.contact-us-section .user-input small {
  display: none;
  font-size: 13px;
  margin-top: 5px;
}
.contact-us-section .width-full .user-input {
  border: 1.5px solid #d4e0ed;
  padding: 20px 15px;
  background: transparent;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  line-height: 25px;
  height: 180px;
  margin-bottom: 0;
  padding-right: 50px;
}
.contact-us-section .width-full .user-input small {
  display: block;
  opacity: 0;
}
.contact-us-section .width-full .user-input.form-control.verror {
  border-color: red;
}
.contact-us-section .width-full .user-input.success::after {
  top: 27px;
}
.contact-us-section .width-full.verror .user-input {
  border-color: #dc0019 !important;
}
.contact-us-section .comment-input {
  height: 70px;
  resize: none;
  background: none;
  outline: 0;
  border: none;
  overflow-y: auto;
  padding: 0;
}
.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 .btn-container {
  margin-top: 0;
}
.contact-us-section .btn-container .cta-button {
  background: #ffad00 url(../images/home-images/white-cta.svg) no-repeat right 15px center;
  border: none;
  padding: 16px 50px 16px 20px;
}
.contact-us-section .btn-container .cta-button:hover {
  background: #05164d url(../images/home-images/yellow-cta.svg) no-repeat right 15px center;
  color: #ffffff;
}
.contact-us-section .arrow-wrap {
  right: 50px;
  top: 9px;
}
.contact-us-section .user-input.checkout {
  text-align: right;
}
.contact-us-section .user-input.success {
  position: relative;
}
.contact-us-section .user-input.success::after {
  content: "";
  background: url(../images/success-icon.png) top center no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  z-index: 1;
}
.contact-us-section .error {
  color: #dc0019 !important;
  opacity: 0.9;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 13px;
}
.contact-us-section .form-text-cont.width-full {
  flex-basis: 100%;
  padding-right: 0;
}
.contact-us-section #drop-area {
  border: none;
  margin-top: 2px;
  display: inline-block;
  position: relative;
  bottom: 0;
  padding: 0;
}
.contact-us-section #drop-area .button {
  background: rgba(217, 217, 217, 0.2);
  color: rgb(65, 64, 64);
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #d1d1e1;
  font-size: 12px;
  border-radius: 5px;
  font-weight: 500;
}
.contact-us-section #drop-area .button:hover {
  background: rgba(217, 217, 217, 0.8);
  opacity: 1;
}
.contact-us-section #drop-area .button:focus {
  background: rgba(76, 76, 76, 0.7);
  color: #ffffff;
}
.contact-us-section #gallery {
  margin-bottom: 8px;
}
.contact-us-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;
}
.contact-us-section #gallery div button,
.contact-us-section #gallery div a {
  text-decoration: none;
  background: #FFAD00;
  padding: 4px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  right: 0;
  cursor: pointer;
  border: 0;
}
.contact-us-section #gallery div button:focus,
.contact-us-section #gallery div a:focus {
  background: #f30909;
}
.contact-us-section #file-type-error {
  font-size: 13px;
  color: #dc0019;
  margin-bottom: 10px;
}
.contact-us-section .loader {
  border: 5px solid #9f9f9f;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  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;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-us-section .gal-loader {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  display: none;
}
.contact-us-section .gal-loader.active {
  background: rgba(0, 0, 0, 0.1);
}
.contact-us-section .gal-loader.active .loader {
  display: block;
}
.contact-us-section .gal-loader.show-me {
  display: block;
  min-height: 100px;
}
.contact-us-section .autocomplete-items {
  display: none;
}
.contact-us-section .autocomplete-items.has-data {
  display: block;
  height: 170px;
  overflow-y: auto;
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0px 6px 9px rgba(1, 0, 12, 0.43);
  background: #1d1c39;
  border-radius: 5px;
  z-index: 2;
}
.contact-us-section .autocomplete-items.has-data div {
  color: #fff;
  border-bottom: 1px solid #05142b;
  background-color: #1d1c39;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  padding: 15px 20px;
}
.contact-us-section .autocomplete-items.has-data div.autocomplete-active, .contact-us-section .autocomplete-items.has-data div:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.contact-us-section .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-us-section .form-group ::placeholder {
  opacity: 0.5;
}
.contact-us-section .quizQ {
  background: url(../images/line-image.png) 5px center no-repeat;
  border: 1px dashed #e0e0e0;
  position: relative;
  height: 50px;
  line-height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.contact-us-section .quizQ span {
  font-size: 20px;
  color: rgb(65, 65, 65);
  font-weight: 600;
  letter-spacing: 3px;
}
.contact-us-section .refreshbtn {
  background: url(../images/home-images/refresh-button.svg) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  margin-left: 35px;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer;
}
.contact-us-section .refreshbtn:active {
  transform: rotate(360deg);
}
.contact-us-section .equal {
  margin: 0 18px;
  font-size: 25px;
}
.contact-us-section .quizAns {
  position: relative;
}
.contact-us-section .quizAns input {
  border: 1px solid rgb(133, 129, 129);
  border-radius: 8px;
  height: 50px;
  max-width: 60px;
  text-align: center;
  padding: 10px;
  color: rgb(65, 65, 65);
  font-size: 20px;
}
.contact-us-section .quizAns .error {
  margin-left: 10px;
  color: #dc0019;
  font-size: 13px;
}
.contact-us-section .verror small,
.contact-us-section .verror label {
  color: #dc0019 !important;
  display: block;
}
.contact-us-section .verror .input-field,
.contact-us-section .verror .nice-select {
  border-color: #dc0019 !important;
}
.contact-us-section .qz-captcha {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact-us-section .qz-captcha .qz-wrap {
  display: flex;
  align-items: center;
}
.contact-us-section .qz-captcha input[type=number] {
  color: #414141;
}

@media screen and (min-width: 2500px) {
  .contact-us-section .left-box .award-logo .logo-box img {
    width: 150px;
  }
}
@media only screen and (max-width: 1680px) {
  .contact-us-section .left-box p {
    margin: 0 0 15px;
  }
  .contact-us-section .left-box .side-dash1:after {
    top: 35px;
  }
}
@media only screen and (max-width: 1366px) {
  .contact-us-section .qz-captcha {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-us-section {
    background: linear-gradient(to right, #fff9eb 38%, #fff 30%);
  }
  .contact-us-section .quizQ {
    padding: 0 15px;
  }
  .contact-us-section .equal {
    margin: 0 10px;
  }
  .contact-us-section .right-box {
    width: 60%;
  }
  .contact-us-section .left-box {
    width: 35%;
  }
}
@media only screen and (max-width: 991px) {
  .contact-us-section {
    background: linear-gradient(to bottom, #fff9eb 45%, #fff 30%);
  }
  .contact-us-section .left-box {
    flex-basis: 100%;
  }
  .contact-us-section .right-box {
    width: 100%;
    margin-top: 70px;
    padding: 50px 20px 0;
  }
  .contact-us-section .qz-captcha {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us-section {
    background: linear-gradient(to bottom, #fff9eb 36%, #fff 30%);
  }
  .contact-us-section .left-box .soc-box {
    margin: 0;
  }
  .contact-us-section .left-box .award-box p {
    font-size: 15px;
  }
  .contact-us-section .left-box .award-box .row-box .col-box {
    justify-content: space-between;
    margin: 20px 0 0;
  }
  .contact-us-section .left-box .award-box .row-box .col-box .icon {
    flex-basis: 13%;
  }
  .contact-us-section .left-box .award-box .row-box .col-box .desp {
    flex-basis: 80%;
  }
  .contact-us-section .left-box .award-box .row-box .col-box .desp h4 {
    font-size: 16px;
  }
  .contact-us-section .left-box .award-box .row-box .col-box .desp p {
    margin: 4px 0 0;
  }
  .contact-us-section .form-group {
    margin-bottom: 0;
  }
  .contact-us-section .right-box {
    margin-top: 60px;
    padding: 40px 0 0;
  }
  .contact-us-section .right-box .top-section {
    text-align: center;
  }
  .contact-us-section .form-text-cont {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  .contact-us-section .form-text-cont:nth-child(2n-1) {
    padding-right: 0;
  }
  .contact-us-section .btn-container {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
  .contact-us-section .input-field {
    height: 50px;
    font-size: 14px;
  }
  .contact-us-section .form-control small,
  .contact-us-section .user-input small {
    display: none;
    font-size: 13px;
    margin-top: 5px;
  }
  .contact-us-section .width-full .user-input {
    padding: 15px 20px;
    font-size: 14px;
    height: 180px;
    margin-bottom: 0;
    padding-right: 50px;
  }
  .contact-us-section .width-full .user-input small {
    display: block;
    opacity: 0;
  }
  .contact-us-section .width-full .user-input.form-control.verror {
    border-color: red;
  }
  .contact-us-section .width-full .user-input.success::after {
    top: 27px;
  }
  .contact-us-section .width-full.verror .user-input {
    border-color: #dc0019 !important;
  }
  .contact-us-section .comment-input {
    height: 70px;
    resize: none;
    background: none;
    outline: 0;
    border: none;
    overflow-y: auto;
    padding: 0;
  }
  .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 {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
  }
  .contact-us-section .user-input.checkout {
    text-align: center;
  }
  .contact-us-section .user-input.success {
    position: relative;
  }
  .contact-us-section .user-input.success::after {
    content: "";
    background: url(../images/success-icon.png) top center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    z-index: 1;
  }
  .contact-us-section .error {
    color: #dc0019 !important;
    opacity: 0.9;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 13px;
    display: block;
  }
  .contact-us-section .form-text-cont.width-full {
    flex-basis: 100%;
    padding-right: 0;
  }
  .contact-us-section #drop-area {
    border: none;
    margin-top: 2px;
    display: inline-block;
    position: relative;
    bottom: 0;
    padding: 0;
  }
  .contact-us-section #drop-area .button {
    background: rgba(217, 217, 217, 0.32);
    color: #9b9b9b;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #d1d1e1;
    font-size: 14px;
    border-radius: 5px;
    line-height: 1.4;
    opacity: 0.5;
  }
  .contact-us-section #gallery {
    margin-bottom: 15px;
  }
  .contact-us-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;
  }
  .contact-us-section #gallery div button,
  .contact-us-section #gallery div a {
    text-decoration: none;
    background: #FFAD00;
    padding: 4px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    right: 0;
    cursor: pointer;
    border: 0;
  }
  .contact-us-section #gallery div button:focus,
  .contact-us-section #gallery div a:focus {
    background: #f30909;
  }
  .contact-us-section #file-type-error {
    font-size: 13px;
    color: #dc0019;
    margin-bottom: 10px;
  }
  .contact-us-section .loader {
    border: 5px solid #9f9f9f;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    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;
  }
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .contact-us-section .gal-loader {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    display: none;
  }
  .contact-us-section .gal-loader.active {
    background: rgba(0, 0, 0, 0.1);
  }
  .contact-us-section .gal-loader.active .loader {
    display: block;
  }
  .contact-us-section .gal-loader.show-me {
    display: block;
    min-height: 100px;
  }
  .contact-us-section .autocomplete-items {
    display: none;
  }
  .contact-us-section .autocomplete-items.has-data {
    display: block;
    height: 170px;
    overflow-y: auto;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    z-index: 1;
    box-shadow: 0px 6px 9px rgba(1, 0, 12, 0.43);
    background: #1d1c39;
    border-radius: 5px;
    z-index: 2;
  }
  .contact-us-section .autocomplete-items.has-data div {
    color: #fff;
    border-bottom: 1px solid #05142b;
    background-color: #1d1c39;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    padding: 15px 20px;
  }
  .contact-us-section .autocomplete-items.has-data div.autocomplete-active, .contact-us-section .autocomplete-items.has-data div:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .contact-us-section .qz-captcha .qz-wrap {
    flex-basis: 100%;
    align-items: flex-start;
  }
  .contact-us-section .qz-captcha .checkout {
    flex-basis: 100%;
    margin: 20px 0 0;
  }
  .contact-us-section .equal {
    margin: 15px 20px 0;
  }
  .contact-us-section .quizQ {
    font-size: 16px;
    padding: 0 15px;
  }
  .contact-us-section .refreshbtn {
    margin-left: 20px;
  }
  .contact-us-section .btn-sec .btn {
    font-size: 16px;
  }
  .contact-us-section .btn-sec .btn .checkout-submit {
    font-size: 16px;
    padding: 10px 60px 10px 25px;
  }
  .contact-us-section .btn-sec .btn::before {
    width: 41px;
    height: 41px;
    top: 3px;
    right: 4px;
  }
}
.btn-primary-two {
  border: 1px solid #9F9FA9;
  border-radius: 100px;
  width: fit-content;
  overflow: hidden;
}
.btn-primary-two input {
  background: rgba(255, 174, 0, 0) url(../images/index-v10/grey-right.svg) no-repeat right 15% center;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #60646C;
  cursor: pointer;
  padding: 11.5px 41px 11.5px 15px;
  border-radius: 50px;
  text-decoration: none;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  gap: 10px;
  line-height: 100%;
  transition: background 0.3s ease;
  position: relative !important;
  transition: 0.4s;
  border: 1px solid #CDCED6;
}
.btn-primary-two:hover input {
  border-color: #1D5BC4;
  background: #1D5BC4;
  color: #ffffff;
  background: #1D5BC4 url(../images/index-v10/white-right.svg) no-repeat right 15% center;
}

@media screen and (min-width: 1992px) {
  .contact-us-section {
    background: linear-gradient(to right, #F0F0F3 42%, #fff 30%) !important;
  }
}
.footer {
  width: 100%;
  background: #1C2024;
  border: 1px solid;
  border-image-source: linear-gradient(105.4deg, rgba(5, 22, 77, 0.09) 7.94%, rgba(5, 22, 77, 0.1) 99.22%);
  padding: 50px 0 0;
}
.footer .footer-top .cards {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.footer .footer-top .cards .card {
  height: 115px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1294117647);
  border-radius: 10px;
  width: calc(25% - 12px);
}
.footer .footer-top .cards .card .normal {
  padding: 15px 12px;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-top .cards .card .normal .top-part-inner {
  display: flex;
  align-items: center;
}
.footer .footer-top .cards .card .normal .top-part-inner .img-part {
  width: 21px;
  height: 21px;
  margin-right: 10px;
}
.footer .footer-top .cards .card .normal .top-part-inner .img-part img {
  border-radius: 500px;
}
.footer .footer-top .cards .card .normal .top-part-inner .country h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.footer .footer-top .cards .card .normal .address {
  display: block;
  width: 100%;
  padding-top: 10px;
}
.footer .footer-top .cards .card .normal .address p {
  font-size: 16px;
  font-weight: 400;
  color: #D1D5DC;
}
.footer .footer-top .cards .card .hover {
  display: none;
  padding: 27px 12px;
}
.footer .footer-top .cards .card .hover .img-part {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
.footer .footer-top .cards .card .hover .img-part img {
  border-radius: 500px;
}
.footer .footer-top .cards .card .hover .text-part h4 {
  font-size: 18px;
  color: #fff;
  font-size: 500;
}
.footer .footer-top .cards .card .hover .text-part a {
  font-size: 16px;
  font-weight: 500;
  color: #FFAD00;
}
.footer .footer-top .cards .card::before {
  background: url(../images/index-v10/footer-card.png);
  bottom: 0;
  right: 0;
  content: "";
  background-size: cover;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.footer .footer-top .cards .card:hover::before {
  display: block;
}
.footer .footer-top .cards .card.has-hover:hover .normal {
  display: none;
}
.footer .footer-top .cards .card.has-hover:hover .hover {
  display: flex;
  position: relative;
  z-index: 9;
}
.footer .footer-top .cards .card.has-hover:hover {
  border: 1px solid rgba(255, 173, 0, 0.5019607843);
}
.footer .footer-middle {
  padding: 40px 0 25px;
  justify-content: space-between;
  align-items: baseline;
}
.footer .footer-middle .flex-5 {
  flex-basis: auto;
  padding-right: 60px;
}
.footer .footer-middle .flex-5:last-child {
  padding-right: 0;
}
.footer .footer-middle h4 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}
.footer .footer-middle ul li {
  margin: 10px 0 0;
  color: #b9b9b9;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.footer .footer-middle ul li a {
  color: #99A1AF;
}
.footer .footer-middle ul li a:hover {
  color: #fff;
}
.footer .footer-bottom {
  padding: 40px 0 0;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  justify-content: space-between;
}
.footer .footer-bottom .flex-4 {
  flex-basis: 15%;
}
.footer .footer-bottom h3 {
  font-size: 15px;
  line-height: 24px;
  color: #b9b9b9;
  font-weight: 400;
  margin: 0 0 22px;
}
.footer .footer-bottom .logo-box {
  flex-basis: 31%;
}
.footer .footer-bottom .logo-box .dis-flex a {
  margin-right: 30px;
}
.footer .footer-bottom .logo-box .dis-flex a:hover {
  opacity: 0.8;
}
.footer .footer-bottom .social-box .dis-flex a {
  margin-right: 10px;
}
.footer .footer-bottom .social-box .dis-flex a:hover {
  opacity: 0.6;
}
.footer .footer-bottom .footer-rating {
  color: #b9b9b9;
  flex-basis: 35%;
}
.footer .footer-bottom .footer-rating .star-outer a {
  font-size: 14px;
  color: #b9b9b9;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer .footer-bottom .footer-rating a:hover {
  color: #ffffff;
  opacity: 0.8;
}
.footer .footer-bottom .footer-rating .star-icon {
  background: url(../images/home-images/footer-icons.png) 0 0 no-repeat;
  width: 18px;
  height: 15px;
  display: inline-block;
}
.footer .footer-bottom .footer-rating .client-outer {
  margin-top: 12px;
}
.footer .footer-bottom .footer-rating .rate-us {
  border: 1px solid #ffb81d;
  border-radius: 6px;
  padding: 5px 18px;
  display: inline-block;
  color: #ffb81d;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}
.footer .footer-copyright {
  background: #000000;
  margin: 40px 0 0;
  color: #8d8d8d;
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  line-height: 1;
}

/*Media Query Start From Here*/
@media (max-width: 1440px) {
  .footer .footer-top .count-sec .count-col {
    margin-right: 25px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 30px;
  }
  .footer .footer-bottom .logo-box .dis-flex a {
    margin-right: 15px;
  }
  .footer .footer-bottom .social-box .dis-flex a {
    margin-right: 7px;
  }
  .footer .footer-bottom h3 {
    margin: 0 0 15px;
  }
}
@media (max-width: 1290px) {
  .footer .footer-top .count-sec .count-col p {
    font-size: 13px;
  }
  .footer .footer-middle ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .footer .footer-bottom h3 {
    font-size: 14px;
  }
  .footer .footer-bottom .flex-4 {
    flex-basis: 17%;
  }
  .footer .footer-bottom .footer-rating {
    flex-basis: 36%;
  }
  .footer .footer-bottom .footer-rating .client-outer {
    font-size: 14px;
  }
  .footer .footer-bottom .footer-rating .star-outer {
    font-size: 14px;
  }
}
@media (max-width: 1160px) {
  .footer .footer-top .count-sec .count-col p {
    font-size: 13px;
  }
  .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-top .footer-middle .flex-5 {
    padding-right: 20px;
  }
  .footer .footer-top .footer-bottom {
    gap: 20px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 20px;
  }
  .footer .footer-middle ul li {
    font-size: 13px;
  }
}
@media (max-width: 1160px) {
  .footer .footer-top .count-sec .count-col {
    line-height: 24px;
  }
  .footer .footer-top .count-sec .count-col p {
    font-size: 12px;
  }
}
@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 .count-sec .count-col {
    margin-right: 18px;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    margin: 20px 0 0;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 20%;
  }
  .footer .footer-bottom {
    gap: 0;
    justify-content: space-between;
  }
  .footer .footer-bottom .flex-4 {
    flex-basis: 100%;
    text-align: center;
  }
  .footer .footer-bottom .logo-box {
    flex-basis: 50%;
    text-align: left;
  }
  .footer .footer-bottom .logo-box .dis-flex {
    gap: 15px;
  }
  .footer .footer-bottom .social-box {
    flex-basis: 50%;
    text-align: center;
  }
  .footer .footer-bottom .social-box .dis-flex {
    justify-content: center;
  }
  .footer .footer-bottom .footer-rating {
    flex-basis: 100%;
    text-align: center;
  }
  .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;
  }
  .footer .footer-bottom .copyright p {
    font-size: 13px;
    line-height: 22px;
  }
}
@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 .count-col p {
    font-size: 12px;
    line-height: 22px;
  }
  .footer .footer-top .count-sec .count-col h5 {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    padding: 0;
    margin: 0;
  }
  .footer .footer-middle {
    padding: 30px 0 10px;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 48%;
    padding: 0 0 20px;
  }
  .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-4 {
    flex-basis: 100%;
    text-align: center;
    margin: 10px 0 0;
  }
  .footer .footer-bottom .logo-box {
    flex-basis: 100%;
    text-align: center;
  }
  .footer .footer-bottom .logo-box .dis-flex {
    justify-content: center;
    gap: 8px;
  }
  .footer .footer-bottom .social-box {
    flex-basis: 100%;
    text-align: center;
    margin: 20px 0 0;
  }
  .footer .footer-bottom .footer-rating {
    margin: 20px 0 0;
  }
  .footer .footer-bottom h3 {
    font-weight: 500;
  }
}
/*Media Query Ends Here*/
@media screen and (max-width: 992px) {
  .footer .footer-top .cards .card {
    width: calc(50% - 15px);
  }
  .footer .footer-top .cards .card .footer .footer-top .cards {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 640px) {
  .footer .footer-top .cards .card {
    width: 100%;
  }
}
.testimonial-section-v9 {
  background-color: #F3F4F6;
  padding: 80px 20px;
  /* ===========================
     Video Popup Styles
  =========================== */
}
.testimonial-section-v9 .container {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-section-v9 .top-part {
  margin-bottom: 40px;
}
.testimonial-section-v9 .top-part h2 {
  font-size: clamp(30px, 3.7vw, 46px);
}
.testimonial-section-v9 .top-part span {
  color: #FFAD00;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
.testimonial-section-v9 .testimonial-card {
  display: flex;
  flex-direction: column;
  background: #E5E7EB;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}
@media (min-width: 768px) {
  .testimonial-section-v9 .testimonial-card {
    flex-direction: row;
  }
}
.testimonial-section-v9 .testimonial-card .card-image {
  position: relative;
  flex: 0 0 42%;
  clip-path: polygon(0 0, 100% 0%, 78% 100%, 0% 100%);
}
.testimonial-section-v9 .testimonial-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .testimonial-section-v9 .testimonial-card .card-image {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  }
}
.testimonial-section-v9 .testimonial-card .card-image .play-icon {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 173, 0, 0.5019607843);
  border: 1px solid #FFAD00;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-section-v9 .testimonial-card .card-image .play-icon .close {
  position: absolute;
  top: 5px;
  right: -30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: url(../images/index-v10/close-icon.png) no-repeat center;
  width: 25px;
  height: 25px;
}
.testimonial-section-v9 .testimonial-card .card-image .play-icon .play-btn {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #364153;
}
.testimonial-section-v9 .testimonial-card .card-image .play-icon .play-btn::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: 15px !important;
  vertical-align: middle;
  background: url(../icons/Play-icon.svg) no-repeat;
}
.testimonial-section-v9 .testimonial-card .card-content {
  flex: 1;
  padding: 40px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  padding-top: 116px;
  position: relative;
  padding-bottom: 70px;
}
.testimonial-section-v9 .testimonial-card .card-content .rating {
  border: 1px solid var(--gray-50, #F9FAFB);
  background-color: rgba(243, 244, 246, 0.5019607843);
  border-radius: 100px;
  margin-bottom: 15px;
  position: absolute;
  right: 30px;
  top: 30px;
  padding: 11px 15px;
  width: fit-content;
}
.testimonial-section-v9 .testimonial-card .card-content .rating ul {
  display: flex;
}
.testimonial-section-v9 .testimonial-card .card-content .rating ul li {
  display: flex;
}
.testimonial-section-v9 .testimonial-card .card-content > p {
  color: #364153;
  font-size: 22px;
  line-height: 150%;
  font-weight: 500;
  position: relative;
}
.testimonial-section-v9 .testimonial-card .card-content > p::after {
  content: "";
  background: url(../icons/white-quote.svg);
  width: 41px;
  height: 34px;
  position: absolute;
  left: 0;
  top: -40px;
  background-size: cover;
}
.testimonial-section-v9 .testimonial-card .card-content .quote {
  font-size: 22px;
  color: #05164d;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
}
.testimonial-section-v9 .testimonial-card .card-content .quote::before {
  content: '"';
  display: block;
  font-size: 60px;
  color: #ccd0d9;
  height: 30px;
}
.testimonial-section-v9 .testimonial-card .card-content .author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
}
.testimonial-section-v9 .testimonial-card .card-content .author-info img {
  height: 35px;
}
.testimonial-section-v9 .testimonial-card .card-content .author-info .details span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #101828;
}
.testimonial-section-v9 .testimonial-card .card-content .author-info .details p {
  font-size: 14px;
  color: #4A5565;
  font-weight: 400;
}
.testimonial-section-v9 .glider-dots {
  margin-top: 30px !important;
  display: flex;
  justify-content: center;
}
.testimonial-section-v9 .glider-dots button.glider-dot {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid transparent;
  opacity: 0.5;
  transition: transform 0.2s;
}
.testimonial-section-v9 .glider-dots button.glider-dot.active {
  border-color: #FFAD00;
  border: 2px solid #FFAD00;
  transform: scale(1.1);
  opacity: 1;
}
.testimonial-section-v9 .video-popup-v9 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.testimonial-section-v9 .video-popup-v9.active {
  display: flex;
}
.testimonial-section-v9 .video-popup-v9 .video-popup-inner {
  position: relative;
  width: 90%;
  max-width: 850px;
}
.testimonial-section-v9 .video-popup-v9 .video-popup-inner video {
  width: 100%;
  border-radius: 16px;
}
.testimonial-section-v9 .video-popup-v9 .video-close-btn {
  position: absolute;
  top: 0px;
  right: -40px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: url(../images/index-v10/close-icon.png) no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .testimonial-section-v9 .video-popup-v9 .video-popup-inner video {
    width: 70%;
    margin: 0 auto;
    display: flex;
  }
  .testimonial-section-v9 .video-popup-v9 .video-close-btn {
    right: 60px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 650px) {
  .testimonial-section-v9 .video-popup-v9 .video-close-btn {
    right: 20px;
  }
  .testimonial-section-v9 .testimonial-card .card-content {
    padding: 20px;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .testimonial-section-v9 .testimonial-card .card-content > p {
    font-size: 16px;
  }
}
.running-bar {
  background: linear-gradient(90deg, #011C71 0%, #0026A0 100%);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin-bottom: -7px;
}
.running-bar .awards-marquee-track {
  line-height: 1;
  padding: 22px 0;
}
.running-bar .awards-marquee-track .awards-marquee-inner {
  display: inline-flex;
  gap: 12px;
  padding: 0.5rem clamp(1.25rem, 5vw, 3.5rem);
  animation: marquee 40s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.running-bar .awards-marquee-track .awards-marquee-inner .award-tile span {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding-left: 16px;
  position: relative;
}
.running-bar .awards-marquee-track .awards-marquee-inner .award-tile span::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #F59E0B;
  border-radius: 50%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-section .testlider {
  width: 100%;
}
.testimonial-section .testlider .slide-item {
  display: flex;
}
.testimonial-section .testlider .glide__slides {
  white-space: normal !important;
}
.testimonial-section .testlider .test-row {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testimonial-section .testlider .test-row .cust-img-box {
  flex-basis: 40%;
}
.testimonial-section .testlider .test-row .cust-img-box img {
  width: 100%;
}
.testimonial-section .testlider .test-row .client-videos {
  flex-basis: 40%;
  position: relative;
}
.testimonial-section .testlider .test-row .client-videos .client-video-box {
  position: relative;
}
.testimonial-section .testlider .test-row .client-videos iframe {
  vertical-align: bottom;
  background-color: #656565;
  width: 100%;
  border: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask img {
  display: block;
  height: 100%;
  width: 100%;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playBtn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 9;
  height: 100%;
  cursor: pointer;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc::before {
  content: "";
  position: absolute;
  top: -11px;
  left: -10px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #FFAD00;
  opacity: 0.5;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc .playicon {
  width: 100%;
  height: 100%;
  background: url(../images/playicon.svg) center center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc:hover .playicon {
  top: 10px;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc:hover:before {
  width: 85px;
  height: 85px;
  left: -13px;
  top: -5px;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .content-box {
  flex-basis: 54%;
  position: relative;
}
.testimonial-section .testlider .test-row .content-box p {
  margin: 0 0 20px;
  line-height: 160%;
}
.testimonial-section .testlider .test-row .content-box h5 {
  margin: 30px 0 5px;
  color: #3f3f3f;
  font-weight: 600;
  font-size: 20px;
}
.testimonial-section .testlider .test-row .content-box span {
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin: 0 0 10px;
}
.testimonial-section .testlider .test-row .content-box .star-image {
  width: 96px;
  height: 17px;
  background: url(../images/star-image.png) center center no-repeat;
  background-size: 100%;
}
.testimonial-section .testlider .test-row .content-box::before {
  content: "";
  display: block;
  width: 115px;
  height: 100px;
  background: url(../images/dble-quote.png) center center no-repeat;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: -25px;
}
.testimonial-section .testlider .glide__bullets {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
  gap: 15px;
}
.testimonial-section .testlider .glide__bullet {
  position: relative;
  display: flex;
  flex-basis: 33.33%;
  padding: 20px;
  border: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(5, 22, 77, 0.04);
  background: #fcfcfc;
}
.testimonial-section .testlider .glide__bullet .btnsec {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
  position: relative;
}
.testimonial-section .testlider .glide__bullet .btnsec:after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  display: block;
  border-radius: 20px;
  background-color: #e8e6e6;
  transition: transform 5s;
}
.testimonial-section .testlider .glide__bullet .btnsec .btnimg {
  width: 69px;
}
.testimonial-section .testlider .glide__bullet .btnsec .btnimg img {
  width: 69px;
  height: 69px;
  border-radius: 100%;
}
.testimonial-section .testlider .glide__bullet .btnsec .btncont {
  margin-left: 15px;
  text-align: left;
}
.testimonial-section .testlider .glide__bullet .btnsec .btncont p {
  font-weight: 300 !important;
  color: #666;
}
.testimonial-section .testlider .glide__bullet .btnsec .btncont h3 {
  margin: 0;
}
.testimonial-section .testlider .glide__bullet:before {
  content: "";
  position: absolute;
  bottom: 21px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  display: block;
  border-radius: 20px;
  background: #e8e6e6;
  opacity: 0;
  transform: translateX(-100%);
  background-color: #FFAD00;
  transition: transform 5s;
  z-index: 9;
}
.testimonial-section .testlider .glide__bullet--active {
  background: #ffffff;
}
.testimonial-section .testlider .glide__bullet--active:before {
  opacity: 1;
  transform: translateX(0);
}
.testimonial-section .testlider .arw {
  width: 26px;
  height: 26px;
  background-size: 100%;
  background: url(../images/left-arw.png) no-repeat;
  position: absolute;
  bottom: 60px;
  left: -55px;
  font-size: 0;
  border: 0;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.testimonial-section .right {
  left: auto !important;
  right: -55px;
  transform: rotate(180deg);
}
.testimonial-section .popup-section .popup-wrapper .popup-content {
  max-width: 800px;
  width: 100%;
  padding: 0;
}
.testimonial-section .popup-section .popup-wrapper .popup-content iframe {
  width: 100%;
  height: 480px;
}
.testimonial-section .popup-section .popup-wrapper .popup-content .closeicon {
  cursor: pointer;
  position: absolute;
  right: -7px;
  top: -10px;
  background: #fff;
  width: 30px;
  height: 29px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1366px) {
  .testimonial-section .testlider .arw {
    left: -35px;
    background-size: 20px;
  }
  .testimonial-section .testlider .glide__bullets {
    gap: 12px;
  }
  .testimonial-section .testlider .glide__bullet {
    padding: 15px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btnimg {
    width: 50px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btnimg img {
    width: 50px;
    height: 50px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btncont {
    margin-left: 12px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btncont p {
    font-size: 14px;
  }
  .testimonial-section .testlider .glide__bullet:before {
    bottom: 16px;
  }
  .testimonial-section .right {
    right: -35px;
  }
}
@media only screen and (max-width: 1200px) {
  .testimonial-section .testlider .glide__bullets {
    margin: 30px 0 0;
    gap: 0;
  }
  .testimonial-section .testlider .glide__bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    flex-basis: auto;
    padding: 0;
    background: #e8e6e6;
    border-radius: 100%;
    cursor: pointer;
  }
  .testimonial-section .testlider .glide__bullet .btnsec {
    display: none;
  }
  .testimonial-section .testlider .glide__bullet:before {
    display: none;
  }
  .testimonial-section .testlider .glide__bullet--active {
    background: #FFAD00;
  }
  .testimonial-section .testlider .arw {
    display: none;
  }
  .testimonial-section .right {
    right: -20px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section .testlider .test-row .content-box:before {
    width: 95px;
    height: 100px;
    top: -28px;
    left: -15px;
  }
  .testimonial-section .popup-section .popup-wrapper .popup-content {
    max-width: 90%;
  }
  .testimonial-section .popup-section .popup-wrapper .popup-content iframe {
    width: 100%;
    height: 340px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section .testlider .test-row .cust-img-box {
    flex-basis: 100%;
  }
  .testimonial-section .testlider .test-row .client-videos {
    flex-basis: 100%;
  }
  .testimonial-section .testlider .test-row .content-box {
    flex-basis: 100%;
    margin: 20px 0 0;
    text-align: center;
  }
  .testimonial-section .testlider .test-row .content-box p {
    margin: 0 0 15px;
  }
  .testimonial-section .testlider .test-row .content-box h5 {
    margin: 20px 0 5px;
    font-size: 18px;
  }
  .testimonial-section .testlider .test-row .content-box span {
    font-size: 14px;
  }
  .testimonial-section .testlider .test-row .content-box .star-image {
    margin: 0 auto;
  }
  .testimonial-section .testlider .test-row .content-box::before {
    display: none;
  }
}
.glider {
  margin: 0 auto;
  position: relative;
  transform: translateZ(0);
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: hidden;
}
.glider::-webkit-scrollbar {
  opacity: 0;
  height: 0;
  display: none;
}

.glider-contain {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.glider-track {
  transform: translateZ(0);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 1;
}

.glider-dot {
  border: 0;
  padding: 0;
  user-select: none;
  outline: 0;
  display: block;
  cursor: pointer;
  color: #ccc;
  border-radius: 999px;
  background: transparent;
  width: 12px;
  height: 12px;
  margin: 7px;
}
.glider-dot:focus {
  background: #F76600;
}
.glider-dot:hover {
  background: #F76600;
}

.glider-prev,
.glider-next {
  border: 0;
  padding: 0;
  user-select: none;
  outline: 0;
  position: absolute;
  z-index: 2;
  font-size: 30px;
  text-decoration: none;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #212121;
  opacity: 1;
  line-height: 1;
  transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67), color 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  width: 65px;
  height: 65px;
}

.glider-next {
  right: 10px;
  background: url(../images/right-slide-btn.png) 0 0 no-repeat;
  background-size: 100%;
}

.glider-prev {
  background: url(../images/left-slide-btn.png) 0 0 no-repeat;
  background-size: 100%;
}

.glider.draggable {
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}
.glider.draggable .glider-slide img {
  user-select: none;
  pointer-events: none;
}

.glider.drag {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.glider-slide {
  user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
  min-width: 150px;
}
.glider-slide img {
  max-width: 100%;
}

.glider-next.disabled,
.glider-prev.disabled {
  opacity: 0.2;
  cursor: default;
}

.glider-hide {
  opacity: 0;
}

.glider-dots {
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

.glider-dot.active {
  background: #fff;
}

.day .glider-next {
  background-position: -53px 0;
}
.day .glider-prev {
  background-position: -53px 0;
}

@media (max-width: 36em) {
  .glider::-webkit-scrollbar {
    opacity: 1;
    -webkit-appearance: none;
    width: 7px;
    height: 3px;
  }
  .glider::-webkit-scrollbar-thumb {
    opacity: 1;
    border-radius: 99px;
    background-color: rgba(156, 156, 156, 0.25);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
  }
}
.insights {
  background: #ffffff;
}
.insights .insights__top-part {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 20px;
}
.insights .insights__top-part h2 {
  margin-bottom: 10px;
  line-height: 100%;
}
.insights .insights__top-part h2 em {
  color: #6AA0FF;
  font-style: normal;
}
.insights .insights__top-part p {
  margin-bottom: 0;
  font-weight: 500;
  color: #60646C;
}
.insights .insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* BUTTON */
.btn-outline {
  padding: 12px 17px;
  border-radius: 180px;
  border: 0.92px solid #D1D5DB;
  background-color: #F3F4F6;
  color: #4B5563;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
.btn-outline::after {
  content: "";
  background: url(../images/home-images/btn-icon-grey.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: 100%;
  display: inline-block;
  transition: 0.2s;
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  .btn-outline {
    font-size: 12px;
    padding: 8px 15px;
  }
  .btn-outline::after {
    width: 16px;
    height: 16px;
    background-size: 100%;
    margin-left: 8px;
  }
  .insights .insights__top-part {
    margin-bottom: 30px;
  }
}
.btn-outline:hover {
  background: #f8fafc;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  transition: 0.35s ease;
  border: 1px solid transparent;
  box-shadow: 0px 2px 14px 3px rgba(0, 0, 0, 0.0588235294);
  cursor: pointer;
}
.blog-card__image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.blog-card__content {
  margin-top: 15px;
}
.blog-card span {
  font-size: 10px;
  font-weight: 600;
  color: #80838D;
  text-transform: uppercase;
  line-height: 140%;
}
.blog-card h3 {
  font-size: 22px;
  margin: 5px 0 30px;
  font-weight: 600;
  color: #1C2024;
  line-height: 140%;
}
.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.blog-card .author {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog-card .author img {
  width: 36px;
  border: 1px solid #E5E7EB;
  height: 36px;
  border-radius: 50%;
}
.blog-card .author p {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  margin: 0;
  line-height: 1;
}
.blog-card .author span {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
}
.blog-card a {
  color: #1C2024;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.blog-card a.read-more {
  color: #1D5BC4;
}
.blog-card a.read-more::after {
  content: "";
  background: url("../images/index-v10/right-blue.svg") no-repeat;
  width: 16px;
  height: 16px;
  background-size: 100%;
  display: inline-block;
  transition: 0.2s;
  margin-left: 5px;
}
.blog-card:hover {
  border: 1px solid #1D5BC4;
  box-shadow: 0px 0px 20px 5px rgba(29, 91, 196, 0.1490196078);
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
  .insights {
    padding: 80px 0;
  }
  .insights .insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insights .insights__top-part {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .insights .insights__top-part h2 {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .insights {
    padding: 50px 0;
  }
  .insights__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .insights .insights__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.faq-section-v10 {
  background: #F9FAFB;
  overflow: hidden;
  position: relative;
  z-index: 1;
  /* LEFT */
  /* RIGHT */
}
.faq-section-v10::after {
  position: absolute;
  content: "";
  bottom: 0%;
  left: 0;
  width: 422px;
  height: 280px;
  background: url(../images/index-v10/faq-bottom-styl.png) no-repeat center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .faq-section-v10::after {
    width: 250px;
    height: 180px;
    background-size: cover;
    bottom: 0;
  }
}
.faq-section-v10 .inner-part {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-section-v10 .faq-left h2 {
  font-weight: 700;
  color: #05164D;
  line-height: 1.2;
}
.faq-section-v10 .faq-left h2 em {
  color: #1D5BC4;
  font-style: normal;
}
.faq-section-v10 .faq-left p {
  font-size: 18px;
  margin-top: 16px;
  color: #364153;
  font-weight: 500;
  max-width: 500px;
}
.faq-section-v10 .faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}
.faq-section-v10 .faq-item.active {
  border-color: #6AA0FF;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.08);
}
.faq-section-v10 .faq-item.active .faq-question h3 {
  color: #2563EB;
}
.faq-section-v10 .faq-item.active .faq-answer {
  display: block;
  padding: 20px 24px;
}
.faq-section-v10 .faq-question {
  width: 100%;
  background: #fff;
  padding: 20px 30px 20px 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq-section-v10 .faq-question h3 {
  color: #364153;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 18px;
}
.faq-section-v10 .faq-question::before {
  content: "";
  position: absolute;
  top: 50%;
  transition: 0.4s ease-in-out;
  right: 20px;
  width: 18px;
  height: 15px;
  background: url(../images/index-v10/grey-arrow.svg);
  transform: translateY(-50%);
}
.faq-section-v10 .faq-answer {
  overflow: hidden;
  transition: all 0.35s ease;
  display: none;
  padding: 0 24px;
}
.faq-section-v10 .faq-answer p {
  color: #364153;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}
.faq-section-v10 .faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-section-v10 .faq-answer p:first-child {
  margin-bottom: 15px;
}
.faq-section-v10 .faq-answer p a {
  font-weight: bold;
}
.faq-section-v10 .faq-answer ul {
  margin: 15px 0;
}
.faq-section-v10 .faq-answer ul li {
  margin: 5px 0 0;
  position: relative;
  padding-left: 18px;
}
.faq-section-v10 .faq-answer ul li a {
  font-weight: bold;
}
.faq-section-v10 .faq-answer ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #6AA0FF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.faq-section-v10 .icon {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  transition: 0.3s;
}

.faq-section-v10 .faq-item.active .faq-question {
  background-color: #F0F0F3;
  border-bottom: 1px solid #6AA0FF;
}

.faq-section-v10 .faq-item.active .faq-question::before {
  transform: rotate(-180deg);
  transition: 0.4s ease-in-out;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .faq-section-v10 {
    padding: 50px 0;
  }
  .faq-section-v10 .inner-part {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section-v10 .faq-left h2 {
    font-size: 32px;
  }
}
.client-feedback {
  background: #fff;
}
.client-feedback .section-title {
  margin-bottom: 60px;
}
.client-feedback .section-title > em {
  font-size: 14px;
  letter-spacing: 3px;
  font-style: normal;
  margin-bottom: 5px;
  color: #2563EB;
  font-weight: 700;
}
.client-feedback .section-title h2 {
  color: #05164d;
  margin-bottom: 0px;
}
.client-feedback .section-title h2 em {
  color: #1D5BC4;
}
.client-feedback .feedback-slider {
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 10px;
}
.client-feedback .feedback-slider .swiper-slide {
  opacity: 0.25;
  transition: 0.4s;
}
.client-feedback .feedback-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  transition: 0.5s;
  margin: 0 auto;
}
.client-feedback .feedback-slider .feedback-card {
  display: flex;
  background: #fff;
  border: 1px solid #E8E8EC;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  position: relative;
}
.client-feedback .feedback-slider .feedback-card .client-image {
  width: 34%;
  border-left: 7px solid #2962ff;
}
.client-feedback .feedback-slider .feedback-card .client-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.client-feedback .feedback-slider .feedback-card .content {
  width: 66%;
  padding: 69.6px 51px 36.5px 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
}
.client-feedback .feedback-slider .feedback-card .content::before {
  content: "";
  position: absolute;
  background-image: url(../images/index-v10/feed-cots.svg);
  width: 50px;
  height: 50px;
  left: 40px;
  top: 40px;
  z-index: -1;
}
.client-feedback .feedback-slider .feedback-card .content p {
  color: #52525C;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 160%;
}
.client-feedback .feedback-slider .feedback-card .content .clint-bio {
  margin-top: auto;
}
.client-feedback .feedback-slider .feedback-card .content .clint-bio h4 {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #18181B;
}
.client-feedback .feedback-slider .feedback-card .content .clint-bio p {
  font-size: 14px;
  font-weight: 400;
  color: #52525C;
}
.client-feedback .feedback-slider .swiper-button-prev,
.client-feedback .feedback-slider .swiper-button-next {
  color: #333;
  width: 23px;
  height: 15px;
}
.client-feedback .feedback-slider .swiper-button-prev:after,
.client-feedback .feedback-slider .swiper-button-next:after {
  content: url(../images/index-v10/swiper-arrow.svg);
}
.client-feedback .feedback-slider .swiper-button-next::after {
  transform: rotate(180deg);
  top: 17px;
  position: relative;
}
.client-feedback .feedback-slider .swiper-pagination {
  position: static;
  margin-top: 20px;
}
.client-feedback .feedback-slider .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #D9D9E0;
  opacity: 1;
}
.client-feedback .feedback-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #60646C;
}
@media screen and (max-width: 767px) {
  .client-feedback .feedback-card {
    flex-wrap: wrap;
    width: 100%;
    height: auto !important;
  }
  .client-feedback .feedback-card .client-image {
    width: 50% !important;
  }
  .client-feedback .feedback-card .client-image img {
    height: 100%;
  }
  .client-feedback .feedback-card .content {
    width: 100% !important;
  }
  .client-feedback .feedback-card .clint-bio {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .client-feedback .feedback-slider .feedback-card .client-image {
    display: none;
  }
  .client-feedback .feedback-slider .swiper-button-prev {
    display: none !important;
  }
  .client-feedback .feedback-slider .swiper-button-next {
    display: none !important;
  }
}
@media screen and (max-width: 540px) {
  .client-feedback .feedback-slider .feedback-card .client-image {
    width: auto;
  }
  .client-feedback .feedback-slider .feedback-card .content {
    padding: 30px 40px 30px 40px;
  }
  .client-feedback .feedback-slider .feedback-card .content::before {
    top: 5px;
  }
}
.client-feedback .swiper-slide.swiper-slide-prev .feedback-card .client-image.before {
  display: block;
  position: absolute;
  right: 0;
  height: 100%;
  z-index: 11;
}

.client-feedback .swiper-slide.swiper-slide-active .feedback-card .client-image.before {
  display: none;
}

.client-feedback .swiper-slide.swiper-slide-next {
  transition: 0.5s;
}
.client-feedback .swiper-slide.swiper-slide-next .client-image.before img {
  object-position: 100px 0px;
}

.client-feedback .swiper-slide.swiper-slide-prev {
  transition: 0.5s;
}
.client-feedback .swiper-slide.swiper-slide-prev .client-image.before img {
  object-position: 100px 0px;
}

.client-feedback .feedback-slider .swiper-button-prev:after {
  left: 35px;
  position: relative;
}

.client-feedback .feedback-slider .swiper-button-next:after {
  right: 35px;
  position: relative;
}

.btn-sec {
  display: flex;
  align-items: center;
  position: relative;
}
.btn-sec .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
  padding: 19px 80px 19px 30px;
  border-radius: 7px;
  font-weight: 500;
  position: relative;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 26px;
}
.btn-sec .btn::before {
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s ease;
  content: "";
  width: 50%;
  height: 100%;
  background: black;
  position: absolute;
  top: 3px;
  right: 3px;
}
.btn-sec .btn.rounded .text-white {
  color: #ffffff;
  position: relative;
}
.btn-sec .btn.rounded::before {
  border-radius: 50px;
  width: 57px;
  height: 57px;
  background: #ffffff url(../images/btn-icon.svg) 0 0 no-repeat;
  background-size: 18px;
  background-position: center right 20px;
}
.btn-sec .btn.rounded:hover::before {
  background: #FFAD00 url(../images/btn-icon.svg) 0 0 no-repeat;
  background-position: center right 20px;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}
.btn-sec .btn:hover {
  border-color: #FFAD00;
  background: #FFAD00;
}
.btn-sec .btn:hover .text-white {
  color: #05164d;
}

@media only screen and (max-width: 1320px) {
  .btn-sec .btn {
    padding: 14px 70px 14px 20px;
    line-height: 24px;
  }
  .btn-sec .btn::before {
    top: 3px;
    right: 3px;
  }
  .btn-sec .btn.rounded::before {
    width: 46px;
    height: 46px;
    background-size: 16px;
    background-position: center right 15px;
  }
  .btn-sec .btn.rounded:hover::before {
    background-position: center right 15px;
  }
}
@media only screen and (max-width: 991px) {
  .btn-sec .btn {
    font-size: 16px;
    padding: 13px 70px 12px 25px;
    line-height: 1.5;
  }
  .btn-sec .btn::before {
    top: 3px;
    right: 3px;
  }
  .btn-sec .btn.rounded::before {
    width: 43px;
    height: 43px;
    background-size: 16px;
    background-position: center right 15px;
  }
  .btn-sec .btn.rounded:hover::before {
    background-position: center right 15px;
  }
}
.info-wrap {
  display: flex;
  justify-content: center;
  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-icon.svg) 0 0 no-repeat;
  position: absolute;
  top: -4px;
  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;
}

.button-section {
  display: flex;
  align-items: baseline;
  position: relative;
  flex-wrap: wrap;
}
.button-section .nccr {
  font-size: 13px;
  display: block;
  margin: 20px 0 0;
  text-align: center;
}
.button-section .devide {
  padding: 0 10px;
  display: inline-block;
  position: relative;
  color: #ffffff;
  opacity: 0.3;
  font-size: 12px;
}
.button-section .devide:before {
  content: "";
  clear: both;
  display: block;
  width: 1px;
  height: 16px;
  position: absolute;
  background: #ffffff;
  top: -20px;
  left: 19px;
  opacity: 0.3;
}
.button-section .devide:after {
  content: "";
  content: "";
  clear: both;
  display: block;
  width: 1px;
  height: 16px;
  background: #ffffff;
  position: absolute;
  bottom: -20px;
  left: 19px;
  opacity: 0.3;
}
.button-section .free-con a {
  color: #ffffff;
  opacity: 0.5;
  text-decoration: underline;
}
.button-section .free-con a:hover {
  opacity: 1;
}
.button-section .info-wrap {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 13px;
  margin: 8px 0 0;
}
.button-section .info-wrap .info:after {
  top: 0;
}
.button-section .info-wrap .info .info-content {
  top: 28px;
}

.bg-blue-linear .info-wrap .info .info-content p {
  color: #000 !important;
}

.contact-us-section .info-wrap {
  justify-content: left;
}
.contact-us-section .info {
  margin-left: 10px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.contact-us-section .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;
}
.contact-us-section .info .info-content {
  box-shadow: 4px 4px 30px 0px rgba(227, 233, 245, 0.9);
}

.second-level-section .info-wrap .info:after {
  top: 1px;
}

@media only screen and (max-width: 1320px) {
  .info-wrap .info .info-content {
    width: 280px;
  }
}
@media only screen and (max-width: 1200px) {
  .second-level-section .form-right-box .head .info-wrap .info .info-content {
    width: 230px;
  }
}
@media only screen and (max-width: 991px) {
  .second-level-section .form-right-box .head .info-wrap .info .info-content {
    width: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .button-section .btn-div {
    flex-basis: 100%;
    text-align: center;
  }
  .button-section .btn-div .cta-wrap {
    justify-content: center;
  }
  .button-section .btn-div .cta-btn {
    justify-content: center;
  }
  .button-section .nccr {
    font-size: 13px;
    display: block;
    margin: 20px 0 0;
    text-align: center;
  }
  .button-section .devide {
    width: 100%;
    text-align: center;
    padding: 5px;
  }
  .button-section .devide:before {
    width: 16px;
    height: 1px;
    display: inline-block;
    position: initial;
    margin-right: 5px;
    vertical-align: middle;
  }
  .button-section .devide:after {
    width: 16px;
    height: 1px;
    display: inline-block;
    position: initial;
    margin-left: 5px;
    vertical-align: middle;
  }
  .info-wrap .info .info-content {
    width: 188px;
    left: -75px;
  }
  .second-level-section .form-right-box .head .info-wrap .info .info-content {
    width: 220px;
  }
}
@media only screen and (max-width: 479px) {
  .second-level-section .form-right-box .head .info-wrap .info .info-content {
    width: 168px;
  }
}
.fintech-delivery {
  position: relative;
  display: flex;
  margin-bottom: -1px;
  background: #05164d;
  flex-wrap: wrap;
  /* LEFT IMAGE FULL HEIGHT */
}
.fintech-delivery::after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  width: 477px;
  height: 258px;
  background: url(../images/industry-v11/fin-boxes.png);
  background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
  .fintech-delivery::after {
    display: none;
  }
}
.fintech-delivery .inner-part {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 100px;
  /* RIGHT CONTENT */
  /* LIST */
}
@media screen and (max-width: 1024px) {
  .fintech-delivery .inner-part {
    flex-direction: column;
    gap: 40px;
  }
}
.fintech-delivery .inner-part .left-part {
  width: calc(50% - 50px);
}
@media screen and (max-width: 1024px) {
  .fintech-delivery .inner-part .left-part {
    width: 100%;
  }
}
.fintech-delivery .inner-part .left-part > em {
  font-style: normal;
  color: #6AA0FF;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 17%;
}
.fintech-delivery .inner-part .left-part h2 {
  color: #ffffff;
  line-height: 120%;
  margin-bottom: 20px;
}
.fintech-delivery .inner-part .left-part h2 em {
  color: #6AA0FF;
  font-style: normal;
}
.fintech-delivery .inner-part .left-part p {
  font-size: 16px;
  font-weight: 500;
  color: #D1D5DC;
}
.fintech-delivery .inner-part .right-part {
  width: calc(50% - 50px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 1024px) {
  .fintech-delivery .inner-part .right-part {
    width: 100%;
  }
}
.fintech-delivery .inner-part .right-part .ai-content {
  padding: 80px 0 80px 20px;
  color: #ffffff;
  max-width: 590px;
  float: right;
}
.fintech-delivery .inner-part .right-part .ai-content h2 {
  font-size: clamp(30px, 3.7vw, 46px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.fintech-delivery .inner-part .right-part .ai-content h2 em {
  color: #FFAD00;
  font-style: normal;
}
.fintech-delivery .inner-part .right-part .ai-content > p {
  color: rgba(255, 255, 255, 0.6901960784);
  margin-bottom: 60px;
}
.fintech-delivery .inner-part .ai-list {
  height: 510px;
}
@media screen and (max-width: 1024px) {
  .fintech-delivery .inner-part .ai-list {
    padding-left: 20px;
    height: 400px;
  }
}
.fintech-delivery .inner-part .ai-list .ai-item {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  /* Reserve space so layout doesn't jump */
  /* FIXED HEIGHT AREA */
  /* ACTIVE */
}
@media screen and (max-width: 1024px) {
  .fintech-delivery .inner-part .ai-list .ai-item {
    padding: 15px 0;
  }
}
.fintech-delivery .inner-part .ai-list .ai-item:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6A7282;
  position: absolute;
  left: -18px;
  top: 42px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .fintech-delivery .inner-part .ai-list .ai-item:before {
    top: 26px;
  }
}
@media screen and (max-width: 640px) {
  .fintech-delivery .inner-part .ai-list .ai-item:before {
    top: 23px;
  }
}
.fintech-delivery .inner-part .ai-list .ai-item .title h4 {
  font-size: 22px;
  font-weight: 700;
  transition: 0.3s;
  color: #ffffff;
}
.fintech-delivery .inner-part .ai-list .ai-item .desc {
  font-size: 14px;
  font-weight: 500;
  color: #D1D5DC;
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.fintech-delivery .inner-part .ai-list .ai-item .desc p {
  color: #D1D5DC;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
.fintech-delivery .inner-part .ai-list .ai-item .desc ul li {
  position: relative;
  color: #D1D5DC;
}
.fintech-delivery .inner-part .ai-list .ai-item .desc ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FFAD00;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.fintech-delivery .inner-part .ai-list .ai-item .progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0%;
  background: #6AA0FF;
}
.fintech-delivery .inner-part .ai-list .ai-item.active:before {
  background: #6AA0FF;
}
.fintech-delivery .inner-part .ai-list .ai-item.active .title h4 {
  color: #6AA0FF;
}
.fintech-delivery .inner-part .ai-list .ai-item.active .desc {
  max-height: max-content;
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ai-right {
    width: 100%;
  }
  .ai-production-loop {
    background: linear-gradient(270deg, #090C19 43.32%, rgba(9, 12, 25, 0.95) 62.86%, rgba(9, 12, 25, 0.89) 100%);
  }
  .ai-right .ai-content {
    max-width: 100%;
    float: unset;
    padding-left: 20px;
  }
  .ai-left {
    display: none;
  }
  .ai-right .ai-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .ai-right .ai-content {
    padding: 48px 0;
  }
  .ai-list {
    padding-left: 20px;
  }
  .ai-right .ai-content > p {
    margin-bottom: 0;
  }
}
.fintech-section {
  background-color: #1C2024;
  /* TOP */
  /* CARD */
  /* BOTTOM NAV */
}
.fintech-section .s-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .fintech-section .s-top {
    flex-direction: column;
    text-align: center;
  }
}
.fintech-section .s-top h2 {
  color: #fff;
  width: 40%;
}
.fintech-section .s-top h2 em {
  font-style: normal;
  color: #6AA0FF;
}
@media screen and (max-width: 1024px) {
  .fintech-section .s-top h2 {
    width: 100%;
  }
}
.fintech-section .s-top p {
  font-weight: 500;
  color: #D1D5DC;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .fintech-section .s-top p {
    width: 100%;
    font-size: 16px;
  }
}
.fintech-section .cards {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .fintech-section .cards {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .fintech-section .cards {
    margin-bottom: 40px;
  }
}
.fintech-section .glider {
  overflow: hidden;
}
.fintech-section .slide-card .inner-card {
  display: flex;
  gap: 30px;
}
.fintech-section ul li.active {
  font-weight: bold;
}
.fintech-section .slide-card {
  display: inline-block;
}
.fintech-section .slide-card .inner-card {
  min-width: 100%;
  width: 100%;
  background: rgba(53, 64, 91, 0.2);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex !important;
  overflow: hidden;
  min-height: 420px;
}
@media screen and (max-width: 1024px) {
  .fintech-section .slide-card .inner-card {
    min-height: unset;
    flex-direction: column;
  }
  .fintech-section .slide-card .inner-card .card-l {
    width: 100%;
  }
  .fintech-section .slide-card .inner-card .card-r {
    display: none;
  }
}
.fintech-section .cards {
  /* CARD LEFT */
  /* CARD RIGHT */
}
.fintech-section .cards .card-l {
  width: 55%;
  padding: 98px 77px 97px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .fintech-section .cards .card-l {
    padding: 45px 20px 45px 40px;
  }
}
@media screen and (max-width: 767px) {
  .fintech-section .cards .card-l {
    padding: 25px 10px 25px 20px;
  }
}
.fintech-section .cards .card-l h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.fintech-section .cards .card-l h3 > a {
  color: #6AA0FF;
}
.fintech-section .cards .card-l p {
  color: #E5E7EB;
  margin-bottom: 0;
}
.fintech-section .cards .card-l ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.fintech-section .cards .card-l ul li {
  font-size: 14px;
  color: #D1D5DC;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
  line-height: 100%;
}
.fintech-section .cards .card-l ul li a {
  color: #6AA0FF;
}
.fintech-section .cards .card-l ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/index-v10/white-check-round.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 0px;
  background-size: 15px;
}
.fintech-section .cards .card-l > a {
  font-size: 14px;
  font-weight: 600;
  margin-top: 50px;
  color: #6AA0FF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fintech-section .cards .card-l > a {
    margin-top: 30px;
  }
}
.fintech-section .cards .card-l > a::after {
  content: "";
  background-image: url(../images/index-v10/right-blue.svg);
  width: 16px;
  height: 16px;
  background-size: 100%;
  display: inline-block;
  margin-left: 9px;
  margin-top: 0px;
  background-position-y: -17px;
}
@media screen and (max-width: 1024px) {
  .fintech-section .cards .card-l > a::after {
    margin-left: 5px;
    height: 8px;
  }
}
.fintech-section .cards .card-r {
  width: 45%;
}
.fintech-section .cards .card-r img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.fintech-section .slider-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fintech-section .slider-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.fintech-section .slider-bottom::after {
  position: absolute;
  right: 150px;
  left: 330px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 1px;
  margin: 0 20px;
  background: #3F3F47;
  content: "";
}
@media screen and (max-width: 767px) {
  .fintech-section .slider-bottom::after {
    display: none;
  }
}
.fintech-section .slider-bottom ul {
  display: flex;
  list-style: none;
}
.fintech-section .slider-bottom ul li {
  color: #6A7282;
  font-weight: 600;
  font-size: 14px;
  margin-right: 25px;
  min-width: fit-content;
  line-height: 100%;
  cursor: pointer;
}
.fintech-section .slider-bottom ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .fintech-section .slider-bottom ul li {
    margin-right: 15px;
  }
}
.fintech-section ul li.active {
  color: #6AA0FF;
}
.fintech-section .glider-nav {
  position: absolute;
  width: 80px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  .fintech-section .glider-nav {
    top: -30px;
    transform: translate(-68%, -50%);
    left: 50%;
    left: 50%;
  }
}
.fintech-section .glider-nav button {
  width: 35px;
  height: 35px;
  border-radius: 16px;
  border: 2px solid #364153;
  background: transparent;
  color: #05164d;
  cursor: pointer;
  position: static;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  font-size: 18px;
  top: 88%;
}
.fintech-section .glider-nav .glider-prev {
  transform: rotate(-180deg);
}
.fintech-section .glider-nav .glider-next {
  transform: translateY(0px) !important;
}
.fintech-section .glider-nav .glider-next.disabled, .fintech-section .glider-nav .glider-prev.disabled {
  opacity: 11;
}

.fintech-section .slider-bottom .master-btn .btn-circle {
  border: 0.83px solid #52525C !important;
  font-size: 14px;
  font-weight: 400;
  border-radius: 60px !important;
  background: transparent !important;
}

.fintech-section .slider-bottom .master-btn .circle {
  background: #FFAD00 !important;
}

.fintech-section .master-btn .text::before, .master-btn .text::after {
  color: #9F9FA9 !important;
}

.fintech-section .master-btn .btn-circle:hover .text::before, .fintech-section .master-btn .btn-circle:hover .text::after {
  color: #9F9FA9 !important;
}

.fintech-section .primary_btn a {
  color: #ffffff !important;
}

.stacking-cards-section {
  background-color: #FFFFFF;
}
.stacking-cards-section .top-part {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .stacking-cards-section .top-part {
    padding-bottom: 0;
  }
}
.stacking-cards-section .top-part h2 {
  color: #05164d;
  margin-bottom: 20px;
}
.stacking-cards-section .top-part p {
  color: #60646C;
  margin-bottom: 0;
}
.stacking-cards-section .stack-card {
  position: sticky;
  top: 40px;
  width: 100%;
  padding-top: 40px;
}
.stacking-cards-section .stack-card:nth-child(1) {
  top: calc(40px + 1 * 25px);
}
.stacking-cards-section .stack-card:nth-child(2) {
  top: calc(40px + 2 * 25px);
}
.stacking-cards-section .stack-card:nth-child(3) {
  top: calc(40px + 3 * 25px);
}
.stacking-cards-section .stack-card:nth-child(4) {
  top: calc(40px + 4 * 25px);
}
.stacking-cards-section .stack-card:nth-child(5) {
  top: calc(40px + 5 * 25px);
}
.stacking-cards-section .stack-card .card-body {
  background: #FCFCFD;
  border-radius: 30px;
  display: flex;
  box-shadow: 0px -6px 21px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 45px;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .stacking-cards-section .stack-card .card-body {
    padding: 25px;
    gap: 50px;
  }
}
.stacking-cards-section .stack-card .card-left {
  width: calc(100% - 477px);
}
@media screen and (max-width: 992px) {
  .stacking-cards-section .stack-card .card-left {
    width: calc(100% - 300px);
  }
}
.stacking-cards-section .stack-card .card-left .card-num {
  display: block;
  font-size: 80px;
  margin-bottom: 5px;
  font-weight: 700;
  color: rgba(206, 206, 206, 0.2);
  line-height: 100%;
}
@media screen and (max-width: 992px) {
  .stacking-cards-section .stack-card .card-left .card-num {
    font-size: 50px;
  }
}
.stacking-cards-section .stack-card .card-left h3 {
  color: #1C2024;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 100%;
}
.stacking-cards-section .stack-card .card-left h3 a {
  text-decoration: underline;
  color: inherit;
}
.stacking-cards-section .stack-card .card-left p {
  color: #80838D;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 10px;
}
.stacking-cards-section .stack-card .card-left p a {
  text-decoration: underline;
  color: inherit;
}
.stacking-cards-section .stack-card .card-left ul {
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .stacking-cards-section .stack-card .card-left ul {
    margin-bottom: 10px;
    text-align: left;
  }
}
.stacking-cards-section .stack-card .card-left ul li {
  font-size: 16px;
  color: #80838D;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 100%;
  position: relative;
  padding-left: 26px;
}
.stacking-cards-section .stack-card .card-left ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/industry-v11/black-check.svg);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 14px;
  top: 0px;
}
.stacking-cards-section .stack-card .card-left ul li:last-of-type {
  margin-bottom: 0;
}
.stacking-cards-section .stack-card .card-left ul li a {
  text-decoration: underline;
  color: inherit;
}
.stacking-cards-section .stack-card .card-left > a {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  margin-top: 50px;
  color: #1D5BC4;
  position: relative;
}
.stacking-cards-section .stack-card .card-left > a::after {
  content: "";
  background: url(../images/industry-v11/right-b-six.svg) no-repeat;
  width: 12px;
  height: 11px;
  background-size: 100%;
  display: inline-block;
  margin-left: 9px;
  margin-top: 0px;
}
.stacking-cards-section .stack-card .card-right {
  width: 477px;
}
@media screen and (max-width: 992px) {
  .stacking-cards-section .stack-card .card-right {
    width: 300px;
  }
}
.stacking-cards-section .stack-card .card-right img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .card-body {
    flex-direction: column !important;
    padding: 40px 25px !important;
    text-align: center;
  }
  .card-body .card-link {
    justify-content: center;
  }
  .card-body .card-left {
    width: 100% !important;
  }
  .card-body .card-right {
    display: none;
  }
}
.delivery-section {
  position: relative;
  z-index: 1;
  background-color: #F9FAFB;
}
.delivery-section::after {
  content: "";
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #F0F0F3;
  width: 53%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .delivery-section::after {
    display: none;
  }
}
.delivery-section .inner-part {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 0 20px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .delivery-section .inner-part {
    flex-direction: column;
    padding: 0;
  }
  .delivery-section .inner-part .left-part {
    width: 100% !important;
  }
  .delivery-section .inner-part .right-part {
    width: 100% !important;
  }
}
.delivery-section .inner-part .left-part {
  width: calc(45% - 30px);
}
.delivery-section .inner-part .left-part em {
  color: #2563EB;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  letter-spacing: 17%;
  font-weight: 700;
  font-style: normal;
}
.delivery-section .inner-part .left-part h2 {
  color: #05164d;
  line-height: 1.2;
  margin-bottom: 20px;
}
.delivery-section .inner-part .left-part p {
  color: #4B5563;
  line-height: 160%;
  font-weight: 500;
  margin-bottom: 34px;
}
.delivery-section .inner-part .left-part ul {
  list-style: none;
  padding: 0;
}
.delivery-section .inner-part .left-part ul li {
  font-size: 16px;
  color: #60646C;
  font-weight: 500;
  position: relative;
  line-height: 100%;
  padding-left: 26px;
  margin-bottom: 15px;
}
.delivery-section .inner-part .left-part ul li:last-of-type {
  margin-bottom: 0;
}
.delivery-section .inner-part .left-part ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/industry-v11/black-check.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 0px;
  background-size: 15px;
}
.delivery-section .inner-part .right-part {
  width: calc(55% - 40px);
  padding-top: 30px;
}
.delivery-section .inner-part .right-part h3 {
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .delivery-section .inner-part .right-part h3 {
    font-size: 18px !important;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .delivery-section .inner-part .right-part h3 {
    font-size: 16px !important;
  }
}
.delivery-section .inner-part .right-part p {
  margin-bottom: 10px;
}
.delivery-section .inner-part .right-part p:last-of-type {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .delivery-section .inner-part .right-part p:last-of-type {
    margin-bottom: 15px;
  }
}
.delivery-section .inner-part .right-part .rs-text {
  border-bottom: 1px solid #D9D9E0;
}
.delivery-section .inner-part .right-part .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  z-index: 1;
  position: relative;
  padding: 35px 60px 33px 0;
}
.delivery-section .inner-part .right-part .accordion-item .accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.delivery-section .inner-part .right-part .accordion-item .accordion-trigger::after {
  width: 55px;
  height: 60px;
  content: "";
  position: absolute;
  right: -60px;
  bottom: -33px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/index-v10/open-tab-icon.svg) no-repeat center;
}
@media screen and (max-width: 1024px) {
  .delivery-section .inner-part .right-part .accordion-item .accordion-trigger::after {
    width: 40px;
    height: 40px;
    background-size: 15px;
  }
}
.delivery-section .inner-part .right-part .accordion-item .accordion-trigger h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #1C2024;
}
.delivery-section .inner-part .right-part .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}
.delivery-section .inner-part .right-part .accordion-item .accordion-content p {
  color: #80838D;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0;
}
.delivery-section .inner-part .right-part .accordion-item.active .accordion-trigger {
  padding-bottom: 15px;
}
.delivery-section .inner-part .right-part .accordion-item.active .accordion-trigger::after {
  display: none;
}
.delivery-section .inner-part .right-part .accordion-item.active .accordion-trigger h3 {
  color: #2563EB;
  font-weight: 700;
}
.delivery-section .inner-part .right-part .accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0;
}

.delivery-section .inner-part .right-part .accordion-item:first-of-type {
  padding-top: 0;
}

.who-we-serve {
  background-color: #ffffff;
}
.who-we-serve .intro-content {
  text-align: center;
  margin-bottom: 80px;
}
.who-we-serve .intro-content h2 {
  color: #05164d;
  margin-bottom: 20px;
}
.who-we-serve .intro-content p {
  color: #60646C;
  max-width: 720px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 160%;
}
.who-we-serve .main-layout {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}
.who-we-serve .main-layout .visual-panel {
  width: 470px;
  box-shadow: 0px 2px 7.5px 0px rgba(255, 255, 255, 0.2509803922) inset;
  display: block;
}
.who-we-serve .main-layout .visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.who-we-serve .main-layout .services-grid {
  width: calc(100% - 470px - 70px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.who-we-serve .main-layout .services-grid .service-card {
  background-color: #F9FAFB;
  padding: 35px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who-we-serve .main-layout .services-grid .service-card .icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(106, 160, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 22px;
}
.who-we-serve .main-layout .services-grid .service-card span {
  color: #1C2024;
  font-size: 20px;
  font-weight: 700;
}
.who-we-serve .main-layout .services-grid .service-card:hover, .who-we-serve .main-layout .services-grid .service-card.active {
  background-color: #F2F7FF;
  z-index: 5;
}
.who-we-serve .main-layout .services-grid .service-card:hover::before, .who-we-serve .main-layout .services-grid .service-card.active::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 127%;
  background: linear-gradient(1deg, transparent, #2563EB, transparent);
  transition: opacity 0.3s ease;
}
.who-we-serve .main-layout .services-grid .service-card:hover::after, .who-we-serve .main-layout .services-grid .service-card.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(1deg, transparent, #2563EB, transparent);
  transition: opacity 0.3s ease;
}

@media (max-width: 992px) {
  .who-we-serve .main-layout {
    gap: 30px;
  }
  .who-we-serve .main-layout .services-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .who-we-serve .main-layout .services-grid {
    width: 50%;
    gap: 10px;
    background-color: transparent;
    max-height: 650px;
    overflow: scroll;
  }
  .who-we-serve .main-layout .visual-panel {
    width: 50%;
  }
  .who-we-serve .main-layout .services-grid .service-card {
    padding: 25px;
  }
  .who-we-serve .main-layout .services-grid .service-card:hover::after {
    display: none;
  }
  .who-we-serve .main-layout .services-grid .service-card:hover::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .who-we-serve .main-layout .visual-panel {
    display: none;
  }
  .who-we-serve .main-layout .services-grid {
    width: 100%;
  }
}
.who-we-serve .main-layout .services-grid .service-card:hover:nth-child(2n+2)::before {
  left: 0 !important;
}
.who-we-serve .main-layout .services-grid .service-card:hover:nth-child(2n+2)::after {
  right: 10%;
}

.stack-fintech {
  background-color: #090C19;
  color: white;
  text-align: center;
}
.stack-fintech aside span {
  color: #FFAD00;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  font-weight: bold;
}
.stack-fintech aside h2 {
  color: #fff;
  margin-bottom: 15px;
  margin-top: 5px;
}
.stack-fintech aside p {
  color: #D1D5DC;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.stack-fintech .production-tech {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .stack-fintech .production-tech {
    flex-wrap: nowrap;
    padding-bottom: 10px;
    overflow: auto;
    justify-content: left;
  }
  .stack-fintech .production-tech::-webkit-scrollbar {
    width: 100%;
    height: 5px;
  }
  .stack-fintech .production-tech::-webkit-scrollbar-track {
    background: #05164D;
    border-radius: 5px;
  }
  .stack-fintech .production-tech::-webkit-scrollbar-thumb {
    background: #f0ad4e;
    border-radius: 4px;
  }
  .stack-fintech .production-tech::-webkit-scrollbar-thumb:hover {
    background: red;
  }
}
.stack-fintech .production-tech button {
  border: none;
  padding: 15px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #D1D5DC;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .stack-fintech .production-tech button {
    padding: 10px;
    min-width: fit-content;
    font-size: 16px;
  }
}
.stack-fintech .logos-part {
  padding-top: 60px;
  padding-left: 59px;
  padding-right: 59px;
  padding-bottom: 92px;
  background: linear-gradient(180deg, #090C19 0%, #05164D 100%);
  border: 1px solid rgba(255, 173, 0, 0.1490196078);
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .stack-fintech .logos-part {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .stack-fintech .logos-part {
    padding: 20px;
  }
}
.stack-fintech .logos-part ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .stack-fintech .logos-part ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .stack-fintech .logos-part ul {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.stack-fintech .logos-part ul li {
  border-radius: 20px;
  height: 127px;
}
.stack-fintech .logos-part ul li a {
  height: 100%;
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: 0.5s;
  position: relative;
  border-radius: 16px;
  padding: 20px;
  z-index: 1;
  cursor: pointer;
  flex-wrap: wrap;
}
.stack-fintech .logos-part ul li a .itm-row {
  flex: 0 0 100%;
}
.stack-fintech .logos-part ul li a .itm-row:nth-child(2) {
  display: none;
  color: #ffffff;
}
.stack-fintech .logos-part ul li a img {
  max-width: 60%;
  transition: 0.3s;
}
.stack-fintech .logos-part ul li a:hover {
  transition: 0.5s;
}
.stack-fintech .logos-part ul li a:hover .itm-row:first-child {
  flex-basis: 55%;
}
.stack-fintech .logos-part ul li a:hover .itm-row:nth-child(2) {
  display: block;
}
.stack-fintech .logos-part ul li a:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.stack-fintech .logos-part ul li a:hover:before {
  background: linear-gradient(116.71deg, #FFAD00 3.55%, #251901 97.06%);
}
.stack-fintech .logos-part ul li a:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(290.79deg, rgba(66, 45, 0, 0.24) 2.06%, rgba(102, 102, 102, 0.438) 96.71%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stack-fintech .logos-part ul {
  display: none;
}

.stack-fintech .logos-part ul.active {
  display: grid; /* or block, depending on your layout */
}

.production-tech .tech {
  height: 100%;
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: relative;
  border-radius: 100px;
  z-index: 1;
  cursor: pointer;
  flex-wrap: wrap;
}
.production-tech .tech[data-active=true] {
  box-shadow: 3px 3px 6px 0px rgba(255, 173, 0, 0.568627451);
}
.production-tech .tech[data-active=true]:before {
  background: linear-gradient(92.78deg, #0133D6 0.86%, #FFAD00 100%);
}
.production-tech .tech:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(290.79deg, rgba(66, 45, 0, 0.24) 2.06%, rgba(102, 102, 102, 0.438) 96.71%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.regulatory-section {
  background-color: #05164d;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.regulatory-section::after {
  position: absolute;
  left: 0;
  content: "";
  bottom: -50px;
  width: 477px;
  height: 309px;
  background: url(../images/industry-v11/fin-boxes.png);
  background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
  .regulatory-section::after {
    display: none;
  }
}
.regulatory-section .inner-part {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .regulatory-section .inner-part {
    flex-direction: column;
    gap: 40px;
  }
}
.regulatory-section aside {
  flex: 1;
  position: sticky;
  height: fit-content;
}
@media screen and (max-width: 992px) {
  .regulatory-section aside {
    position: static;
  }
}
.regulatory-section aside span {
  color: #6AA0FF;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 17%;
  font-weight: 700;
}
.regulatory-section aside h2 {
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 120%;
}
.regulatory-section aside p {
  color: #D9D9E0;
  max-width: 500px;
  line-height: 160%;
}
@media screen and (max-width: 992px) {
  .regulatory-section aside p {
    width: 100%;
  }
}
.regulatory-section .main {
  flex: 1;
  max-height: 530px;
  overflow-y: auto;
  padding-right: 20px;
}
.regulatory-section .main::-webkit-scrollbar {
  width: 7px;
}
.regulatory-section .main::-webkit-scrollbar-track {
  background: rgba(27, 30, 42, 0.6);
  width: 7px;
}
.regulatory-section .main::-webkit-scrollbar-thumb {
  background: #1E2939;
  height: 140px;
}
.regulatory-section .main article {
  background: rgba(255, 255, 255, 0.0509803922);
  padding: 35px;
  margin-bottom: 24px;
  border-radius: 16px;
  transition: 0.4s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .regulatory-section .main article {
    padding: 20px;
  }
}
.regulatory-section .main article:hover {
  background: rgba(255, 255, 255, 0.1490196078);
}
.regulatory-section .main article div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.regulatory-section .main article div span {
  background: rgba(37, 99, 235, 0.2);
  color: #6AA0FF;
  padding: 5px 10px;
  border-radius: 5px;
  line-height: 100%;
  font-size: 14px;
  font-weight: 600;
}
.regulatory-section .main article div strong {
  font-size: 2.5rem;
  color: #FFFFFF;
  opacity: 3%;
  transition: 0.3s;
}
.regulatory-section .main article h3 {
  font-size: 22px;
  transition: 0.3s;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  line-height: 100%;
}
.regulatory-section .main article p {
  max-height: 0;
  font-weight: 500;
  opacity: 0;
  line-height: 160%;
  overflow: hidden;
  margin-top: 0;
  color: #D9D9E0;
  transition: all 0.4s ease;
}
.regulatory-section .main article:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: #FFAD00;
}
.regulatory-section .main article:hover strong {
  color: #FFFFFF;
  opacity: 3%;
}
.regulatory-section .main article:hover h3 {
  margin-bottom: 10px;
}
.regulatory-section .main article:hover p {
  max-height: 150px;
  opacity: 1;
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    gap: 40px;
  }
  section aside {
    position: static;
  }
  section .main {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}
.solution-industry .top-part {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .solution-industry .top-part {
    flex-direction: column;
    align-items: start;
    max-width: 100%;
  }
  .solution-industry .top-part div {
    width: 100% !important;
  }
}
.solution-industry .top-part div {
  max-width: 600px;
}
.solution-industry .top-part div h2 {
  color: #05164d;
  margin-bottom: 10px;
}
.solution-industry .top-part div p {
  color: #4B5563;
  font-weight: 500;
  line-height: 160%;
}
.solution-industry ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .solution-industry ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 640px) {
  .solution-industry ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 15pxpx;
  }
}
.solution-industry ul li {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0px 4px 14px 3px rgba(0, 0, 0, 0.0392156863);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.solution-industry ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .solution-industry ul li {
    min-height: auto;
    padding: 20px;
  }
}
.solution-industry ul li figure {
  background: rgba(106, 160, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.solution-industry ul li figure img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.solution-industry ul li h3 {
  color: #1C2024;
  font-size: 16px;
  line-height: 140%;
  font-weight: 700;
}
.solution-industry ul li:hover {
  border: 1px solid #2563EB;
  box-shadow: 0px 0px 20px 5px rgba(37, 99, 235, 0.1490196078);
}

@media (max-width: 1200px) {
  section ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  section header {
    flex-direction: column;
    align-items: flex-start;
  }
  section ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  section ul {
    grid-template-columns: 1fr;
  }
  section header h1 {
    font-size: 2.2rem;
  }
}
.client-img-section .left-box {
  padding-right: 60px;
}
.client-img-section .left-box h5 {
  color: #0a1747;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px;
}
.client-img-section .left-box ul {
  margin-top: 30px;
}
.client-img-section .left-box ul li {
  margin: 0 0 15px;
  position: relative;
  padding-left: 22px;
}
.client-img-section .left-box ul li::before {
  content: "";
  background: url(../images/list-check.svg) no-repeat;
  width: 12px;
  height: 13px;
  position: absolute;
  top: 4px;
  left: 0;
}
.client-img-section .left-box ul li:last-child {
  margin: 0;
}
.client-img-section .left-box ul li sup {
  font-size: 10px;
  margin-left: 2px;
  margin-top: -4px;
}
.client-img-section .left-box p {
  margin: 0 0 15px;
}
.client-img-section .left-box .a-dotted {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.client-img-section .left-box .a-dotted:after {
  content: "";
  width: 84px;
  height: 1px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
}
.client-img-section .right-box {
  flex-basis: 45%;
}
.client-img-section .right-box .client-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.client-img-section .right-box .client-section .client-row {
  position: relative;
  overflow: hidden;
  height: 60px;
}
.client-img-section .right-box .client-section .client-row .client-stack ul {
  display: flex;
  min-width: 150%;
  justify-content: space-around;
  column-gap: 15px;
  position: absolute;
}
.client-img-section .right-box .client-section .client-row .client-stack ul li {
  border-radius: 8px;
  background: #fafafa;
  height: 60px;
  min-width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-img-section .right-box .client-section .client-row .client-stack ul li img {
  vertical-align: middle;
}
.client-img-section .right-box .client-section .client-row .client-stack ul li:hover {
  color: #FFAD00;
}
.client-img-section .right-box .client-section .client-row .hover:hover {
  color: red;
}
.client-img-section .right-box .award-sc h5 {
  font-size: 15px;
  color: #0a1747;
}
.client-img-section .right-box .award-sc .award-row {
  margin: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.client-img-section .right-box .award-sc .award-row .award-col {
  flex-basis: 23%;
  cursor: pointer;
  text-align: center;
  padding: 12px;
  border: 1px solid #eee9e9;
  border-radius: 5px;
  margin: 0 0 14px;
}
.client-img-section .right-box .award-sc .award-row .award-col .aw-icon {
  min-height: 50px;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-img-section .right-box .award-sc .award-row .award-col .aw-icon img.normal-mode {
  display: block;
}
.client-img-section .right-box .award-sc .award-row .award-col .aw-icon img.hover-mode {
  display: none;
}
.client-img-section .right-box .award-sc .award-row .award-col p {
  font-size: 8px;
  line-height: 10px;
  color: #05164d;
  opacity: 0.8;
  font-weight: 500;
}
.client-img-section .right-box .award-sc .award-row .award-col:hover {
  background: #fff;
  cursor: default;
}
.client-img-section .right-box .award-sc .award-row .award-col:hover p {
  opacity: 1;
}
.client-img-section .right-box .award-sc .award-row .award-col:hover .aw-icon img.normal-mode {
  display: none;
}
.client-img-section .right-box .award-sc .award-row .award-col:hover .aw-icon img.hover-mode {
  display: block;
}

.dark-client-section {
  background: #09143d;
}
.dark-client-section .left-box h2 {
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 120%;
}
.dark-client-section .left-box h5 {
  color: #FFAD00;
}
.dark-client-section .left-box p {
  color: #E8E8EC !important;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 10px;
}
.dark-client-section .left-box p:last-of-type {
  margin-bottom: 0;
}
.dark-client-section .left-box ul li {
  color: #D1D5DB;
}
.dark-client-section .left-box a {
  color: #D1D5DB;
  text-decoration: underline;
}
.dark-client-section .left-box a:hover {
  color: #ffffff;
  text-decoration: none;
}
.dark-client-section .right-box .client-section .client-row .client-stack ul li {
  background: rgba(15, 31, 87, 0.7);
}
.dark-client-section .right-box .client-section .client-row .client-stack ul li img {
  vertical-align: middle;
}
.dark-client-section .right-box .client-section .client-row .client-stack ul li:hover {
  color: #FFAD00;
}
.dark-client-section .right-box .award-sc h5 {
  color: #ffffff;
}
.dark-client-section .right-box .award-sc .award-row .award-col {
  border: 1px solid rgba(4, 17, 66, 0.62);
  background: #101e55;
}
.dark-client-section .right-box .award-sc .award-row .award-col .aw-icon img.normal-mode {
  display: block;
  opacity: 0.5;
}
.dark-client-section .right-box .award-sc .award-row .award-col p {
  color: #ffffff;
  opacity: 0.5;
}
.dark-client-section .right-box .award-sc .award-row .award-col:hover {
  border: 1px solid rgba(156, 164, 195, 0.37);
  cursor: default;
  background: #101e55;
}
.dark-client-section .right-box .award-sc .award-row .award-col:hover p {
  opacity: 1;
}
.dark-client-section .right-box .award-sc .award-row .award-col:hover .aw-icon img.normal-mode {
  display: block;
  opacity: 1;
}

@keyframes slide_to_left {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes slide_to_right {
  0% {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.award-animate-slide-to-left {
  animation: slide_to_left 15s linear infinite;
}

.award-animate-slide-to-right {
  animation: slide_to_right 15s linear infinite;
}

.hover\:pause:hover {
  animation-play-state: paused;
}

@media only screen and (max-width: 991px) {
  .client-img-section .left-box {
    padding-right: 0;
  }
  .client-img-section .left-box ul {
    margin-top: 20px;
  }
  .client-img-section .right-box {
    flex-basis: 100%;
    margin: 40px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .client-img-section .left-box ul li:before {
    top: 4px;
  }
}
.compliance-section {
  background-color: #F8FAFC;
}
.compliance-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.compliance-section__header h2 {
  color: #05164d;
  margin: 0 0 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.compliance-section__header p {
  color: #364153;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  max-width: 610px;
  line-height: 1.6;
}
.compliance-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .compliance-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .compliance-section__grid {
    grid-template-columns: 1fr;
  }
}

.compliance-card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0px 4px 14px 3px rgba(0, 0, 0, 0.0588235294);
  border: 1px solid #F3F4F6;
}
.compliance-card--light {
  background-color: #ffffff;
  border: 1px solid #F3F4F6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.compliance-card--light:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.compliance-card--light .compliance-card__top {
  padding: 30px;
  background-color: #F0F0F3;
}
.compliance-card--light .compliance-card__top h3 {
  color: #05164d;
  margin-top: 10px;
  margin-bottom: 5px;
}
.compliance-card--light .compliance-card__top p {
  color: #364153;
}
.compliance-card--light ul {
  background-color: #ffffff;
}
.compliance-card--light ul li {
  color: #364153;
  position: relative;
  padding-left: 30px;
}
.compliance-card--light ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/industry-v11/black-check.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 0px;
}
.compliance-card--dark {
  border: none;
  box-shadow: 0px 4px 14px 3px rgba(0, 0, 0, 0.0588235294);
}
.compliance-card--dark .compliance-card__top {
  padding: 30px;
  background-color: #FFF8E9;
}
.compliance-card--dark .compliance-card__top h3 {
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 5px;
}
.compliance-card--dark .compliance-card__top p {
  color: rgba(255, 255, 255, 0.7);
}
.compliance-card--dark ul {
  background-color: #ffffff;
}
.compliance-card--dark ul li {
  color: #364153;
  padding-left: 30px;
  position: relative;
}
.compliance-card--dark ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/industry-v11/black-check.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 0;
}
.compliance-card--dark .compliance-card__footer {
  background-color: #ffffff;
}
.compliance-card__top h3 {
  color: #101828;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
.compliance-card__top p {
  line-height: 1.5;
  margin: 0;
}
.compliance-card .card-body-part {
  padding: 20px 17px 30px 30px;
  background-color: #ffffff;
  min-height: 255px;
}
.compliance-card .card-body-part h3 {
  color: #1C2024;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.compliance-card ul {
  list-style: none;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compliance-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #60646C;
  line-height: 140%;
}
.compliance-card ul li::before {
  margin-top: 2px;
}
.compliance-card ul li a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .compliance-section {
    padding: 60px 0;
  }
  .compliance-section__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 640px) {
  .compliance-section {
    padding: 48px 0;
  }
  .compliance-section__header {
    margin-bottom: 32px;
  }
  .compliance-card__top,
  .compliance-card ul, .compliance-card__footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.compliance-card__top {
  min-height: 188px;
}

.compliance-card--dark .compliance-card__top {
  background-color: #05164d;
}

.compliance-card--dark .compliance-card__top p {
  color: #D1D5DC;
  font-size: 16px;
  font-weight: 500;
}

.compliance-card__top span {
  padding: 5px 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background-color: rgba(37, 99, 235, 0.1490196078);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #2563EB;
}

.compliance-card--dark .compliance-card__top span {
  color: #2563EB;
  background-color: rgba(37, 99, 235, 0.2);
}

.compliance-card--dark .compliance-card__top h3 {
  color: #ffffff;
  font-weight: 700;
}

.compliance-card__footer {
  padding: 30px 30px 30px;
  border-top: 1px solid #F3F4F6;
  position: relative;
}

.security-section {
  background-color: #ffffff;
}
.security-section__header {
  text-align: center;
  margin-bottom: 60px;
}
.security-section__header h2 {
  color: #05164D;
  margin-bottom: 15px;
}
.security-section__header p {
  margin: 0 auto;
  max-width: 630px;
  font-size: 18px;
  color: #364153;
}
.security-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .security-section ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .security-section ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .security-section ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.security-section ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 24px;
}
@media screen and (max-width: 1024px) {
  .security-section ul li {
    grid-template-columns: repeat(4, 1fr);
    border-right: 1px solid !important;
    border-image-source: linear-gradient(90deg, #F2F2F2 0%, #B9B9B9 49.52%, #F2F2F2 100%) !important;
    border-image-slice: 1;
    border-right: 1px solid !important;
    border-bottom: 1px solid !important;
  }
}
.security-section ul li:nth-child(5) {
  border-right: 0 !important;
}
.security-section ul li:nth-child(10) {
  border-right: 0 !important;
}
.security-section ul li:nth-child(n+6) {
  border-right: 1px solid;
  border-image-source: linear-gradient(90deg, #F2F2F2 0%, #B9B9B9 49.52%, #F2F2F2 100%);
  border-image-slice: 1;
}
.security-section ul li:nth-child(-n+5) {
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(90deg, #F2F2F2 0%, #B9B9B9 49.52%, #F2F2F2 100%);
  border-image-slice: 1;
}
.security-section ul li img {
  width: 100px;
  height: 100px;
  object-fit: none;
  display: block;
}
@media (max-width: 768px) {
  .security-section ul li img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .security-section ul li img {
    width: 64px;
    height: 64px;
  }
}
.security-section ul li.nist {
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.security-section ul li.nist span {
  display: block;
}
.security-section ul li.nist span:first-child {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -1.5px;
  line-height: 1;
  font-family: "Georgia", serif;
  font-style: italic;
}
.security-section ul li.nist span:last-child {
  font-size: clamp(9px, 1vw, 11px);
  color: #656565;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.stories-section {
  background: #f6f6f6;
}
.stories-section .inner-part {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 768px) {
  .stories-section .inner-part {
    gap: 28px;
  }
}
.stories-section__top {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .stories-section__top {
    flex-direction: column;
    gap: 20px;
    align-items: self-start;
  }
}
.stories-section__heading-wrap {
  width: 55%;
}
@media (max-width: 768px) {
  .stories-section__heading-wrap {
    width: 100%;
  }
}
.stories-section h2 {
  font-weight: 800;
  color: #05164d;
  line-height: 100%;
  margin-bottom: 10px;
}
.stories-section p {
  line-height: 160%;
  font-weight: 500;
  color: #60646C;
  max-width: 590px;
}
.stories-section__btn-wrap {
  display: flex;
  align-items: center;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .stories-section__btn-wrap {
    padding-top: 0;
  }
}
.stories-section__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
@media (max-width: 992px) {
  .stories-section__grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  display: flex;
  padding: 30px;
  border-radius: 20px;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0px 4px 14px 3px rgba(0, 0, 0, 0.0588235294);
}
.story-card:hover {
  box-shadow: 0px 0px 20px 5px rgba(29, 91, 196, 0.1490196078);
  border: 1px solid #1D5BC4;
}
.story-card--featured {
  grid-row: 1/3;
}
@media (max-width: 768px) {
  .story-card--featured {
    grid-row: auto;
  }
}
.story-card--featured .story-card__image-wrap {
  height: 300px;
}
@media (max-width: 1024px) {
  .story-card--featured .story-card__image-wrap {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .story-card--featured .story-card__image-wrap {
    height: 200px;
  }
}
.story-card--featured h3 {
  font-size: 22px;
  font-width: 600;
  line-height: 100%;
  margin-bottom: 10px;
}
.story-card--featured p {
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  color: #60646C;
}
.story-card--small {
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 640px) {
  .story-card--small {
    flex-direction: column;
  }
}
.story-card--small .story-card__image-wrap {
  width: 200px;
  min-width: 260px;
  height: auto;
  border-radius: 0;
}
.story-card--small .story-card__image-wrap .img-part {
  border-radius: 20px;
  overflow: hidden;
}
.story-card--small .story-card__image-wrap .img-part img {
  height: 216px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .story-card--small .story-card__image-wrap {
    width: 160px;
    min-width: 160px;
  }
}
@media (max-width: 480px) {
  .story-card--small .story-card__image-wrap {
    width: 100%;
    min-width: unset;
    height: 180px;
  }
}
.story-card--small .story-card__content {
  padding: 0 0 0 30px;
  display: flex;
  flex-direction: column;
}
.story-card--small .story-card__content h3 {
  font-size: 22px;
  font-weight: 600 !important;
  color: #1C2024;
  line-height: 100%;
  margin-bottom: 10px;
}
.story-card--small .story-card__content p {
  font-size: 16px;
  font-weight: 500;
  color: #60646C;
  margin-bottom: 0;
  line-height: 160%;
}
.story-card--small .story-card__name {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #101828;
}
.story-card--small .story-card__desc {
  font-size: 16px;
  font-weight: 500;
  color: #4A5565;
}
.story-card__image-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.story-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.story-card__name {
  font-weight: 700;
  color: #101828;
  font-size: 24px;
}
.story-card__desc {
  color: #4A5565;
  font-weight: 500;
  font-size: 16px;
}
.story-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #1D5BC4;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.story-card__link::after {
  content: "";
  background: url("../images/index-v10/right-blue.svg") no-repeat;
  width: 16px;
  height: 19px;
  background-size: 100%;
  display: inline-block;
  margin-left: 7px;
  margin-top: 4px;
}

.story-card--featured .story-card__content {
  padding-top: 30px;
}

@media screen and (max-width: 640px) {
  .story-card--small .story-card__content {
    padding: 20px 0 0 0;
  }
  .story-card--small .story-card__image-wrap {
    width: 100%;
  }
}
.slide-logo .logo-section {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.hero-section .primary_btn {
  margin-top: 50px;
}

.master-header.header-bg.sc-up .master-menu-desktop li a {
  color: #4b5563;
}

.master-header.sc-down.header-bg:hover .master-menu-desktop li a {
  color: #4b5563;
}

.master-header.header-bg:hover {
  border-bottom: 0;
}

.master-header .logo-size .site-logo-img.bg-logo {
  display: block;
}

.master-header {
  background: transparent;
  border: none;
}

.master-btn.button-v10.second a {
  background: transparent !important;
  border: 1px solid #99A1AF;
}

.master-header.sc-up .logo-size.dark .site-logo-img.bg-logo {
  display: block;
}

.master-header.sc-up .logo-size .site-logo-img.bg-logo {
  display: none;
}

.master-header.sc-up {
  background: transparent;
}

.master-header.sc-up .light {
  display: block !important;
}

.master-menu-desktop {
  max-width: 540px;
}

.master-header {
  margin-top: 33px;
}

.master-menu-desktop .nav-item-base {
  color: #F8FAFC;
}

.master-header.sc-up {
  margin-top: 30px;
}

.master-header.header-bg.sc-up {
  margin-top: 0;
}

.btn-secondry {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #05164D;
  padding: 9px 62px;
  border: 1px solid #6A7282;
  border-radius: 50px;
  text-decoration: none;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  gap: 10px;
  line-height: 30px;
  transition: background 0.3s ease;
  position: relative;
  z-index: 9;
  overflow: hidden;
  transition: 0.4s;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .btn-secondry {
    padding: 9px 5px;
  }
}

.btn-secondry::before {
  background: url(../images/index-v10/view-all.svg);
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-size: 19px !important;
  vertical-align: middle;
}

.btn-secondry::after {
  background-color: #05164D;
  width: 8%;
  height: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: 50%;
  border-radius: 50%;
  transition: 0.4s;
  z-index: -1;
  opacity: 0;
}

.btn-secondry:hover {
  color: #6AA0FF;
  z-index: 10;
  border: 1px solid #05164D;
}

.btn-secondry:hover::after {
  left: 50%;
  right: 0;
  opacity: 1;
  width: 100%;
  transition: 0.4s;
  height: 100%;
  border-radius: 0;
}

.btn-secondry:hover::before {
  background: url(../images/index-v10/right-arrow-big.svg);
  width: 19px;
  height: 19px;
}

.btn-secondry i {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
  justify-content: center;
}

.hero-section.indus {
  background-color: #050505;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 350px);
}
.hero-section.indus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, #000000 48.4%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.hero-section.indus .dis-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-section.indus .dis-flex .left-box {
  width: 50%;
  position: relative;
  z-index: 11;
}
.hero-section.indus .dis-flex .right-part {
  width: 50%;
}

.hero-section.has-video .banner-video {
  position: absolute;
  right: 0;
  height: 100%;
  width: 70%;
  top: 90px;
}
.hero-section.has-video .banner-video video {
  width: 100%;
  height: calc(100% - 90px);
}
@media screen and (max-width: 1024px) {
  .hero-section.has-video .banner-video {
    display: none !important;
  }
}

.hero-section.has-banner-img {
  position: relative;
}
.hero-section.has-banner-img::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  margin-top: 0;
  background-size: cover !important;
  background: url("https://www.valuecoders.com/staging/wp-content/uploads/2026/05/image-1-scaled.webp");
  background-position: right center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .hero-section.has-banner-img::after {
    display: none !important;
  }
}

.hero-section.indus .master-btn {
  margin-top: 30px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .hero-section.indus .master-btn {
    margin-bottom: 20px;
  }
}

.dark-client-section .left-box a {
  text-decoration: none;
}

.master-btn {
  text-decoration: none;
  display: inline-flex;
}

.master-btn .btn-circle:hover {
  text-decoration: none !important;
}

.logo-size .dark {
  display: none !important;
}

.master-btn .btn-circle {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  padding: 11px 58px 11px 20px;
  border-radius: 60px;
  background: #FFAD00;
  color: #05164D;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  transition: background 0.3s ease;
}

.master-btn .btn-circle:hover {
  background: #f0a000;
}

.master-btn .text {
  position: relative;
  height: 26px;
  overflow: hidden;
  display: block;
}

.master-btn .text::before,
.master-btn .text::after {
  content: attr(data-text);
  display: block;
  transition: transform 0.35s ease;
  will-change: transform;
  color: #05164D !important;
}

.master-btn .text::after {
  position: absolute;
  left: 0;
  top: 100%;
  color: #05164D;
}

.master-btn .btn-circle:hover .text::before,
.master-btn .btn-circle:hover .text::after {
  transform: translateY(-100%);
  text-decoration: none;
}

.master-btn .circle {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0b2a6f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.master-btn .circle img {
  width: 50px;
  transition: transform 0.4s ease;
}

.master-btn .btn-circle:hover .circle img {
  transform: translateX(150%);
}

.master-btn .circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/index-v10/move-right.svg) center/20px no-repeat;
  transform: translateX(-150%);
  background-size: 50px;
  transition: transform 0.4s ease;
}

.master-btn .btn-circle:hover .circle::after {
  transform: translateX(0);
}

.master-btn.button-v10.second a {
  background: transparent !important;
  border: 1px solid #99A1AF;
}

.hero-section.indus .dis-flex .left-box h1 {
  line-height: 120%;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-section.indus .dis-flex .left-box h1 em {
  color: #6AA0FF;
  font-style: normal;
}

.hero-section.indus .dis-flex .left-box h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 26px;
}

.hero-section.indus .dis-flex .left-box h3 em {
  font-style: normal;
  color: #6AA0FF;
  margin-bottom: 20px;
}

.hero-section.indus .dis-flex .left-box p {
  line-height: 160%;
  color: rgba(252, 252, 252, 0.87);
  font-weight: 400;
}
.hero-section.indus .dis-flex .left-box p:first-of-type {
  margin-top: 0;
}

.hero-section.indus .dis-flex .left-box ul {
  list-style: none;
  margin-top: 20px;
}

.hero-section.indus .dis-flex .left-box ul li {
  position: relative;
  margin: 0 0 15px;
  color: rgba(252, 252, 252, 0.87);
  padding-left: 30px;
  font-size: 16px;
  line-height: 28px;
}

.hero-section.indus .dis-flex .left-box a {
  color: #fff;
}

.hero-section.indus .dis-flex .left-box .breadcrumbs a {
  color: #bababa;
}

.hero-section.indus .dis-flex .left-box a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .hero-section .dis-flex .left-box h1 {
    line-height: 1.4;
  }
  .hero-section.indus.indus .banner-img {
    display: none;
  }
  .hero-section.indus.indus.has-video .banner-video {
    display: none;
  }
  .hero-section.indus.indus .dis-flex .left-box {
    width: 100%;
  }
  .master-header.header-bg.sc-up .header-inner .btn-menu-toggle svg {
    fill: #05164d !important;
  }
  .master-header.sc-down.header-bg .header-inner .btn-menu-toggle svg {
    fill: #05164d !important;
  }
  .master-header .header-inner .btn-menu-toggle svg {
    fill: #fff !important;
  }
  .master-header.sc-up {
    margin-top: 0;
  }
  .master-header {
    margin-top: 0;
  }
}
.padding-b-80 {
  padding-bottom: 80px;
}

.slide-logo .box p {
  font-size: 16px;
  font-weight: 400;
}

.slide-logo .box h2 {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 0 !important;
}

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

.slide-logo .numbring-part {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 15px;
  justify-content: space-between;
}

.slide-logo .numbring-part .box {
  border-right: 1px solid #F3F4F6;
  padding: 20px;
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .slide-logo .numbring-part .box {
    width: 50%;
  }
  .slide-logo .numbring-part .box:nth-child(2) {
    border: none;
  }
}

.slide-logo .numbring-part .box:last-child {
  border: none;
}

.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: #52606d;
  font-size: 20px;
  margin: 0 35px;
  background: #fff;
  position: relative;
}

.slide-logo .logo-heading h4 span {
  margin: 0 35px;
  background: #fff;
}

.slide-logo .logo-heading strong {
  color: #2563EB;
}

.slide-logo .logo-heading:before {
  width: 100%;
  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: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(5, 22, 77, 0.4);
}

.slide-logo .logo-section .glide__slide {
  height: 70px;
}

.slide-logo .logo-section .glide__slide img {
  width: 100%;
  vertical-align: middle;
}

@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;
  }
}
.dark-client-section {
  background: linear-gradient(180deg, #00196A 0%, #05164D 100%);
}

.dark-client-section .right-box .client-section .client-row .client-stack ul li {
  background: #10256F;
}

.client-img-section .right-box .client-section .award-sc {
  margin-top: 35px;
}

.client-img-section .right-box .award-sc .award-row {
  margin-top: 10px;
}

.dark-client-section .left-box h2 em {
  font-style: normal;
  color: #6AA0FF;
}

.dark-client-section .left-box .btn-primary-two {
  margin-top: 50px;
}

.dark-client-section .right-box .award-sc .award-row .award-col {
  background-color: #132E8E;
}

.dark-client-section .right-box .award-sc .award-row .award-col:hover {
  background-color: #284CC9;
}

.client-img-section .right-box .award-sc h5 {
  font-size: 16px;
  font-weight: 700;
}

.client-img-section .right-box .client-section {
  gap: 15px;
}

@media (max-width: 768px) {
  .stories-section__top {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.client-img-section .master-btn.button-v10 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .client-img-section .master-btn.button-v10 {
    margin-top: 25px;
  }
}

.experts-talk-first-section .button-section .btn-sec {
  justify-content: center;
}
.experts-talk-first-section .button-section .btn-sec .btn {
  background-color: #ffffff;
  color: #05164d;
}
.experts-talk-first-section .button-section .btn-sec .btn.rounded:before {
  background-color: #FFAD00;
}
.experts-talk-first-section .button-section .btn-sec .btn.rounded .text-white {
  color: #05164d;
}
.experts-talk-first-section .button-section .btn-sec .btn.rounded:hover {
  text-decoration: none;
}
.experts-talk-first-section .button-section .free-con a {
  color: #ffffff;
  opacity: 1;
}
.experts-talk-first-section .button-section .free-con a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.slide-logo-part .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-part .logo-heading h4 {
  color: #1C2024;
  font-size: 20px;
  margin: 0 35px;
  background: #fff;
  position: relative;
}

.slide-logo-part .logo-heading h4 span {
  margin: 0 35px;
  background: #fff;
}

.slide-logo-part .logo-heading strong {
  color: #2563EB;
  font-weight: 800;
}

.slide-logo-part .logo-heading:before {
  width: 100%;
  content: "";
  height: 0.197px;
  background: #F0F0F3;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.slide-logo-part {
  padding: 30px 0 56px;
  /* pause on hover */
}
.slide-logo-part .logo-slider {
  overflow: hidden;
  width: 100%;
}
.slide-logo-part .logo-slider .logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogo 20s linear infinite;
}
.slide-logo-part .logo-slider .logos {
  flex-shrink: 0;
  padding-right: 20px;
}
.slide-logo-part .logo-slider .logos img {
  height: 70px;
  width: auto;
  display: block;
}
.slide-logo-part .logo-slider:hover .logo-track {
  animation-play-state: paused;
}
@keyframes scrollLogo {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.slide-logo .logos .glide__slide {
  height: 92px;
}

.slide-logo .logos .glide__slide img {
  width: 100%;
  vertical-align: middle;
}

@media only screen and (max-width: 479px) {
  .slide-logo {
    display: none;
    padding: 30px 0;
  }
  .slide-logo-part .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 .logos {
    width: 100%;
    margin: 0 auto;
  }
  .slide-logo .logos .glide__slide {
    height: auto;
  }
}

/*# sourceMappingURL=industries-v12.css.map */
