@import url("https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary: #0066a6;
  --primary-rgb: 0, 102, 166;
  --theme-color: #0066a6;
  --theme-light: #4da8e1;
  --body-color: #e9f1f7;
  --white-color: #fff;
  --black-color: #000;
  --secondary-color: #f98613;
  --main-btn-color: #f98613;
  --heading-color: #0c1f2a;
  --text-muted: #545454;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --fs-banner: clamp(2.5rem, 6vw, 4.5rem);
  --fs-heading: clamp(2rem, 4vw, 2.8rem);
  --fs-subheading: clamp(1rem, 2vw, 1.25rem);
  --fs-body: 1rem;
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --banner-font: var(--fw-bold) var(--fs-banner)/var(--lh-tight)
    var(--font-heading);
  --heading-font: var(--fw-semibold) var(--fs-heading)/var(--lh-tight)
    var(--font-heading);
  --sub-heading-font: var(--fw-regular) var(--fs-subheading)/1.4
    var(--font-heading);
  --body-font: var(--fw-regular) var(--fs-body)/var(--lh-normal)
    var(--font-body);
  --btn-font: var(--fw-medium) 1rem/1rem var(--font-heading);
  --nav-font: var(--fw-regular) 1rem/1.2 var(--font-body);
  --footer-font: var(--fw-regular) 0.8125rem/1.75 var(--font-body);
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --radius-md: 12px;
  --radius-pill: 50px;
  --shadow-soft: 0px 12px 22px rgba(0, 0, 0, 0.05);
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-xl,
  .container-xxl {
    max-width: 1280px !important;
  }
}

@media (max-width: 1300px) and (min-width: 991px) {
  .container,
  .container-lg,
  .container-md,
  .container-xl,
  .container-xxl {
    max-width: 1080px !important;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html,
body {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
body {
  background-color: var(--white-color);
  font: var(--body-font);
  color: var(--heading-color);
}

.video-wrapper {
  overflow: hidden;
  position: relative;
}

video {
  display: block;
  width: 100%;
  margin: -1px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
}

.primary-text {
  color: var(--theme-color) !important;
}
a.primary-text {
  text-decoration: underline;
}
.secondary-text {
  color: var(--secondary-color) !important;
}
.bg-light-primary {
  background-color: #f1f5fa;
}
.bg-light-gray100 {
  background-color: #f8f6f4;
}

h1 {
  font: var(--banner-font);
  letter-spacing: -0.02em;
}

h2 {
  font: var(--heading-font);
}

h3 {
  font: var(--font-heading);
}

h2 {
  font-family: "Anton", sans-serif;
  font-style: normal;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 65px;
  line-height: 74px;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-family: "Anton", sans-serif;
  font-style: normal;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 span {
  text-transform: lowercase;
}

h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
}

p,
a {
  font: var(--font-heading);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  font-weight: 500;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  -webkit-font-smoothing: antialiased;
}
p.small {
  line-height: 1.3;
}

a:hover {
  color: var(--theme-color);
}

.form-control,
.form-select,
button {
  transition: 0.3s ease-in-out;
  background: none;
  box-shadow: none;
  outline: 0px;
}

.form-control:focus,
.form-select:focus,
button:focus {
  border: 0px;
}

::-webkit-scrollbar {
  width: 0.35rem;
}

::-webkit-scrollbar-track {
  background: var(--theme-color);
}

::-webkit-scrollbar-thumb {
  background: var(--white-color);
}

::selection {
  color: rgb(255, 255, 255);
  background-color: rgb(62, 100, 175);
}

.main-btn.blue-btn {
  position: relative;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 80px;
  background: var(--heading-color);
  color: var(--white-color);
  font: var(--btn-font);
  transition: 0.3s ease-out;
}

.main-btn.blue-btn:hover {
  background-color: var(--main-btn-color);
  color: var(--white-color);
}

#navigation_bar .navbar-btn .main-btn.blue-btn:hover img {
  filter: brightness(0) invert(1);
}

.blue-btn.blue-btn {
  background-color: var(--theme-color);
}

.section-spacing {
  padding: clamp(4rem, 1rem + 2vw, 4rem) 0px 0px;
}

.container-fluid {
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}

picture {
  display: block;
}

.zoom-hover picture {
  overflow: hidden;
}

.zoom-hover picture img {
  transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.zoom-hover:hover picture img {
  transform: scale(1.1);
}

.loader {
  position: fixed;
  inset: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  background: url("../images/logo.svg") center center no-repeat
    rgb(255, 255, 255);
}

.swiper-wrapper {
  padding-bottom: 3rem;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 20px;
  margin-bottom: 30px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(196, 196, 196);
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--main-btn-color);
  width: 10px !important;
  height: 10px !important;
  border-radius: 20px !important;
}

header {
  position: fixed;
  transition: top 0.6s ease-in-out;
  z-index: 999;
  width: 100%;
  padding: 0.6rem 0;
  top: 0;
}

#navigation_bar .black-logo {
  display: none;
}

#navigation_bar.nav-down .black-logo {
  display: block;
}

#navigation_bar .navbar-brand picture {
  display: inline-block;
}

#navigation_bar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.navbar-nav .nav-link,
.navbar-nav .nav-item {
  white-space: nowrap;
}

#navigation_bar .nav-link {
  font: var(--nav-font);
  color: var(--black-color);
  padding: 0.5rem 0.2rem;
  transition: 0.4s;
  border-radius: 6px;
  letter-spacing: normal;
  font-weight: 500;
}

#navigation_bar .nav-link:hover,
#navigation_bar .nav-link.active,
#navigation_bar.nav-down .nav-link:hover {
  color: var(--theme-color) !important;
}

#navigation_bar .nav-item.dropdown {
  position: relative !important;
}

#navigation_bar .nav-link.dropdown-toggle::after {
  background: url("../images/menu/dropdown-arrow.svg") 0% 0% / contain no-repeat;
  display: inline-block;
  height: 10px;
  width: 10px;
  border: 0px;
  position: relative;
  top: 4px;
  left: 5px;
}

#navigation_bar.nav-down {
  top: 0px;
  background: var(--white-color);
  margin-top: 0px;
  box-shadow: var(--shadow-soft);
}

#navigation_bar.nav-down .nav-link {
  color: var(--black-color) !important;
}

#navigation_bar.nav-scrolltop {
  box-shadow: none;
}
#navigation_bar.nav-up {
  top: -140px;
}

#navigation_bar a.navbar-brand {
  padding: 0px;
}

#navigation_bar .flag-select {
  position: relative;
  width: 23px;
  cursor: pointer;
  height: 15px;
  display: flex;
  align-items: center;
}

#navigation_bar .flag-select::after {
  content: "";
  background: url("../images/menu/dropdown-arrow.svg") center center / contain
    no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#navigation_bar .flag-trigger {
  padding: 0px;
  background: none;
  border: 0px;
  display: flex;
  justify-content: center;
  width: 100%;
}

#navigation_bar .flag-trigger img {
  width: 24px;
  height: 18px;
  object-fit: cover;
}

#navigation_bar .flag-list {
  position: absolute;
  top: 200%;
  left: -10px;
  width: 60px;
  background: var(--white-color);
  border-radius: 6px;
  display: none;
  z-index: 10;
  padding: 1rem 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#navigation_bar .flag-item {
  padding: 6px;
  text-align: center;
}

#navigation_bar .flag-item img {
  width: 24px;
  height: 18px;
}

#navigation_bar .flag-item:hover {
  background: var(--white-color);
}

#navigation_bar .navbar-right.desktop {
  display: flex;
  justify-content: space-between;
  width: fit-content;
  align-items: center;
  gap: 40px;
}

#navigation_bar .navbar-right.mobile {
  display: none !important;
}

#navigation_bar .navbar-btn .main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 6px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

#navigation_bar .navbar-btn {
  display: flex;
  gap: 0.5rem;
}

#navigation_bar .navbar-btn .main-btn img {
  filter: brightness(0) invert(1);
}

#navigation_bar .navbar-btn .main-btn:hover img {
  filter: unset;
}

#navigation_bar .dropdown-menu-1 {
  max-width: 1054px;
  width: 1054px;
  border: 0px;
  background: none;
  border-radius: 16px;
  box-shadow: none;
  transform: translateX(-10%);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  position: absolute !important;
  top: 150% !important;
  left: 0% !important;
  z-index: 999999 !important;
  display: block !important;
  right: 0px !important;
  padding: 0;
}
.dropdown-box .col-md-6 {
  background: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-left: -1px;
}
.dropdown-menu .col-md-4 {
  position: relative;
  padding-bottom: 20px;
  border-radius: 16px 0 0 16px;
  padding-right: 0;
}
.dropdown-menu .col-md-4 .left-side {
  background: #fff;
}
.dropdown-box .col-md-6:last-child {
  border-radius: 0 16px 16px 0;
}
#navigation_bar .dropdown-menu-2 {
  width: auto;
  min-width: 230px;
  max-width: 330px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: translateX(-10%);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  position: absolute !important;
  top: 150% !important;
  left: 0 !important;
  z-index: 999999 !important;
  display: block !important;
  padding: 0;
}

#navigation_bar .dropdown-menu-2,
#navigation_bar .dropdown-menu-2:hover,
#navigation_bar .dropdown-menu-2:focus,
#navigation_bar .dropdown-menu-2:focus-within {
  border-color: transparent !important;
}

#navigation_bar .nav-item.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

#navigation_bar ul.dropdown-box {
  list-style: none;
  padding: 0;
}

#navigation_bar ul.dropdown-box-1 {
  /*background-color: var(--white-color);*/
  padding: 1rem 1rem;
  border-radius: 16px 0 0 16px;
  max-width: 100%;
}

#navigation_bar ul.dropdown-box-1 a.dropdown-item {
  gap: 8px;
}

#navigation_bar a.dropdown-item {
  display: flex;
  margin-bottom: 0rem;
  gap: 0px;
  transition: 0.3s ease-out;
  width: 100%;
}

#navigation_bar .dropdown-icon {
  display: block;
  width: 41px;
  height: 34px;
  flex: 0 0 15%;
}

#navigation_bar ul.dropdown-box-1 .dropdown-icon {
  flex: 0 0 13%;
}

li.nav-item.dropdown.single-menu .dropdown-icon {
  display: block;
  width: 40px;
  height: 34px;
  flex: 0 0 12% !important;
}

#navigation_bar .dropdown-content h3 {
  color: var(--black-color);
  line-height: normal;
  margin-bottom: 5px;
  font-size: 16px;
  font-family: var(--heading-font) important;
  text-transform: capitalize;
  font-weight: 500;
}

#navigation_bar .dropdown-content p {
  font-size: 0.8rem;
  line-height: normal;
  color: rgb(144, 144, 144);
  margin-bottom: 8px;
}

#navigation_bar .dropdown-box li:last-child a,
#navigation_bar .dropdown-box li:last-child a p {
  /*margin-bottom: 0;*/
}

#navigation_bar .dropdown-item:focus,
#navigation_bar .dropdown-item:hover,
#navigation_bar .dropdown-item.active,
#navigation_bar .dropdown-item:active {
  background: unset;
  border: 0;
  outline: 0;
  box-shadow: unset;
}

#navigation_bar .dropdown-icon img {
  filter: grayscale(100%);
}

#navigation_bar .dropdown-item:focus .dropdown-icon img,
#navigation_bar .dropdown-item:hover .dropdown-icon img,
#navigation_bar .dropdown-item.active .dropdown-icon img,
#navigation_bar .dropdown-item:active .dropdown-icon img {
  filter: unset;
}

#navigation_bar .dropdown-item:focus .dropdown-content h3,
#navigation_bar .dropdown-item:hover .dropdown-content h3,
#navigation_bar .dropdown-item.active .dropdown-content h3,
#navigation_bar .dropdown-item:active .dropdown-content h3,
#navigation_bar .dropdown-item:focus .dropdown-content p,
#navigation_bar .dropdown-item:hover .dropdown-content p,
#navigation_bar .dropdown-item.active .dropdown-content p,
#navigation_bar .dropdown-item:active .dropdown-content p {
  color: var(--theme-color);
}
ul#inner-tabs {
  margin-top: 15px;
}
.borde-radius {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 20px;
}
.line-only-no-code {
  position: relative;
}

#navigation_bar ul.dropdown-box.dropdown-box-2,
#navigation_bar #inner-tabs-content {
  padding-top: 0px;
}
li#pay-tab-2:before {
  display: none;
}
li#pay-tab-3:before {
  display: none;
}
li#pay-tab-4:before {
  display: none;
}
li#pay-tab-5:before {
  display: none;
}
li#pay-tab-6:before {
  display: none;
}
li#pay-tab-7:before {
  display: none;
}
li#solutions-tab-1:before {
  display: none;
}
/* =====================================================
New Css 12 jan 2025 – FINAL WORKING (LINE + ARROW FIXED)
===================================================== */

#navigation_bar ul.dropdown-box li {
  position: relative;
}

/* ---------- Vertical blue line (li based) ---------- */
#navigation_bar ul.dropdown-box li::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -1px;
  width: 1px;
  height: 80%;
  background-color: #0066a6;
  opacity: 0;
}

#navigation_bar ul.dropdown-box.no-line li::before {
  display: none !important;
  content: none !important;
}

/* ---------- Make dropdown-item relative ---------- */
#navigation_bar ul.dropdown-box li > a.dropdown-item {
  position: relative;
}

/* ---------- Arrow (aligned with h3, NOT p) ---------- */
#navigation_bar ul.dropdown-box li > a.dropdown-item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 19px;
  width: 6px;
  height: 14px;
  background: url(../images/menu/dropdown-right-arrow.svg) no-repeat center;
  background-size: contain;
  opacity: 0;
}

#navigation_bar ul.dropdown-box.no-line li > a.dropdown-item::after {
  display: none;
  content: none;
}

/* =====================================================
SHOW when INNER <a> is ACTIVE
    (Column 1 & Column 2)
    ===================================================== */

/* Vertical line */
#navigation_bar .dropdown-box-1 li:hover::before,
#navigation_bar .dropdown-box-2 li:hover::before,
#navigation_bar .dropdown-box-1 li:has(> a.dropdown-item.active)::before,
#navigation_bar .dropdown-box-2 li:has(> a.dropdown-item.active)::before {
  opacity: 1;
}

/* Arrow */
#navigation_bar .dropdown-box-1 li > a.dropdown-item:hover::after,
#navigation_bar .dropdown-box-2 li > a.dropdown-item:hover::after,
#navigation_bar .dropdown-box-1 li > a.dropdown-item.active::after,
#navigation_bar .dropdown-box-2 li > a.dropdown-item.active::after {
  opacity: 1;
}

/* =====================================================
    Disable for 3rd column
    ===================================================== */

#navigation_bar #inner-tabs-content li::before,
#navigation_bar #inner-tabs-content li > a::after {
  display: none !important;
}

#navigation_bar ul.dropdown-box.tabs-6 li > a.dropdown-item {
  position: relative;
  padding: 4px 0.7rem 4px;
}

.white-bg {
  /*background-color: var(--white-color);*/
  border-radius: 16px 0 0 16px;
  max-width: 100%;
}

#navigation_bar a.btn.main-btn.blue-btn {
  border-radius: 6px;
}

#navigation_bar .dropdown-menu.show {
  border-radius: 16px; /*
    box-shadow: var(--shadow-soft);*/
  border: none;
}

/* flag menu */
.country-dropdown,
.flag-select {
  position: relative;
  overflow: visible !important;
}

.flag-trigger img {
  width: 28px;
  height: auto;
  cursor: pointer;
}

/* dropdown box */
.flag-list {
  position: absolute;
  top: 120%;
  right: 0;
  background: #eef7fb;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
}

/* hover open */
.flag-select:hover .flag-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* items */
.flag-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: #0a66c2;
  cursor: pointer;
}

.flag-item img {
  width: 22px;
}

/* hover effect */
.flag-item:hover {
  opacity: 0.8;
}

/* Home Page Start */

.main-page-wrapper {
  margin-top: 6rem;
}
.main-page-wrapper.home {
  margin-top: 8rem;
}
#main-page-wrapper {
  margin-top: 6rem;
}

.hero-slider {
  width: 100%;
  height: 500px;
}

.hero-slider .swiper-slide {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.hero-slider .swiper-slide img {
  /* width: 100%;
  height: 100%;
  object-fit: cover;*/
  display: block;
  max-width: 100%;
}
.platform {
  margin-top: 0;
  overflow: hidden;
}
.platform-heading {
  padding-top: 2rem;
}
.platform-heading p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  margin-bottom: 5px;
  padding: 5px 0 15px;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 25px;

  background: var(--main-btn-color);
  color: var(--white-color);

  border-radius: 6.4px;
  font: var(--btn-font);
  text-decoration: none;

  position: relative;
  overflow: hidden;
}

.main-btn:hover {
  color: var(--white-color);
}

.main-btn__label {
  position: relative;
  z-index: 2;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline;
  color: inherit;
  font: inherit;
}

/* flair layer */
.main-btn__flair {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform;
  z-index: 1;
}

.main-btn__flair::before {
  content: "";
  position: absolute;
  width: 285%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--theme-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-btn.primary-btn {
  background-color: var(--theme-color);
}
.main-btn.primary-btn .main-btn__flair::before {
  background: var(--main-btn-color);
}
.main-btn.white-btn {
  background-color: var(--white-color);
  color: var(--theme-color);
}
.main-btn.white-btn:hover {
  color: var(--white-color);
}
.main-btn.white-btn .main-btn__flair::before {
  background: var(--main-btn-color);
}
.platform-image picture {
  overflow: hidden;
  border-radius: 20px;
}

/*==================
    Breadcrumb
=======================*/
.breadcrumb-title ol.breadcrumb {
  display: flex;
  align-items: center;
}

.breadcrumb-title li.breadcrumb-item,
.breadcrumb-title li.breadcrumb-item a {
  font-family: var(--font-heading);
  color: #acacac;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0;
}

.breadcrumb-title li.breadcrumb-item.active {
  color: var(--main-btn-color);
}

.breadcrumb-title .breadcrumb {
  margin-bottom: 0px;
}

/*================================
RBI Approved Section
==================================*/

.RBI-approved-section {
  margin-top: -30px;
}

.RBI-approved-content {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background-color: #f8f6f4;
  width: 100%;
  height: 73px;
  text-align: left;
  padding: 0 20px;
}

.RBI-approved-content img {
  width: 45px;
}

.RBI-approved-content-right {
  display: flex;
  flex-direction: column;
  gap: 0px;
  height: 72px;
  padding-top: 10px;
}

.RBI-approved-content-right hr {
  color: #b57f11;
  margin: 0px;
}

.RBI-approved-content-right-top h4 {
  font-size: 12.1px;
  font-weight: 600;
  color: #545454;
  margin: 0px;
}

.RBI-approved-content-right-bottom p {
  font-size: 10.6px;
  color: #b57f11;
}

#navigation_bar .col-md-8 .row .col-md-6:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 20px;
}
#navigation_bar.nav-down .col-md-8 .row .col-md-6 {
  background: #f1f5fa;
}
#navigation_bar .col-md-8 .row .col-md-6 {
  background: #f1f5fa;
  /*border-top-right-radius: 10px;
    border-bottom-right-radius: 20px;*/
}

@media (max-width: 1300px) and (min-width: 992px) {
  .RBI-approved-section {
    margin-bottom: 20px;
  }
  .RBI-approved-content {
    width: 100%;
    height: 65px;
  }
  .RBI-approved-content-right-top h4 {
    font-size: 10.5px;
  }
  .RBI-approved-content-right-bottom p {
    font-size: 9.6px;
  }
}

@media (max-width: 992px) {
  .RBI-approved-section {
    margin-top: -15px;
    margin-bottom: 20px;
  }
  .RBI-approved-content {
    width: 100%;
    height: 55px;
    padding: 0 10px;
    border-radius: 10px;
  }
  .RBI-approved-content img {
    width: 35px;
  }
  .RBI-approved-content-right-top h4 {
    font-size: 9px;
  }
  .RBI-approved-content-right-bottom p {
    font-size: 7px;
  }

  section#secure .secure-buttons.d-lg-none.d-block {
    text-align: center;
  }
}

/*================================
 every-payment section start 
 =================================*/
#every-payment {
  padding: 80px 0;
}

.every-payment-content {
  padding-bottom: 50px;
}

.card-face.card-front img {
  border-radius: 20px;
}

.card-face.card-front picture {
  overflow: hidden;
  border-radius: 20px;
}

.card-face.card-front h4 {
  position: absolute;
  top: 25px;
  left: 20px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: var(--white-color);
}

.card-face.card-front {
  position: relative;
}

.card-face.card-back h4 {
  position: absolute;
  top: 25px;
  left: 25px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 2%;
  text-transform: uppercase;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s ease;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: 20px;
}

.card-face {
  backface-visibility: hidden;
  border-radius: 20px;
}

.card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  padding: 40px 25px;
  color: var(--white-color);
}

.card-face.card-back p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  color: var(--white-color);
  margin-top: 55px;
  padding-right: 25px;
}

/* DEFAULT STATE */
.payment-card {
  opacity: 1;
  transform: none;
  border-radius: 20px;
  transition:
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.6s ease;
}

.payment-cards {
  margin: 0 5rem;
}

/* ======================================
    Business Worldwide Section Start 
    =====================================*/
section#business-worldwide {
  padding: 20px 0 60px;
}

.row.business-worldwide-spacing {
  margin: 0 5rem;
}

.business-worldwide-icon {
  width: 63px;
  height: 63px;
}

.business-worldwide-para h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 49.53px;
  line-height: 34.78px;
  letter-spacing: 0;
  color: var(--theme-color);
  padding: 15px 0 0px;
}

.business-heading p {
  font-family: var(--font-heading);
}

.business-worldwide-right {
  padding-left: 50px;
}

.business-worldwide-para p {
  margin-bottom: 0;
  font-size: 15px;
  font-family: var(--font-heading);
}

.business-worldwide-box {
  padding-top: 10px;
}

/* counter */
#business-worldwide .impact-counter {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* digit container */
#business-worldwide .digit-con {
  height: 60px;
  overflow: hidden;
  display: inline-block;
}

/* rolling strip */
#business-worldwide .digit-strip {
  position: relative;
  display: block;
  top: 0;
}

#business-worldwide .digit-strip span {
  display: block;
  height: 60px;
  line-height: 60px;
}

#business-worldwide .counter-symbol {
  display: inline-block;
  line-height: 60px;
  margin: 0 2px;
}

/* Payment Platform Section */

.payment-platform-heading p {
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.payment-platform-wrapper {
  position: relative;
  padding: 70px 0 0;
}

.payment-platform-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background-color: #f1faff;
  z-index: 0;
}

.payment-platform-wrapper > section {
  position: relative;
  z-index: 1;
}

/* ===============================
    card animation
    ================================ */
#payment-platform {
  width: 100%;
}

/* ===============================
    BOOTSTRAP FIX
    ================================ */
.payment-platform.container-fluid {
  padding: 0;
  height: 100%;
  overflow: visible;
}

/* ===============================
    FLEX WRAPPER
    ================================ */
.payment-platform-content {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 10px;
  padding: 50px 50px 0;
  align-items: center;
}

/* ===============================
    CARD BASE
    ================================ */
.platform-card {
  flex: 1;
  position: relative;
  height: 491px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s ease;
  background: #000;
}

/* ===============================
    CENTER CARD DEFAULT OPEN
    ================================ */
.platform-card.active {
  flex: 3;
}

/* ===============================
    IMAGE FULL COVER
    ================================ */
.platform-card picture,
.platform-card img {
  inset: 0;
  width: 100%;
  height: 100%;
}

.platform-card img {
  object-fit: cover;
  display: block;
}

/* ===============================
    HOVER EFFECT (WIDTH ONLY)
    ================================ */
.payment-platform-content:hover .platform-card {
  flex: 1;
}

.payment-platform-content .platform-card:hover {
  flex: 3;
}

/* ===============================
    DARK GRADIENT FOR IMAGE
    ================================ */
.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.45)
  );
  pointer-events: none;
}

/* ===============================
    INFO BOX (CLOSED STATE)
    ================================ */
.platform-inner-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 198px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(220, 220, 220, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s ease;
  overflow: hidden;
  z-index: 2;
}

/* ===============================
    LEFT CONTENT
    ================================ */
.platform-left h2 {
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.platform-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.platform-inner-box a.arrow-btn img {
  width: 44px;
  height: 44px;
}

/* ===============================
    RIGHT IMAGE (HIDDEN BY DEFAULT)
    ================================ */
.platform-right {
  opacity: 0;
  transform: translateX(40px);
  visibility: hidden;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

.platform-right .card-img {
  max-width: 180px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

/* ===============================
    CARD OPEN (ACTIVE / HOVER)
    ================================ */
.platform-card.active .platform-inner-box,
.platform-card:hover .platform-inner-box {
  height: 198px;
}

/* content should be above gradient */
.platform-inner-box {
  z-index: 3;
}

.platform-right {
  z-index: 3;
}

.payment-platform-content .platform-card:hover .platform-right {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.payment-platform-content.swiper {
  overflow: visible;
}

.payment-platform-content .swiper-wrapper {
  display: flex;
  gap: 10px;
}

.payment-platform-content .swiper-slide {
  width: auto !important;
}

/* Section One View Start */
section#one-view {
  padding: 70px 0;
}

.one-view-content {
  /*display: flex;
  flex-direction: column;
  align-items: center;*/
  padding: 0 60px;
}

.one-view-content h2 {
  padding-bottom: 50px;
}
/*Section Every Business Start*/
.business-tabs-slider-content div#nav-tab {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 40px;
}

.every-business-title h2 {
  padding-bottom: 40px;
}

/* ===============================
    BUSINESS TABS STYLING
    ================================ */
.business-tabs-slider-content .nav-tabs {
  border: none;
  gap: 40px;
}

/* ===============================
    TAB BUTTON BASE STYLE
    ================================ */
.business-tabs-slider-content .nav-tabs .nav-link {
  background: transparent;
  border: none;
  color: #d9d9d9;
  font-weight: 400;
  font-size: 40px;
  line-height: 43px;
  letter-spacing: 5%;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
  padding: 0;
  transition: color 0.3s ease;
}

/* ===============================
    ACTIVE TAB STYLE
    ================================ */
.business-tabs-slider-content .nav-tabs .nav-link.active {
  color: var(--main-btn-color);
  background: transparent;
}

/* sub tabs start */
.common-sub-tabs .nav-tabs {
  border: none;
  gap: 7px !important;
}

.common-sub-tabs button.nav-link {
  font-family: var(--font-heading) !important;
  font-weight: 400 !important;
  font-style: Regular;
  font-size: 15px !important;
  line-height: 26px !important;
  letter-spacing: 0;
  color: var(--theme-color) !important;
  background-color: #f4faff !important;
  text-transform: capitalize !important;
  padding: 3px 20px !important;
  transition: color 0.3s ease;
  border-radius: 6px;
}

.common-sub-tabs .nav-tabs .nav-link.active {
  background: var(--main-btn-color) !important;
  color: #fff !important;
}

.subtab-bg-image {
  position: relative;
}

.sub-tab-bg-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.sub-tab-bg-content span {
  font-family: var(--font-heading);
  background: #ffffffe5;
  padding: 8px 20px;
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

.sub-tab-bg-content h3 {
  font-family: "Anton", sans-serif;
  color: var(--theme-color) !important;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
}

.sub-tab-bg-content p {
  color: var(--text-muted);
}

.subtab-bg-image {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 16px;
}

/* IMAGES */
.subtab-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.subtab-image.active {
  opacity: 1;
  z-index: 1;
}

/* CONTENT */
.sub-tab-bg-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(220, 220, 220, 0.9);
  padding: 30px 28px;
  border-radius: 20px;
  width: 30%;
  height: auto;
  min-height: 350px;
  max-height: 80%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.5s ease;
}

.sub-tab-bg-content.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  z-index: 5;
}

/* ARROWS */
.subtab-arrows {
  position: absolute;
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 6;
  justify-content: space-around;
  width: 60%;
}

/* Arrow button – BASE STYLE */
.subtab-arrows button.subtab-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: transparent;
  border: 1.5px solid var(--theme-color);
  color: var(--theme-color);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  line-height: 1;

  cursor: pointer;
  padding: 0;

  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.subtab-arrows button.subtab-arrow.active {
  border-color: var(--main-btn-color);
  color: var(--main-btn-color);
}

/* new css extra sub content start */

/* Section Intelligent Start */
#intelligent {
  padding: 70px 0;
}

.intelligent-image {
  width: 100%;
  height: 100%;
}

.intelligent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}

.intelligent-inner-box:hover {
  box-shadow: 0px -2px 50.9px rgba(0, 102, 166, 0.22);
  border-color: transparent;
}

.intelligent-inner-box {
  padding: 40px 35px;
  border-radius: 20px;

  border: 1px solid rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  height: 100%;
  background: #fff;

  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.intelligent-icon {
  margin-bottom: 6px;
}

.intelligent-icon img {
  display: block;
}

.intelligent-inner-box h4 {
  font-family: "Anton", sans-serif;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin: 0;
  margin-top: 6px;
}

.intelligent-inner-box p {
  font-size: 15px;
  line-height: 23px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  text-align: center;
  margin: 0;
}
.ready-to-go-left p {
  color: #fff;
}

/* Certified Section Start */

.certified-content {
  padding: 0 90px;
}

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

.certified-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Go-Live Section Start */

#go-live {
  padding: 85px 0 0;
}

.go-live-left {
  width: 60%;
}

.go-live-left p {
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.go-live-step p {
  color: var(--text-muted);
  min-height: 105px;
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  font-family: var(--font-heading);
}

.go-live-step span.step-no {
  font-family: var(--font-heading);
  color: var(--main-btn-color);
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0;
}

.go-live-step h5 {
  font-family: "Anton", sans-serif;
  color: var(--theme-color);
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-top: 10px;
}

.go-live-step {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 20px;
}

/* IMAGE CONTROL */
.go-live-step-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.go-live-step-box {
  background-color: #f8f6f4;
  padding: 32px;
  border-radius: 20px;

  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.go-live-step-box:hover {
  box-shadow: 0px -1px 10.9px rgba(0, 30, 120, 0.22);
  border-color: transparent;
}

/* STEP 2 special treatment */
.go-live-step-box.step-wide {
  padding: 18px 20px;
}

.go-live-step-box.step-wide img {
  max-width: 110%;
  max-height: 100%;
}

@media (min-width: 1301px) {
  .go-live-step-box img {
    width: 200px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  .go-live-step p {
    padding-bottom: 80px;
  }
}

/*================ Progress Section Start=================== */
section#progress {
  padding: 40px 0 70px;
  margin-left: 3rem;
  overflow: hidden;
}

.moment-progress-slider .card {
  height: 100%;
  text-align: left;
}

.moment-progress-slider {
  position: relative;
}

.progress-arrows {
  display: flex;
  gap: 12px;
}

.swiper.moment-progress-slider .swiper-wrapper {
  padding-bottom: 0rem;
}

.moment-progress.desktop {
  padding-left: 50px;
}

.progress-heading {
  padding-top: 20px;
}

/* Base button */
.progress-arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--theme-color);
  color: var(--theme-color);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.progress-arrows button.active {
  border-color: var(--main-btn-color);
  color: var(--main-btn-color);
  background: transparent;
}

.progress-image picture {
  overflow: hidden;
  border-radius: 16px;
}

.progress-row-content {
  position: relative;
}

.moment-progress-slider .swiper-slide {
  height: auto;
}
/*
.moment-progress-slider .swiper-slide > div {
  height: 100%;
}
*/
.moment-progress-slider .swiper-slide,
.moment-mobile-swiper .swiper-slide {
  padding-top: 140px;
}
.moment-progress-slider .slidebox,
.moment-mobile-swiper .slidebox {
  background: #f8f6f4;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 36px 40px;
  position: relative;

  display: flex;
  flex-direction: column;

  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  max-width: 460px;
}
.profile-image {
  width: 188px;
  height: 188px;
  border-radius: 50%;
  border: 2px solid #f98613;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -140px auto 10px;
  .profilelogo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background-color: #f8f6f4;
    box-shadow: 1px 3px 7px 1px rgb(1, 1, 68, 55%);
    padding: 15px;
    img {
      max-width: 100%;
      vertical-align: middle;
      transition: all 0.3s ease;
    }
    .nrlogo {
      display: block;
      transition: all 0.3s ease;
    }
    .hovlogo {
      display: none;
      transition: all 0.3s ease;
    }
  }
}

.profile-info {
  display: flex;
  align-items: center;
}
.progress-author {
  width: 100%;
}
.quote-box {
  display: block;
  width: 80px;
  height: 30px;
  margin: 10px auto;
  /*background-image: url("../images/i-quote.svg");*/
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23C6C6C6' d='M20.5 13.5v15.6H2.2V14l5-12.8h10.3l-3.2 12.4H20.5z'/%3E%3Cpath fill='%23C6C6C6' d='M27.7 16.8V1.2h18.2v15.2l-5 12.8H30.6l3.2-12.4H27.7z'/%3E%3C/svg%3E");

  background-position: center;
  background-repeat: no-repeat;
}
.quote-box img {
  display: block;
}
.ratingstars {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 30px;
}

.swiper.moment-progress-slider .progress-text,
.moment-mobile-swiper .progress-text {
  max-height: 210px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0 0 15px;
  overflow: auto;
  -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
  scrollbar-gutter: stable; /* prevents layout shift (supported in most modern browsers) */
}

.swiper.moment-progress-slider .progress-text::-webkit-scrollbar,
.swiper.moment-mobile-swiper .progress-text::-webkit-scrollbar {
  width: 10px;
}

.swiper.moment-progress-slider .progress-text::-webkit-scrollbar-track,
.swiper.moment-mobile-swiper .progress-text::-webkit-scrollbar-track {
  background: transparent;
  margin: 25px 0; /* SHORTENS scrollbar height */
  border-radius: 10px;
}

.swiper.moment-progress-slider .progress-text::-webkit-scrollbar-thumb,
.swiper.moment-mobile-swiper .progress-text::-webkit-scrollbar-thumb {
  background: #0066a6;
  border-radius: 10px;
  /* MAGIC LINE */
  border: 3px solid transparent;
  background-clip: content-box;
}

.progress-author h5 {
  font-family: var(--font-heading);
  color: #212121;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0;
  margin-bottom: 0;
  padding: 10px 0 2px;
}

.progress-author span {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 500;
  font-style: Regular;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  display: block;
}

.progress-desk-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/*========== 
First Step Section Start 
=============== */
section#first-step {
  padding: 70px 0;
}

.first-step-content {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* Image */
.first-step-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Right overlay content */
.first-step-right {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);

  max-width: 420px;
  z-index: 2;
}

.first-step-right h2 {
  font-size: 55px;
  color: var(--white-color);
  line-height: 63px;
}

.first-step-right p {
  color: var(--white-color);
  font-family: var(--font-heading);
  font-weight: 400;
}

/* Trusted Section Start */

.business-worldwide-para h3 span {
  text-transform: capitalize;
}

#trusted {
  background-color: #002a45;
  padding: 70px 0;
}

.trusted-heading h2 {
  color: var(--white-color);
}

.trusted-heading p {
  color: var(--white-color);
  font-family: var(--font-heading);
  font-weight: 400;
}

.trusted-heading {
  padding-bottom: 40px;
}

.trusted-content {
  position: relative;
}

.trusted-content::before,
.trusted-content::after {
  content: "";
  position: absolute;
  top: 0;
  width: 35%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* LEFT FADE */
.trusted-content::before {
  left: 0;
  background: linear-gradient(
    to right,
    #002a45 0%,
    rgba(0, 42, 69, 0.85) 40%,
    rgba(0, 42, 69, 0) 100%
  );
}

/* RIGHT FADE */
.trusted-content::after {
  right: 0;
  background: linear-gradient(
    to left,
    #002a45 0%,
    rgba(0, 42, 69, 0.85) 40%,
    rgba(0, 42, 69, 0) 100%
  );
}

/* Swiper core fixes */

.trusted-slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.trusted-slider .swiper-wrapper {
  padding-bottom: 10px;
}

.trusted-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.trusted-slider .swiper-slide {
  flex-shrink: 0;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trusted-slider img {
  border-radius: 50px;
  max-height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.trusted-slider .swiper-slide {
  margin-right: 0px;
}
#transpricing {
  padding: 20px 0 45px 0;
}
.transpricingwrap {
  background-color: #0066a6;
  background-image: url("../images/home/pricingbg.jpg");
  background-position: center center;
  background-size: cover;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0 50px;
}
.transpricingwrap .brdiv {
  display: block;
}
.transpr-img {
  width: 50%;
  text-align: center;
  padding: 0 35px 0 0;
}

.transpr-img img {
  max-width: 100%;
  vertical-align: middle;
}
.transpr-data {
  width: 60%;
  padding: 35px;
  color: #a9d2ff;
  font-size: 30px;
  line-height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.transprsub {
  text-align: center;
  padding-top: 20px;
}
.transprsub .brdivbott {
  position: relative;
  padding-left: 30px;
}
.transprsub .brdivbott:before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background-color: #a9d2ff;
  position: absolute;
  top: 5px;
  left: 10px;
}
.transprtitle {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 95px;
  line-height: 124px;
  text-align: right;
}
.transprtitle .brtop {
  display: block;
  padding-right: 40px;
}
.transprtitle .brline {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
}
.transprtitle .brline:before {
  content: "";
  width: 50%;
  height: 5px;
  background-color: #fff;
  display: block;
}
.translist {
  list-style-type: none;
  margin: 0;
  padding: 30px 0 0;
}
.translist li {
  position: relative;
  margin: 0;
  padding: 0 35px 10px 0;
  display: flex;
  justify-content: end;
}
.translist li:before {
  content: "";
  display: block;
  width: 28px;
  height: 22px;
  background-image: url("../images/checkthick-org.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px 20px;
  position: absolute;
  top: 2px;
  right: 0;
}
/* #main-page-wrapper section {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
} */

#main-page-wrapper section {
  transform: none;
  backface-visibility: visible;
  margin-bottom: 10px;
}

/* Footer css Start */
footer#site-footer {
  background-color: #f1f5fa;
  padding: 60px 0 50px;
}

.footer-main-heading {
  font-family: var(--font-heading);
  color: var(--theme-color);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0;
  padding-bottom: 15px;
  border-bottom: 0.89px solid var(--text-muted);
  margin-bottom: 15px;
}

.footer-sub-heading {
  font-family: var(--font-heading);
  color: var(--theme-color);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0;
}

#site-footer h5 {
  font-family: var(--font-heading);
  color: var(--theme-color);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0;
}

#site-footer ul li a {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 500;
  font-style: Medium;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 0;
}

ul.footer-support li {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 500;
  font-style: Medium;
  font-size: 13px;
  letter-spacing: 0;
}

#site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img.support {
  margin-right: 9px !important;
}

#site-footer ul li a:hover {
  color: var(--theme-color);
}

h6.footer-main-heading {
  padding-top: 30px;
}

ul.footer-support li {
  padding: 5px 0;
}

a.flag-link img {
  margin-right: 5px;
}

ul.footer-support img {
  margin-right: 5px;
}

ul.footer-cert-logos {
  display: flex;
  justify-content: flex-start;
}

ul.footer-cert-logos li {
  margin-right: 30px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-logos {
  margin-top: 6rem;
  padding-top: 16px;
}

.footer-bottom {
  border-top: 0.89px solid var(--text-muted);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom span,
.footer-bottom span a {
  color: var(--text-muted);
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0;
}

.footer-bottom span a:hover {
  color: var(--theme-color);
}

.sociallink {
  list-style-type: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.sociallink li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: rgba(var(--primary-rgb), 1);
  border-radius: 40px;
}
.sociallink li:hover {
  background-color: rgba(var(--primary-rgb), 0.9);
}
.sociallink i {
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px 26px;
}
.sociallink i.fb {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFFFFF' d='M16.8 25v-9h2.7l.4-4h-3.2v-1.9c0-1 0-2.1 1.5-2.1h1.5V5.1s-1.3-.1-2.5-.1c-2.6 0-4.3 1.7-4.3 4.7V12H10v4h2.9v9h3.9z'/%3E%3C/svg%3E");
}
.sociallink i.in {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFFFFF' d='M25 25h-4v-7c0-1.9-.8-3-2.4-3-1.7 0-2.6 1.1-2.6 3v7h-4V12h4v1.5s1.3-2.2 4.1-2.2c2.8 0 4.9 1.7 4.9 5.3V25zM7.4 9.9C6.1 9.9 5 8.8 5 7.4 5 6 6.1 5 7.4 5c1.3 0 2.4 1 2.4 2.4 0 1.4-1.1 2.5-2.4 2.5zM5 25h5V12H5v13z'/%3E%3C/svg%3E");
}
.sociallink i.ins {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFFFFF' d='M20.1 26.2h-10c-3.3 0-6-2.7-6-6v-10c0-3.3 2.7-6 6-6h10c3.3 0 6 2.7 6 6v10c0 3.3-2.7 6-6 6zM10.1 6.2c-2.2 0-4 1.8-4 4v10c0 2.2 1.8 4 4 4h10c2.2 0 4-1.8 4-4v-10c0-2.2-1.8-4-4-4H10.1z'/%3E%3Cpath fill='%23FFFFFF' d='M15.1 20.1c-1.1 0-2.1-.3-3-1-1.1-.8-1.8-2-2-3.3-.4-2.7 1.5-5.3 4.2-5.7.5-.1 1-.1 1.5 0 2.2.3 3.9 2 4.2 4.2.2 1.3-.1 2.6-.9 3.7-.8 1.1-2 1.8-3.3 2-.2.1-.5.1-.7.1zM15.1 12.1c-.1 0-.3 0-.4 0-1.6.2-2.8 1.8-2.5 3.4.2 1.6 1.8 2.8 3.4 2.5.8-.1 1.5-.5 2-1.2s.7-1.4.6-2.2c-.2-1.3-1.2-2.3-2.5-2.5-.2 0-.3 0-.5 0z'/%3E%3Cpath fill='%23FFFFFF' d='M20.6 10.7c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.1-.1-.2-.1-.4 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .1 0 .3-.1.4s-.1.2-.2.3c-.2.2-.5.3-.7.3z'/%3E%3C/svg%3E");
}
.sociallink i.yt {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFFFFF' d='M12.8 17.8v-6.2c2.2 1 3.9 2 5.9 3.1-1.7 1-3.7 2-5.9 3.1m12.2-9.2c-.4-.5-1-.9-1.7-1-2-.4-14.6-.4-16.6 0-.6.1-1 .4-1.5.7-1.8 1.6-1.2 10.5-.8 11.9.2.6.4 1.1.7 1.4.4.4.9.7 1.5.8 1.7.3 10.2.5 16.6.1.6-.1 1.1-.4 1.5-.8 1.7-1.6 1.6-10.9.3-13z'/%3E%3C/svg%3E");
}
.sociallink a {
  display: block;
}
/**/

.thankyou-popup {
  display: block;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 9999;
}

.thank-you-box {
  text-align: center;
  background: #fff;
  width: 38%;
  padding: 40px;
  margin: auto;
  position: relative;
  top: 16%;
  z-index: 99991;
  border-radius: 20px;
}
.thank-you-box .close-popup {
  position: absolute;
  right: 20px;
  top: 20px;
}

.thank-you-box h5 {
  color: #0054a6;
  font-size: 24px;
  margin-top: 0;
}
.thankyou-popup:before {
  content: "";
  background: #000000d4;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 11111;
}
.thank-you-box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  margin: 0px 0 10px;
  text-transform: capitalize;
  margin-top: 20px;
}
.thank-you-box .secure-buttons a.main-btn {
  margin: 0;
  width: 100%;
  padding: 14px;
  margin-top: 10px;
}
#prevention-safety-popup .thank-you-box {
  top: 0%;
}
/* =========================================
Payment Gateway Page Start
===========================================*/

#secure {
  padding-bottom: 70px;
}

#secure a.main-btn.transperent {
  background: none;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

#secure a.main-btn.transperent:hover {
  color: var(--white-color);
}

#secure .secure-buttons {
  display: flex;
  gap: 25px;
}

.secure-buttons a.main-btn {
  margin-right: 15px;
}

#secure .secure-image picture {
  overflow: hidden;
  border-radius: 20px;
}

#secure .secure-left-box p {
  font: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: var(--text-muted);
  padding: 20px 0;
}

/* Section Use Airpay start */

#use-airpay .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.use-airpay-title p {
  margin-bottom: 0;
}

.use-airpay-swiper {
  width: 100%;
  padding: 2rem;
  padding-bottom: 60px;
  overflow: visible;
}

.use-airpay-content {
  overflow: visible;
}

.use-airpay-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.use-airpay-swiper .swiper-slide {
  width: 550px;
}

.use-airpay-card {
  text-align: left;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.use-airpay-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(172, 214, 248, 0.644);
  z-index: 10;
}

.use-airpay-card-content {
  background: rgb(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  height: 165px;
  width: 360px;
  padding: 1rem;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.use-airpay-card-content h4 {
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .use-airpay .swiper-slide {
    width: 420px;
  }

  .use-airpay-card-content {
    width: 80%;
    height: auto;
    left: 30px;
  }
}

@media (max-width: 767px) {
  .use-airpay-swiper {
    padding: 1rem 0.5rem;
  }

  .use-airpay .swiper-slide {
    max-width: 420px;
  }

  .use-airpay-card-1,
  .use-airpay-card-2,
  .use-airpay-card-3,
  .use-airpay-card-4,
  .use-airpay-card-5,
  .use-airpay-card-6 {
    max-width: 480px;
    height: 360px;
    padding: 10px;
  }
}

@media (max-width: 479px) {
  .use-airpay .swiper-slide {
    width: 390px;
  }

  .use-airpay .swiper-slide {
    width: 390px;
  }

  .use-airpay-card-1,
  .use-airpay-card-2,
  .use-airpay-card-3,
  .use-airpay-card-4,
  .use-airpay-card-5,
  .use-airpay-card-6 {
    max-width: 370px;
    height: 360px;
  }
}

/* Section 3 Start */

#simple-setup {
  background-color: #f8f6f4;
  padding: 60px 0;
}

.simple-setup-image picture {
  overflow: hidden;
  border-radius: 20px;
}

.setup-box h3 {
  line-height: 41px;
}

.setup-box h5 {
  font-family: var(--font-heading);
  color: var(--theme-color);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0;
}

.simple-setup-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.simple-setup-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 35px;
  width: 85%;
  height: 100%;
}

/* ======= */
.payments-options {
  padding-top: 50px;
}

.payments-options .payment-options-title h3 {
  line-height: 49px;
}

.payments-options .payments-options {
  padding: 80px 0;
  background: #fffaf6;
}

.payments-options .payment-options-title h3 {
  color: var(--theme-color);
  font-size: 36px;
}

.payments-options .payment-options-title p {
  margin-bottom: 15spx;
}

.payments-options .payment-option-box {
  background: var(--white-color);
  border-radius: 18px;
  padding: 13px 25px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.payments-options .payment-option-box .tag {
  font-family: var(--font-heading);
  color: var(--main-btn-color);
  font-weight: 500;
  font-style: Bold;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
}

.payments-options .payment-option-box .logos {
  display: flex;
  gap: 0px;
  margin: 15px 0 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.payments-options .payment-option-box img {
  height: 28px;
  object-fit: contain;
}

.payments-options .payment-option-box small {
  font-family: var(--font-heading);
  color: var(--theme-color);
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0;
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
}

.payments-options .logo-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.payments-options .logo-item span {
  font-family: var(--font-heading);
  color: #acacac;
  font-weight: 500;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0;
}

/* =============================
   Payment Charges Section Start
 ===============================*/

#payment-charges {
  padding: 60px 0;
}

.payment-charges-box {
  text-align: center;
  padding: 0 30px;
}

.payment-charges-box img {
  margin-bottom: 12px;
}

/* Heading */
.payment-charges-box p {
  color: var(--theme-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 5px;
  padding-top: 15px;
}

.payment-charges-title h3 {
  line-height: 48px;
}

/* Description */
.payment-charges-box span {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  text-align: center;
}

.payment-charges-content .row > div:not(:last-child) {
  border-right: 1px solid #d9d9d9;
}

/* =====================================================
   FAQ ACCORDION 
===================================================== */
#faq {
  padding: 50px 0;
}

.faq-title h3 {
  padding-bottom: 30px;
}

#faq .accordion-button {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  background: transparent;
}

/* Active title */
#faq .accordion-button:not(.collapsed) {
  color: var(--main-btn-color);
}

/* Body text */
#faq .accordion-body {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
}

/* Remove default accordion border */
#faq .accordion {
  border: none;
  --bs-accordion-border-width: 0;
}

/* Remove focus glow */
#faq .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

/* DEFAULT item = transparent */
/* Accordion item spacing control */
#faq .accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 10px;
  margin-bottom: 0px;
  padding: 0;
}

/* Inner padding on header + body */
#faq .accordion-button {
  padding: 18px 24px;
}

#faq .accordion-body {
  padding: 12px 24px 20px;
}

/* ACTIVE background only */
#faq .accordion-item:has(.accordion-collapse.show) {
  background-color: #f8f6f4;
  border-radius: 10px;
  margin-bottom: 0;
}

#faq .accordion-item .accordion-collapse.show {
  background: transparent;
}

/* Default (closed) arrow down */
#faq .accordion-button::after {
  background-image: url("../images/accordion-down-arrow.svg");
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* Active (open) = arrow UP + orange */
#faq .accordion-button:not(.collapsed)::after {
  background-image: url("../images/accordion-up-arrow.svg");
  /* up arrow */
  transform: rotate(0deg);
  filter: brightness(0) saturate(100%) invert(62%) sepia(94%) saturate(470%)
    hue-rotate(356deg);
}

/*=============================
    Ready To Go Section Start 
===============================*/

.ready-to-go-content img {
  border-radius: 0;
}

.ready-to-go-left h3 {
  color: var(--white-color);
  line-height: 44px;
  padding-bottom: 10px;
}

.ready-to-go-content {
  position: relative;
}

.ready-to-go-left {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 2;
}

.ready-to-go-left a.main-btn.transperent {
  background: transparent;
  border: 1px solid var(--white-color);
  box-sizing: border-box;
}

.ready-to-go-left a.main-btn.transperent:hover {
  background: transparent;
  border-color: transparent;
}

/* Subscriptions Page Start */
.airpay-subscriptions-title h3 {
  padding-bottom: 15px;
}

.key-features-title {
  padding-left: 3rem;
}

.airpay-subscriptions-box h4 {
  color: var(--theme-color);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
  z-index: 2;
}

.airpay-subscriptions-box p {
  font: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: var(--text-muted);
  margin-bottom: 0;
  padding: 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.airpay-subscriptions-box {
  padding: 30px 10px 30px 10px;
}

.airpay-subscriptions-inner-box {
  background-color: #f8f6f4;
  border-radius: 20px;
  height: 100%;
}

.airpay-subscriptions-swiper,
.airpay-subscriptions-swiper .swiper-wrapper {
  height: 100%;
  padding-bottom: 50px;
  padding-left: 10px;
}

.airpay-subscriptions-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.airpay-subscriptions-inner-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.airpay-subscriptions-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.subscription-box-image {
  margin-top: auto;
}

.subscription-box-image picture {
  overflow: hidden;
  border-radius: 20px;
}

.airpay-subscriptions-inner-box:hover {
  background-color: var(--main-btn-color);
  box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}

.airpay-subscriptions-inner-box:hover h4,
.airpay-subscriptions-inner-box:hover p {
  color: var(--white-color);
  transition: color 0.3s ease;
}

.airpay-subscriptions-title p {
  margin-bottom: 0;
  padding-bottom: 35px;
}

/* Why Choose Airpay Section Start */

#why-choose-airpay {
  background-color: #f1f5fa;
  padding: 60px 0;
}

.why-choose-airpay-box {
  background-color: var(--theme-color);
  border-radius: 20px;
  height: 100%;
}

.why-choose-airpay-box:hover {
  background-color: var(--main-btn-color);
}

.choose-content {
  padding: 25px 50px 45px;
}

.choose-content h4 {
  color: var(--white-color);
  margin-bottom: 0;
  padding: 20px 0;
}

.choose-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.why-choose-airpay-content h3 {
  color: var(--theme-color);
  padding-bottom: 35px;
}

/* Key Features Section Start */

#key-features {
  padding: 70px 0 50px;
  overflow: hidden;
}

.key-features-content > .row {
  align-items: stretch;
}

.key-features-content .col-lg-4,
.key-features-content .col-lg-8 {
  display: flex;
}

.key-features-content .col-lg-4 {
  position: relative;
}

.key-features-content .col-lg-4::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 230px;
  background: #d9d9d9;
  transform: translateY(-60%);
}

.key-features-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  padding-bottom: 80px;
}

.key-features-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.key-features-content .swiper-slide {
  position: relative;
}

.key-features-content .swiper-slide:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #d9d9d9;
}

.key-features-swiper-wrap {
  position: relative;
  margin-left: 0px;
  overflow: hidden;
}

.key-features-swiper {
  overflow: visible;
  padding-left: -50px;
}

.choose-image picture {
  overflow: hidden;
  border-radius: 20px;
}

#why-choose-airpay .col-lg-8 {
  position: relative;
  overflow: hidden;
}

.key-features-box p {
  font-family: var(--heading-font);
  color: var(--theme-color) !important;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  padding-top: 20px;
}

.key-features-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  height: 100%;
  padding: 0px 20px 20px;
}

.key-features-box span {
  font-family: var(--heading-font);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  text-align: center;
}

.key-features-box img {
  height: 40px;
}

/* Long Term Section Start */

#long-term {
  padding: 15px 0 60px;
}

.long-term-box {
  display: flex;
  gap: 20px;
  padding: 15px 0px;
  align-items: center;
}

.long-term-left {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-right: 25px;
}

.long-term-right-content {
  padding-left: 30px;
}

.term-text p {
  margin-bottom: 0;
}

.long-term-left p span {
  font-family: var(--heading-font);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
}

.long-term-box p span {
  font-family: var(--heading-font);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
}

.long-term-image picture {
  overflow: hidden;
  border-radius: 20px;
}

/* Upi Autopay Section Start */
.upi-autopay-content-one.image picture {
  overflow: hidden;
  border-radius: 20px;
}

.upi-autopay-content p span {
  font-family: var(--heading-font);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
}

.upi-autopay-content {
  background-color: #f1f5fa;
  padding: 60px 70px;
}

.upi-autopay-title {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.upi-autopay-content-box {
  background-color: var(--white-color);
  padding: 20px 32px;
  height: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.upi-autopay-content-box p {
  margin-bottom: 0;
}

.autopay-content-title-two {
  padding: 65px 0 30px;
}

/* ===================
Virtual Accounts Page Start
=======================*/

.effortless-settlements-content {
  background-color: #f8f6f4;
  padding: 60px;
  border-radius: 20px;
}

.effortless-settlements-box {
  background-color: var(--white-color);
  padding: 35px 10px 10px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition:
    background-color 0.7s ease,
    box-shadow 0.7s ease,
    transform 0.7s ease;
}

.effortless-settlements-box:hover {
  background-color: var(--theme-color);
  box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
  transform: translateY(-4px);
}

.effortless-settlements-box:hover h4 {
  color: var(--white-color);
}

.effortless-settlements-box h4 {
  font-family: "Anton", sans-serif;
  color: var(--theme-color);
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.effortless-settlements-heading {
  padding-bottom: 25px;
}

/* Unique Digital Section Start  */

section#unique-digital {
  padding: 60px 0;
}

.unique-digital-content {
  background-color: #f1f5fa;
  border-radius: 20px;
}

.unique-digital-text {
  padding: 0px 80px;
}

.unique-digital-image picture {
  overflow: hidden;
  border-radius: 20px;
}

.unique-digital-text h3 {
  padding-bottom: 15px;
}

.unique-digital-text {
  padding: 20px 50px;
}

.unique-digital-text p {
  margin-bottom: 0;
}

.unique-digital-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.virtual-accounts-swiper {
  padding-left: 3rem;
}

.virtual-accounts-swiper,
.virtual-accounts-swiper .swiper-wrapper {
  height: 100%;
  padding-bottom: 60px;
}

.virtual-accounts-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.virtual-accounts-swiper .airpay-subscriptions-box p {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}

.virtual-accounts-swiper .airpay-subscriptions-box {
  padding: 30px 32px;
}

.airpay-subscriptions-title.virtual-accounts h3 {
  padding-bottom: 30px;
}

/*============================
 Why Business Section Start 
 =============================*/

#why-business {
  background-color: var(--theme-color);
  overflow: hidden;
}

.why-business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-choose-right-box {
  padding: 50px;
}

.why-business-content {
  position: relative;
}

.tick-icon-image {
  position: absolute;
  top: 25px;
  right: 25px;
}

.choose-box {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  height: 100%;
}

.choose-box:hover {
  background-color: var(--main-btn-color);
}

.choose-box:hover .tick-icon-image img {
  filter: brightness(0) invert(1);
}

.choose-box h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  color: var(--theme-color);
  line-height: 29px;
  padding-bottom: 15px;
  margin-bottom: 0;
}

.choose-box p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.why-business-title h3 {
  color: var(--white-color);
}

section#why-business {
  margin: 25px 0;
}

.choose-box p {
  line-height: 22px;
}

#why-business .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.why-business-image {
  width: 100%;
}

.why-choose-right-box {
  padding: 0 50px;
}

/*=============================
 Instant Benefits Section Start 
 =============================*/

#instant-benefits {
  padding: 60px 0;
}

.instant-choose-box {
  background-color: #f1f5fa;
  border-radius: 20px;
  position: relative;
  padding: 45px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.instant-choose-box h4 {
  color: var(--theme-color);
  min-height: 60px;
  margin: 0 0 14px;
  display: flex;
  align-items: flex-start;
}

.instant-tick-icon-image {
  position: absolute;
  top: 15px;
  right: 15px;
}

.instant-choose-box p {
  margin-bottom: 0;
}

.instant-choose-box:hover {
  background-color: #fff5ec;
  box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}

/* ===================
   Accounts Work Page Start
=======================*/
section#accounts-work {
  background-color: #f8f6f4;
  padding: 60px 0;
}

.accounts-work-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.accounts-work-content-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.accounts-work-content-left-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accounts-work-content-left-point {
  display: flex;
  justify-content: flex-start;
  align-items: top;
  gap: 1rem;
}

.number-bubble {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: var(--main-btn-color);
  color: white;
  font-size: 15px;
}

.point-content p {
  text-align: left;
  width: 310px;
}

.accounts-work-content-right img {
  width: 865;
}

#accounts-work a.main-btn.transperent {
  background: none;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

#accounts-work a.main-btn.transperent:hover {
  color: var(--white-color);
}

#accounts-work .secure-buttons {
  text-align: center;
  padding-top: 35px;
}

@media (min-width: 992px) and (max-width: 1300px) {
  .accounts-work-content-right img {
    width: 600px;
  }
}

@media (max-width: 991px) {
  .accounts-work-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .accounts-work-content-right img {
    width: 600px;
  }
}

@media (max-width: 767px) {
  .accounts-work-content-right img {
    width: 540px;
  }
}

@media (max-width: 575px) {
  .accounts-work-content-right img {
    width: 420px;
  }
}

/* ============================
   Dash Checkout Page Start
===============================*/

.secure-left-box.checkout h4 {
  color: var(--theme-color);
  margin-bottom: 0;
  line-height: 21px;
  padding-top: 10px;
}

.secure-left-box.checkout p span {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
}

.secure-left-box.checkout p:first-of-type {
  padding-bottom: 0 !important;
  margin-bottom: 0;
}

/* flawless experience Section Start*/

#flawless-experience {
  background-color: #f8f6f4;
  padding: 60px 0;
}

.flawless-box {
  background-color: var(--white-color);
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 30px;
  flex-direction: column;
  text-align: center;
}

.flawless-box p {
  margin-bottom: 0;
}

.flawless-box:hover {
  box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}

/* drop offs section stat*/

#drop-offs {
  padding: 60px 0 25px;
  overflow: hidden;
}

.drop-offs-card {
  background-color: #f3f7fb;
  border-radius: 20px;
  padding: 200px 40px 35px;
  position: relative;
  text-align: center;
}
.drop-offs-card:hover {
  box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}

/* Mobile Image */
.drop-offs-image {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 278px;
}

.drop-offs-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tick + Text */
.drop-offs-badge {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.drop-offs-badge img {
  width: 38px;
  height: 38px;
}

/* Text */
.drop-offs-badge p {
  font-family: var(--font-heading);
  color: #4b5a68;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  margin: 0;
}

/* Swiper overflow fix */
#drop-offs .swiper {
  overflow: visible;
}

.drop-offs-heading {
  padding-bottom: 10rem;
}

#drop-offs .swiper {
  height: 100%;
}

#drop-offs .swiper-wrapper {
  align-items: stretch;
}

#drop-offs .swiper-slide {
  height: auto;
  display: flex;
}

.drop-offs-card {
  height: 100%;
  width: 100%;
}

/* Integration Easy Section Start */

.integration-left {
  background-color: #0066a6;
  border-radius: 20px;
  height: 100%;
  padding: 50px 70px;
}

.integration-left h4 {
  font-family: "Anton", sans-serif;
  color: var(--white-color);
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 41px;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.integration-left h3 {
  color: var(--white-color);
  padding-bottom: 25px;
  margin-bottom: 0;
}

.integration-right picture {
  overflow: hidden;
  border-radius: 20px;
}

.integration-coding-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.integration-coding-box p {
  font-family: var(--font-heading);
  color: var(--white-color);
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 0;
}

.integration-coding-box p span {
  font-family: var(--font-heading);
  color: var(--white-color);
  font-weight: 700;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}

/* Payment Option Checkout Section Start */

section.payments-options.checkout {
  padding: 60px 0 70px;
}

.logo-item.checkout {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

section.payments-options.checkout .payment-options-title {
  padding-bottom: 15px;
}

/* convert more section start */

#convert-more {
  margin-left: 3rem;
  overflow: hidden;
}

.progress-row-content {
  align-items: stretch;
}

.convert-more-box {
  background: #f1f5fa;
  border-radius: 14px;
  overflow: hidden;
}
.convert-more-box:hover {
  box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}
.convert-more-box picture,
.convert-more-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.convert-more-box p {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.convert-more-slider .swiper-slide {
  height: auto;
}

.convert-more-heading p {
  margin: 0;
  padding: 30px 0;
}

/* Why Brand Section Start */

#why-brand {
  padding: 25px 0 70px;
}

.why-brand-image picture {
  overflow: hidden;
  border-radius: 20px;
}

.why-brand-blue-box {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #0066a6;
  border-radius: 100px;
  padding: 12px 45px 12px 15px;
  width: auto;
  gap: 10px;
}
.why-brand-blue-box:hover {
  background-color: var(--main-btn-color);
}
.why-brand-blue-box:hover img {
  filter: brightness(0) invert(1);
}
.why-brand-blue-box p {
  margin-bottom: 0;
  color: #0066a6;
}

.why-brand-heading {
  padding-bottom: 25px;
}
.why-brand-right-content .why-brand-blue-box p {
  color: #fff;
}

/* Your Brand Section Start */

section#your-brand {
  background-color: #0066a6;
  padding: 70px 0;
  margin: 30px 0 50px;
}

.your-brand-heading p,
.your-brand-heading h3 {
  color: var(--white-color);
}

.your-brand-image {
  position: relative;
  display: inline-block;
}

.your-brand-image picture {
  overflow: hidden;
  border-radius: 20px;
}

/*.your-brand-image::before {
    content: "";
    position: absolute;
    top: 25px;
    left: -25px;
    width: 100%;
    height: 100%;
    background: #264660;
    border-radius: 18px;
    z-index: 1;
}*/

.your-brand-image img {
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

.why-brand-blue-box.your-brand {
  background-color: #fff;
}
.why-brand-blue-box.your-brand:hover {
  background-color: var(--main-btn-color);
}
.why-brand-blue-box.your-brand:hover img {
  filter: brightness(0) invert(1);
}
.why-brand-blue-box.your-brand:hover p {
  color: #fff;
}

@media (min-width: 992px) {
  /*============================
         grid boxes manage intelligent 
     =============================*/
  .intelligent-swiper {
    overflow: visible;
  }

  .intelligent-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    transform: none !important;
  }

  .intelligent-swiper .swiper-slide {
    width: auto !important;
  }
  /* ===========================
         grid boxes manage go-live 
    ================================*/
  .go-live-swiper {
    overflow: visible;
  }

  .go-live-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
  }

  .go-live-swiper .swiper-slide {
    width: auto !important;
  }

  .go-live-swiper .swiper-pagination {
    display: none;
  }

  /*================================ 
    every-payment section 
=================================*/

  /* ONLY hovered card flips (90% effect) */
  .payment-card:hover .card-inner {
    transform: rotateY(162deg);
  }

  /* tilt positions — ONLY on hovered card */
  .payment-card.tilt-left:hover {
    transform: translateY(0) rotate(0deg);
    background-color: #002a45;
  }

  .payment-card.tilt-center:hover {
    transform: translateY(0) rotate(0deg);
    background: var(--theme-color);
  }

  .payment-card.tilt-right:hover {
    transform: translateY(0) rotate(0deg);
    background-color: #002a45;
  }

  /* default delay */
  .payment-card,
  .payment-card .card-inner {
    transition-delay: 0.15s;
  }

  /* hovered card = instant response */
  .payment-card:hover,
  .payment-card:hover .card-inner {
    transition-delay: 0s;
  }
}

section#airpay-subscriptions {
  will-change: transform, opacity;
}

@media (min-width: 1440px) {
  .key-features-title {
    padding-left: 5rem;
  }

  #progress {
    margin-left: 5rem !important;
  }
}

/**/

.global-clients-section {
  padding-bottom: 50px;
}
.global-clients-card-content {
  padding: 13px 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  background: #0066a6;
  border-radius: 70px;
  margin-top: 20px;
  height: 76px;
}
.global-clients-card-content p {
  margin: 0;
  font-size: 20px;
  color: #fff;
}
.global-clients-section .section-header h3 {
  margin-bottom: 40px;
}
#main-page-wrapper section.airpay-exim-can-do-section {
  background: #f1f5fa;
  padding: 50px 0;
  margin-bottom: 50px;
}
.airpay-exim-box {
  display: flex;
  flex-direction: row-reverse;
  gap: 29px;
  background: #ffffff;
  padding: 34px;
  margin-bottom: 20px;
  border-radius: 20px;
}
.airpay-exim-box-text h5 {
  color: #0066a6;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 25px;
}
.airpay-exim-box-text p {
  margin-bottom: 0;
  line-height: 19px;
}
.airpay-exim-can-do-section .section-header h3 {
  margin-bottom: 30px;
  text-transform: inherit;
}
.global-businesses-section .section-header h3 {
  margin-bottom: 30px;
  text-transform: inherit;
}
.global-businesses-card {
  background: #f8f6f4;
  display: inline-block;
  padding: 13px 20px;
  border-radius: 100px;
  height: 50px;
  margin-bottom: 10px;
}
.global-businesses-card-content p {
  margin-bottom: 0;
  color: #0066a6;
}
.global-businesses-card-content {
  display: flex;
  gap: 15px;
}

.how-it-works-step h3 {
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 15px;
}
.how-it-works-left {
  background: #0066a6;
  padding: 90px;
  border-radius: 10px;
}
.how-it-works-left h3 {
  color: #fff;
}
.how-it-works-left p {
  color: #fff;
}
.global-businesses-section {
  padding-bottom: 50px;
}

/**/

#navigation_bar .no-line.dropdown-box-2 .only-noCode:hover::before {
}
#navigation_bar
  .no-line.dropdown-box-2
  .only-noCode:has(> a.dropdown-item.active)::before {
  opacity: 1;
}
#navigation_bar ul.dropdown-box.no-line .only-noCode > a.dropdown-item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 19px;
  width: 6px;
  height: 14px;
  background: url(../images/menu/dropdown-right-arrow.svg) no-repeat center;
  background-size: contain;
  opacity: 0;
}
#navigation_bar ul.dropdown-box.no-line .only-noCode:before {
  content: "" !important;
  position: absolute;
  top: 10%;
  right: -1px;
  width: 1px;
  height: 80%;
  background-color: #0066a6;
  opacity: 1;
}

.no-code-line li:first-child::before {
  display: none;
}
.no-code-line li:first-child a::after {
  display: none;
}
.no-code-line li:nth-child(2)::before {
  display: none;
}
.no-code-line li:nth-child(2) a::after {
  display: none;
}

@media (max-width: 991px) {
  .airpay-exim-box {
    flex-direction: row;
  }
  .global-clients-section .section-header h3 {
    text-align: center;
  }
  .how-it-works-step {
    margin-top: 20px;
  }
  .swiper.plug-and-play-swiper {
    text-align: center;
  }
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #0066a6; /* change color as needed */
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  z-index: 999;
  display: none;
}

/* Show when JS adds .show */
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect */
#back-to-top:hover {
  background-color: #333;
  transform: translateY(-3px);
}

/* Optional: active click effect */
#back-to-top:active {
  transform: scale(0.95);
}

/* =====================================================
   Solutions > Ecommerce > No-code submenu
   Stable hover into third column
===================================================== */

#navigation_bar #solutions-tab-2 {
  position: relative;
  margin-left: -13px;
}

/* Second column wrapper */
#navigation_bar #solutions-tab-2 .solutions-no-code-row {
  position: relative;
  width: 50%;
  margin: 0;
  min-height: 165px;
  overflow: visible !important;
}

/* Ecommerce / Dash Checkout / No-code column */
#navigation_bar
  #solutions-tab-2
  .solutions-no-code-row
  > .col-md-6:first-child {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  overflow: visible !important;
}

/* Third No-code panel */
#navigation_bar #solutions-tab-2 .no-code-submenu-panel {
  position: absolute;
  top: 0;

  /* overlaps slightly into the No-code column so the cursor never falls into a dead gap */
  left: calc(100% - 22px);

  width: calc(100% + 22px);
  min-height: 100%;
  padding: 15px 0 20px 22px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 999;
  overflow: visible !important;

  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}

/* Keep content visible inside custom panel */
#navigation_bar #solutions-tab-2 .no-code-submenu-content {
  display: block !important;
  opacity: 1 !important;
}

/* Remove Bootstrap row negative spacing inside third panel only */
#navigation_bar #solutions-tab-2 .no-code-submenu-panel .row {
  margin: 0;
}

/* Full-width list inside third panel only */
#navigation_bar #solutions-tab-2 .no-code-submenu-panel .col-md-12 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0;
}

/* Hide useless empty nested content column inside third panel */
#navigation_bar #solutions-tab-2 .no-code-submenu-panel .col-md-6 {
  display: none;
}

/* Show third column when hovering No-code */
#navigation_bar
  #solutions-tab-2
  .solutions-no-code-row:has(.only-noCode:hover)
  .no-code-submenu-panel,
#navigation_bar #solutions-tab-2 .no-code-submenu-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Bridge pseudo-element: fills the pixel gap between the No-code item and the submenu panel */
#navigation_bar #solutions-tab-2 .only-noCode::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 24px;
  height: 100%;
  background: transparent;
  pointer-events: auto;
}

/* No blue line / arrow for Ecommerce and Dash Checkout */
#navigation_bar #solutions-tab-2 .no-code-line li:not(.only-noCode)::before,
#navigation_bar #solutions-tab-2 .no-code-line li:not(.only-noCode) > a::after {
  display: none !important;
  opacity: 0 !important;
}

/* No-code line/arrow hidden by default */
#navigation_bar #solutions-tab-2 .no-code-line .only-noCode::before,
#navigation_bar #solutions-tab-2 .no-code-line .only-noCode > a::after {
  opacity: 0 !important;
}

/* No-code line/arrow only on No-code hover */
#navigation_bar #solutions-tab-2 .no-code-line .only-noCode:hover::before,
#navigation_bar #solutions-tab-2 .no-code-line .only-noCode:hover > a::after {
  opacity: 1 !important;
}

/* Let the third panel extend safely */
#navigation_bar .dropdown-menu,
#navigation_bar .dropdown-menu-1,
#navigation_bar .dropdown-menu-2 {
  overflow: visible !important;
}

/* =====================================================
   Force all header dropdown panels to have 20px radius
   on every corner, no matter what
===================================================== */

#navigation_bar .dropdown-menu,
#navigation_bar .dropdown-menu.show,
#navigation_bar .dropdown-menu-1,
#navigation_bar .dropdown-menu-2,
#navigation_bar .dropdown-box,
#navigation_bar .dropdown-box-1,
#navigation_bar .dropdown-box-2,
#navigation_bar .left-side,
#navigation_bar .tab-content-area,
#navigation_bar .tab-pane,
#navigation_bar .tab-pane > .row,
#navigation_bar .dropdown-menu .row,
#navigation_bar .dropdown-menu [class*="col-"],
#navigation_bar #solutions-tab-2 .solutions-no-code-row,
#navigation_bar #solutions-tab-2 .solutions-no-code-row > .col-md-6:first-child,
#navigation_bar #solutions-tab-2 .no-code-submenu-panel {
  border-radius: 20px !important;
}

.dropdown-menu {
  margin-top: -1px;
}
