body {
  font-family: "Poppins", Arial, sans-serif;
  color: black;
}

/*-----------------------------------*\
       TOP BAR
\*-----------------------------------*/
.topbar .top-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar .top-link a {
  margin-right: 10px;
}

#note {
  width: 500px;
  overflow: hidden;
}

#note small {
  position: relative;
  display: inline-block;
  animation: mymove 10s infinite;
  animation-timing-function: all;
}

@keyframes mymove {
  from {
    left: -100%;
  }

  to {
    left: 100%;
  }
}

/*-----------------------------------*\
         NAV BAR
\*-----------------------------------*/

.navbar {
  background-color: #03045e;
}

.navbar-brand {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
}

.navbar-nav .nav-item:hover {
  background-color: rgba(19, 108, 224, 0.4);
}

.navbar-custom .dropdown-item {
  color: #03045e;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
  background-color: #caf0f8;
  font-weight: 700;
}

.company {
  font-size: 28px;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  /* position: absolute; */
  left: 100%;
  top: -7px;
  } 
  .dropdown-menu .dropdown-submenu-left {
 right: 100%;
  left: auto;
  }
  .dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
  }

/*-----------------------------------*\
    ABOUT US HEADER SECTION
    \*-----------------------------------*/

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .6)), url(../images/Visa.jpg) center center no-repeat;
  background-size: cover;
  /* background-color:#023047; */
  /* background: url(../images/about1.jpg) center center no-repeat; */
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: white;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: white;
}

.breadcrumb {
  background-color: unset !important;
}



/*-----------------------------------*\
  PAN CARD SERVICE SECTION
  \*-----------------------------------*/

.checklistbox {
  width: 100%;
  border-bottom: 20px solid #3e64ff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.checklistbox p {
  color: #fff;
  /* color: black; */
  /* background: #03a9f4; */
  background: #3e64ff;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 600;
}

.checklistbox ul {
  position: relative;
  background: #fff;
}

.checklistbox ul li {
  list-styLe: none;
  padding: 10px;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
  transition: transform 0.5s;
  font-size: 16px;
}

.checklistbox ul:hover li {
  opacity: 1;
}

.checklistbox ul li:hover {
  transform: scale(1.1);
  z-index: 100;
  background: #3e64ff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
  color: #fff;
  opacity: 1;
}


.checklistbox ul li span {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #3e64ff;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(-2px);
}

.checklistbox ul li:hover span {
  background: #fff;
  color: #3e64ff;
}


.panappbtn{
  background-color: #03045e;
}

.olcards,
.olcards * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.olcards {
  list-style: none;
  counter-reset: cardCount;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  --cardsGap: 1rem;
  gap: var(--cardsGap);
  padding-bottom: var(--cardsGap);
}
.olcards li {
  counter-increment: cardCount;
  display: flex;
  color: white;
  --labelOffset: 1rem;
  --arrowClipSize: 1.5rem;
  margin-top: var(--labelOffset);
}

.olcards li::before {
  content: counter(cardCount, decimal-leading-zero);
  background: white;
  color: var(--cardColor);
  font-size: 2em;
  font-weight: 700;
  transform: translateY(calc(-1 * var(--labelOffset)));
  margin-right: calc(-1 * var(--labelOffset));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 0.5em;
}

.olcards li .content {
  background-color: var(--cardColor);
  --inlinePadding: 1em;
  --boxPadding: 0.5em;
  display: grid;
  padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize))
    var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 0.25em 1em;
  clip-path: polygon(
    0 0,
    calc(100% - var(--arrowClipSize)) 0,
    100% 50%,
    calc(100% - var(--arrowClipSize)) 100%,
    calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
    0 calc(100% + var(--cardsGap))
  );
  position: relative;
}
.olcards li .content::before {
  content: "";
  position: absolute;
  width: var(--labelOffset);
  height: var(--labelOffset);
  background: var(--cardColor);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: brightness(0.75);
}
.olcards li .content::after {
  content: "";
  position: absolute;
  height: var(--cardsGap);
  width: var(--cardsGap);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
  left: 0;
  top: 100%;
}

.olcards li .content .title {
  grid-area: title;
  font-size: 1.25em;
  /* font-weight: 700; */
}
.olcards li .content .text {
  grid-area: text;
}

/*-----------------------------------*\
  FOOTER DISCLAIMER SECTION
  \*-----------------------------------*/

 .footer-disclaimer {
            background-color: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #0d6efd;
            color: #e9ecef;
        }
        .footer-disclaimer p {
            margin: 0.25rem 0 0.5rem 0;
            line-height: 1.4;
            font-size: 0.95rem;
        }
        .footer-disclaimer strong {
            display: block;
            margin-bottom: 0.25rem;
            color: #ffffff;
        }
        .footer-disclaimer small {
            color: #adb5bd;
        }
/*-----------------------------------*\
  FOOTER SECTION
  \*-----------------------------------*/

.footer {
  background-color: #000814;
}

/*-----------------------------------*\
Mobile Responsiveness
  \*-----------------------------------*/

@media screen and (max-width: 992px) {}

@media only screen and (max-width: 769px) {
  .olcards li .content .title {
    font-size: 16px;
  }
}

@media only screen and (max-width: 670px) {}

@media only screen and (max-width: 541px) {

  .company {
    font-size: 25px;
  }
}

@media only screen and (max-width: 442px) {
  .company {
    font-size: 20px;
  }
}

@media only screen and (max-width: 390px) {
  .company {
    font-size: 16px;
  }
}