/**
 * Global variables
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
html,
body {
  font-family: "Roboto", "Segoe UI", "sans-serif";
  font-size: 16px;
  color: #30302F;
  margin: 0px;
  padding: 0px;
}

a {
  color: #0F7D90;
  text-decoration: none;
}
a:hover {
  color: #055867;
}

.container {
  max-width: 92vw;
}

.text-orange {
  color: #F89520;
}

.JML-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.JML-buttonOrange {
  background-color: #F89520;
  color: white;
  border-color: #F89520;
}

.JML-btnClickHere {
  font-size: 0.95rem;
  border-radius: 20px;
  background-color: #671259;
  color: white;
  line-height: 1;
  padding: 5px 20px;
  font-weight: 400;
  position: relative;
}
.JML-btnClickHere:hover, .JML-btnClickHere:focus, .JML-btnClickHere:active {
  color: white;
  background-color: #3a0531;
}

.JML-contentArea {
  min-height: 60dvh;
}

.JML-SectionTitle {
  font-size: 3.2rem;
  font-weight: 600;
  color: black;
  line-height: 3.6rem;
}
@media (max-width: 991px) {
  .JML-SectionTitle {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
}
@media (max-width: 767px) {
  .JML-SectionTitle {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

.JML-secondaryBtn {
  background-color: #0F7D90;
  color: white;
  border-color: #fff;
  font-size: 1.3rem;
  box-shadow: 0px 4.33px 4.33px 0px rgba(0, 0, 0, 0.27);
  font-weight: 500;
}
.JML-secondaryBtn:active, .JML-secondaryBtn:focus, .JML-secondaryBtn:hover {
  background-color: #055867 !important;
  color: white;
  border-color: #fff;
}

.JML-mainContainer {
  overflow: hidden;
}

.JML-tiltImage {
  width: 100%;
  transform: rotate(-8deg);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.JML-tiltImage.in-view {
  transform: rotate(0deg);
  opacity: 1;
}

.JML-color-primary {
  color: #00517E;
}

.JML-color-secondary {
  color: #0F7D90;
}

.JML-color-tertiary {
  color: #545b7e;
}

.JML-headerSupport {
  background-color: #00517E;
  color: white;
  text-align: end;
  padding: 10px;
}
.JML-headerSupport a {
  color: white;
}
@media (max-width: 575px) {
  .JML-headerSupport a {
    display: block;
  }
}
@media (max-width: 575px) {
  .JML-headerSupport {
    font-size: 0.9rem;
  }
}

.JML-header {
  background: #fff;
  box-shadow: 0px -6px 54px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
.JML-header .JML-logoContainer {
  position: relative;
}
.JML-header .JML-logoContainer .JML-logo {
  height: auto;
  position: absolute;
  left: 0px;
  top: -16px;
  max-width: 140px;
  z-index: 2;
}
@media (max-width: 991px) {
  .JML-header .JML-logoContainer .JML-logo {
    top: 22px;
    max-width: 75px;
  }
}
.JML-header .navbar {
  padding: 0px;
}
@media (max-width: 991px) {
  .JML-header .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.JML-homeCarousel .carousel-control-next,
.JML-homeCarousel .carousel-control-prev {
  width: 5%;
}

.JML-homeCarouselCustom .carousel-control-next,
.JML-homeCarouselCustom .carousel-control-prev {
  width: 5%;
}
@media (max-width: 991px) {
  .JML-homeCarouselCustom .carousel-control-next-icon, .JML-homeCarouselCustom .carousel-control-prev-icon {
    filter: brightness(0);
  }
}
.JML-homeCarouselCustom .carousel-item {
  position: relative;
}
.JML-homeCarouselCustom .JML-homeCarouselBannerContentArea {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  padding: 3% 6%;
  z-index: 1;
}
@media (max-width: 990px) {
  .JML-homeCarouselCustom .JML-homeCarouselBannerContentArea {
    position: relative;
  }
}
.JML-homeCarouselCustom .JML-homeCarouselBannerInnerContent {
  border: 3px solid white;
  height: 100%;
  width: 100%;
  border-radius: 18px;
}
.JML-homeCarouselCustom .JML-homeCarouselBannerContent {
  background: rgba(169, 19, 122, 0.9);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0 18px 18px 0;
}
@media (max-width: 990px) {
  .JML-homeCarouselCustom .JML-homeCarouselBannerContent {
    border-radius: 18px;
    padding: 20px;
  }
}
.JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerTitle {
  color: white;
  font-size: 3.2rem;
  line-height: 3.4rem;
  font-weight: 600;
}
@media (min-width: 1600px) {
  .JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerTitle {
    font-size: 4rem;
    line-height: 4.2rem;
  }
}
@media (max-width: 767px) {
  .JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerTitle {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
.JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerText {
  color: white;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 20px;
}
.JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerButton {
  padding: 10px 25px;
  border-radius: 25px;
  text-align: center;
  background-color: #FFC72D;
  color: black;
  font-size: 1.25rem;
  font-weight: 500;
  border: 1px solid white;
}
@media (max-width: 1280px) {
  .JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerButton {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerButton {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .JML-homeCarouselCustom .JML-homeCarouselBannerContent .JML-homeCarouselBannerButton {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
}

.JML-topNavContainer {
  position: relative;
}
.JML-topNavContainer .JML-topNav {
  display: flex;
}
@media (max-width: 991px) {
  .JML-topNavContainer .JML-topNav {
    width: 90vw;
    z-index: 3;
    position: absolute;
    background-color: white;
    border: 1px solid #d7d7d7;
    padding-top: 10px;
    right: 0px;
    max-width: 700px;
  }
}
.JML-topNavContainer .JML-topNav .JML-topNavItem {
  padding-right: 15px;
  padding-left: 15px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 5px;
  width: 0;
  background-color: #0F7D90;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem:hover::before {
  width: 100%;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem.selected {
  border-bottom: 5px solid #00517E;
  padding-top: 27px;
}
@media (max-width: 991px) {
  .JML-topNavContainer .JML-topNav .JML-topNavItem.selected {
    padding-top: 10px;
  }
}
.JML-topNavContainer .JML-topNav .JML-topNavItem.selected::before {
  display: none;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem.no-border::before {
  display: none;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem:last-child {
  border-right: 0px;
  padding-right: 15px;
  margin-right: 0px;
}
@media (max-width: 991px) {
  .JML-topNavContainer .JML-topNav .JML-topNavItem {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .JML-topNavContainer .JML-topNav .JML-topNavItem {
    display: flex;
    align-items: center;
  }
}
.JML-topNavContainer .JML-topNav .JML-topNavItem a {
  color: #00517E;
  font-weight: 500;
  font-size: 1rem;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem a.JML-topNavLoginLink {
  padding: 5px 25px;
  background-color: #00517E;
  color: white;
  border-radius: 5px;
  font-weight: 400;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem a.JML-topNavLoginLink:hover {
  background-color: #03334d;
}
@media (max-width: 991px) {
  .JML-topNavContainer .JML-topNav .JML-topNavItem a.JML-topNavLoginLink {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 25px;
  }
}
.JML-topNavContainer .JML-topNav .JML-topNavItem a.JML-topNavMakePaymentLink {
  padding: 5px 25px;
  background-color: #0F7D90;
  color: white;
  border-radius: 5px;
  font-weight: 400;
}
.JML-topNavContainer .JML-topNav .JML-topNavItem a.JML-topNavMakePaymentLink:hover {
  background-color: #055867;
}
@media (max-width: 991px) {
  .JML-topNavContainer .JML-topNav .JML-topNavItem a.JML-topNavMakePaymentLink {
    display: block;
    padding: 15px 25px;
  }
}
@media (max-width: 991px) {
  .JML-topNavContainer .JML-topNav .JML-topNavItem a {
    display: block;
  }
}
@media (max-width: 991px) {
  .JML-topNavContainer .JML-topNavItem {
    margin-bottom: 10px;
    border-right: 0px solid #d7d7d7 !important;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 10px;
  }
  .JML-topNavContainer .JML-topNavItem:last-child {
    margin-bottom: 0px;
  }
}
@media (min-width: 991px) and (max-width: 1100px) {
  .JML-topNavContainer span.JML-topNavIconContainer img {
    max-width: 60px;
  }
}

.JML-header .navbar-collapse {
  height: auto !important;
}

.JML-footer {
  font-size: 0.9rem;
}
.JML-footer .JML-MainFooter {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #E3F3FF;
  color: #545b7e;
}
.JML-footer .JML-MainFooter .JML-footerLogoContainer {
  flex: 1;
  max-width: 90px;
  width: 100%;
  flex-basis: 90px;
  padding-right: 10px;
}
.JML-footer .JML-MainFooter .JML-footerLogo {
  max-width: 70px;
}
.JML-footer .JML-MainFooter .JML-footerAboutText {
  max-width: 280px;
  color: #545b7e;
}
.JML-footer .JML-MainFooter .JML-mainFooterLinks {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.JML-footer .JML-MainFooter .JML-mainFooterLinks a {
  color: #00517E;
}
.JML-footer .JML-MainFooter .JML-mainFooterLinks a:hover {
  color: #03334d;
  text-decoration: underline;
}
.JML-footer .JML-MainFooter .JML-footerSocialLinks .JML-socialLink {
  display: inline-flex;
  vertical-align: middle;
  background-color: white;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 8px;
  color: #00517E;
}
.JML-footer .JML-MainFooter .JML-footerSocialLinks .JML-socialLink:hover {
  color: #fff;
  background-color: #00517E;
}
.JML-footer .JML-footerSupport {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #727588;
}
.JML-footer .JML-footerSupport .JML-privacyLinksContainer a {
  color: #727588;
  margin-left: 15px;
  display: inline-block;
}
.JML-footer .JML-footerSupport .JML-privacyLinksContainer a:hover {
  text-decoration: underline;
}
@media (max-width: 767991px) {
  .JML-footer .JML-footerSupport .JML-privacyLinksContainer a {
    margin-bottom: 15px;
  }
}

.JML-mainBannerContainer {
  background-size: cover;
  position: relative;
}
.JML-mainBannerContainer .JML-mainBanner {
  margin-left: auto;
  width: 100%;
}
.JML-mainBannerContainer .JML-BannerContentContainer {
  display: flex;
  align-items: center;
  max-width: 520px;
  height: 100%;
  top: 0px;
  padding-left: calc(4vw + 15px);
  left: 0px;
  min-height: 500px;
}
@media (max-width: 575px) {
  .JML-mainBannerContainer .JML-BannerContentContainer {
    min-height: 300px;
    position: relative;
  }
}
@media (max-width: 991px) {
  .JML-mainBannerContainer .JML-BannerContentContainer {
    min-height: 300px;
  }
}
.JML-mainBannerContainer .JML-BannerContentTitle {
  font-size: 3.5rem;
  font-weight: 200;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  line-height: 3.6rem;
}
.JML-mainBannerContainer .JML-BannerContentTitle span {
  color: #1327a9;
}
@media (max-width: 991px) {
  .JML-mainBannerContainer .JML-BannerContentTitle {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
}
.JML-mainBannerContainer .JML-BannerContent {
  padding-top: 15px;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  line-height: 1.8rem;
}
.JML-mainBannerContainer .JML-homeBannerContainer {
  position: relative;
}
.JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerText {
  position: absolute;
  top: 20%;
  padding-left: calc(4vw + 15px);
  left: 0px;
  min-height: 450px;
  max-width: 650px;
  z-index: 1;
}
@media (max-width: 1099px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerText {
    min-height: 300px;
    max-width: 450px;
  }
}
@media (max-width: 787px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerText {
    top: 10%;
    padding-left: 15px;
  }
}
@media (max-width: 575px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerText {
    min-height: 300px;
  }
}
.JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerMainContent {
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.4rem;
  margin-bottom: 25px;
  color: black;
}
@media (max-width: 1400px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerMainContent {
    font-size: 3rem;
    line-height: 3.4rem;
  }
}
@media (max-width: 1099px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerMainContent {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 425px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerMainContent {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 15px;
  }
}
.JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerSubContent {
  font-size: 1.6rem;
  color: #00517e;
  line-height: 2rem;
  margin-bottom: 45px;
}
@media (max-width: 1400px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerSubContent {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
}
@media (max-width: 425px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerSubContent {
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 1400px) {
  .JML-mainBannerContainer .JML-homeBannerContainer .JML-homeBannerButton {
    max-width: 250px;
  }
}

/*******Discover a Payment section starts****/
.JML-discoverAPaymentSection {
  padding-bottom: 50px;
  padding-top: 50px;
}
.JML-discoverAPaymentSection .JML-discoverPaymentIconContainer {
  margin-bottom: 30px;
  height: 50px;
}
.JML-discoverAPaymentSection .JML-discoverPaymentTitle {
  font-size: 1.7rem;
  color: #00517E;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 20px;
}
.JML-discoverAPaymentSection .JML-discoverPaymentContent {
  color: #545b7e;
  line-height: 1.7rem;
}

/*******Discover a Payment section ends****/
/***Section Peace of Mind and Secure Financial control starts*/
.JML-PeaceofMindSecureFinancialSection {
  padding-top: 50px;
}
.JML-PeaceofMindSecureFinancialSection .JML-peaceOfMindContainer {
  background: #00517e url("../images/home-peaceOfMind-bg.png") right center no-repeat;
  background-size: cover;
  padding-left: 8%;
  padding-right: 30px;
  color: white;
  min-height: 400px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-top: 60px;
  height: 100%;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .JML-PeaceofMindSecureFinancialSection .JML-peaceOfMindContainer {
    margin-left: 15px;
    border-radius: 20px;
    padding-left: 30px;
    min-height: 300px;
  }
}
.JML-PeaceofMindSecureFinancialSection .JML-secureFinancialContainer {
  background: #0f7d90 url("../images/home-secureFinancialControl-bg.png") left center no-repeat;
  background-size: cover;
  padding-right: 8%;
  padding-left: 30px;
  color: white;
  min-height: 400px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-top: 60px;
  height: 100%;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .JML-PeaceofMindSecureFinancialSection .JML-secureFinancialContainer {
    margin-right: 15px;
    border-radius: 20px;
    padding-right: 30px;
    min-height: 300px;
  }
}
@media (max-width: 575px) {
  .JML-PeaceofMindSecureFinancialSection .JML-secureFinancialContainer .JML-SecureFinanceContentLeft {
    border-right: 0px solid transparent !important;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.JML-PeaceofMindSecureFinancialSection .JML-peaceOfMindTitle {
  font-size: 2.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  line-height: 3.2rem;
}
@media (max-width: 991px) {
  .JML-PeaceofMindSecureFinancialSection .JML-peaceOfMindTitle {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
}
.JML-PeaceofMindSecureFinancialSection .JML-peaceOfMindSubtitle {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 30px;
  line-height: 1.6rem;
}
.JML-PeaceofMindSecureFinancialSection.JML-peaceOfMindAboutUsPage .JML-secureFinancialContainer,
.JML-PeaceofMindSecureFinancialSection.JML-peaceOfMindAboutUsPage .JML-peaceOfMindContainer {
  min-height: 300px;
}

/***Section Peace of Mind and Secure Financial control ends*/
/***We'll help you find the right payment solution. starts*/
.JML-rightPaymentSolutionSection {
  padding-top: 50px;
  padding-bottom: 50px;
}
.JML-rightPaymentSolutionSection .bg-lightblue {
  background-color: #E3F3FF;
}
.JML-rightPaymentSolutionSection .bg-box {
  background-color: #E3F3FF;
}
.JML-rightPaymentSolutionSection .JML-rightPaymentSolution-wrapper {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 28px 0px #dae0eb;
}
.JML-rightPaymentSolutionSection .JML-rightPaymentSolution-label {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}
.JML-rightPaymentSolutionSection .JML-rightPaymentSolution-amount {
  font-size: 4.2rem;
  font-weight: bolder;
  color: #00517E;
  line-height: 1;
}
@media (max-width: 575px) {
  .JML-rightPaymentSolutionSection .JML-rightPaymentSolution-amount {
    font-size: 3rem;
    text-align: center;
  }
}
.JML-rightPaymentSolutionSection .JML-rightPaymentSolution-value {
  font-size: 2.4rem;
  font-weight: bolder;
  color: #00517E;
  line-height: 1;
}
@media (max-width: 575px) {
  .JML-rightPaymentSolutionSection .JML-rightPaymentSolution-value {
    font-size: 2rem;
    text-align: center;
  }
}
.JML-rightPaymentSolutionSection .JML-rightPaymentSolution-subtext {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}
@media (max-width: 575px) {
  .JML-rightPaymentSolutionSection .JML-rightPaymentSolution-subtext {
    font-size: 0.8rem;
    text-align: center;
  }
}
.JML-rightPaymentSolutionSection .JML-rightPaymentSolution-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #00517E;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transform: translate(-44%, -50%) !important;
}
@media (max-width: 425px) {
  .JML-rightPaymentSolutionSection .JML-rightPaymentSolution-circle {
    width: 40px;
    height: 40px;
  }
}

/***We'll help you find the right payment solution. ends*/
/***What others are saying***/
.JML-whatOthersareSayingSection {
  background-color: #E3F3FF;
  padding-top: 80px;
  padding-bottom: 80px;
  /***Carousel**/
}
.JML-whatOthersareSayingSection .owl-carousel .owl-item img {
  width: auto;
}
.JML-whatOthersareSayingSection .JML-whatOthersareSayingItemContainer .JML-whatOthersareSayingStarRatingContainer {
  margin-bottom: 20px;
}
.JML-whatOthersareSayingSection .JML-whatOthersareSayingItemContainer .JML-whatOthersareSayingReviewTitleContainer {
  font-weight: 500;
  color: #00517E;
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 2.1rem;
}
.JML-whatOthersareSayingSection .JML-whatOthersareSayingItemContainer .JML-whatOthersareSayingReviewContainer {
  color: #545b7e;
  font-size: 1rem;
  margin-bottom: 15px;
}
.JML-whatOthersareSayingSection .JML-whatOthersareSayingItemContainer .JML-whatOthersareSayingUserProfileContainer {
  display: flex;
  align-items: center;
}
.JML-whatOthersareSayingSection .JML-whatOthersareSayingItemContainer .JML-whatOthersareSayingUserProfilePic {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.JML-whatOthersareSayingSection .JML-whatOthersareSayingItemContainer .JML-whatOthersareSayingUserName {
  font-weight: bold;
}
.JML-whatOthersareSayingSection .owl-carousel {
  display: flex;
  flex-wrap: wrap;
}
.JML-whatOthersareSayingSection .owl-stage-outer {
  order: 2;
}
.JML-whatOthersareSayingSection .owl-nav {
  order: 1;
  margin-left: auto;
  position: absolute;
  right: 0px;
  top: -115px;
}
.JML-whatOthersareSayingSection button.owl-prev {
  font-size: 4rem !important;
  margin-right: 10px !important;
}
.JML-whatOthersareSayingSection button.owl-next {
  font-size: 4rem !important;
}
.JML-whatOthersareSayingSection .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent;
  color: #00517E;
  outline: 0;
}

/*secure Your Financial Future*/
.JML-secureYourFinancialFutureSection {
  padding-top: 50px;
  background: url("../images/home-secureFinancialFuture-bg.png") left bottom no-repeat;
  background-size: contain;
}
.JML-secureYourFinancialFutureSection .JML-secureYourFinancialFutureSubtxt {
  font-size: 1.3rem;
}
.JML-secureYourFinancialFutureSection .JML-secureYourFinancialFutureTitle {
  font-size: 2.8rem;
  font-weight: 600;
  color: #00517E;
  margin-bottom: 30px;
  line-height: 3.2rem;
}
@media (max-width: 767px) {
  .JML-secureYourFinancialFutureSection .JML-secureYourFinancialFutureTitle {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

.JML-innerBannerContainer {
  background: url("../images/Banners/about-banner.jpg") right center no-repeat;
  background-size: cover;
}
.JML-innerBannerContainer.JML-FAQBanner {
  background: url("../images/Banners/faq-banner.jpg") right center no-repeat;
  background-size: cover;
}
.JML-innerBannerContainer.JML-contactBanner {
  background: url("../images/Banners/contact-banner.jpg") right center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .JML-innerBannerContainer {
    background: url("../images/Banners/about-banner-tab.jpg") center bottom no-repeat;
    background-size: cover;
    min-height: 600px;
  }
  .JML-innerBannerContainer.JML-FAQBanner {
    background: url("../images/Banners/faq-banner-tab.jpg") center bottom no-repeat;
    background-size: cover;
  }
  .JML-innerBannerContainer.JML-contactBanner {
    background: url("../images/Banners/contact-banner-tab.jpg") center bottom no-repeat;
    background-size: cover;
  }
}
@media (max-width: 575px) {
  .JML-innerBannerContainer {
    background: url("../images/Banners/about-banner-mobile.jpg") center bottom no-repeat;
    background-size: cover;
    min-height: 450px;
  }
  .JML-innerBannerContainer.JML-FAQBanner {
    background: url("../images/Banners/faq-banner-mobile.jpg") center bottom no-repeat;
    background-size: cover;
  }
  .JML-innerBannerContainer.JML-contactBanner {
    background: url("../images/Banners/contact-banner-mobile.jpg") center bottom no-repeat;
    background-size: cover;
  }
}
@media (min-width: 410px) and (max-width: 575px) {
  .JML-innerBannerContainer {
    background-size: cover;
    min-height: 500px;
  }
  .JML-innerBannerContainer.JML-FAQBanner {
    background-size: cover;
  }
  .JML-innerBannerContainer.JML-contactBanner {
    background-size: cover;
  }
}
.JML-innerBannerContainer .JML-innerBannerOverlay {
  min-height: 400px;
}
@media (min-width: 1400px) {
  .JML-innerBannerContainer .JML-innerBannerOverlay {
    min-height: 450px;
  }
}
@media (min-width: 1600px) {
  .JML-innerBannerContainer .JML-innerBannerOverlay {
    min-height: 550px;
  }
}
@media (max-width: 991px) {
  .JML-innerBannerContainer .JML-innerBannerOverlay {
    min-height: 350px;
  }
}
@media (max-width: 767px) {
  .JML-innerBannerContainer .JML-innerBannerOverlay {
    min-height: 320px;
    padding-top: 18%;
  }
}
@media (max-width: 480px) {
  .JML-innerBannerContainer .JML-innerBannerOverlay {
    min-height: 315px;
  }
}
.JML-innerBannerContainer .JML-innerPageBannerContent {
  color: #00517E;
}
.JML-innerBannerContainer .JML-innerPageBannerContent .JML-bannerPageName {
  border-left: 4px solid #00517E;
  padding-left: 15px;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .JML-innerBannerContainer .JML-innerPageBannerContent .JML-bannerPageName {
    font-size: 1rem;
    line-height: 1.4rem;
    margin-top: 15px;
  }
}
.JML-innerBannerContainer .JML-innerPageBannerContent .JML-bannerPageTitle {
  font-size: 2.5rem;
  line-height: 2.9rem;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1199px) {
  .JML-innerBannerContainer .JML-innerPageBannerContent .JML-bannerPageTitle {
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 767px) {
  .JML-innerBannerContainer .JML-innerPageBannerContent .JML-bannerPageTitle {
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.JML-innerBannerContainer .JML-innerPageBannerContent .JML-bannerPageSubtitle {
  font-size: 1rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .JML-innerBannerContainer .JML-innerPageBannerContent .JML-bannerPageSubtitle {
    display: none;
    font-size: 0.9rem;
  }
}

/***Intro Section*/
.JML-introSection {
  padding-top: 50px;
  padding-bottom: 50px;
}
.JML-introSection .JML-introTitle {
  font-size: 2.2rem;
  line-height: 2.6rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .JML-introSection .JML-introTitle {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
@media (max-width: 767px) {
  .JML-introSection .JML-introTitle {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.JML-introSection .JML-introSubTitle {
  font-size: 1rem;
  color: #545b7e;
}
.JML-introSection .JML-aboutus-intro-left,
.JML-introSection .JML-aboutus-intro-right {
  height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}

/***Our values*****/
.JML-ourValuesSection {
  padding-top: 50px;
  padding-bottom: 50px;
}
.JML-ourValuesSection .JML-ourValuesContent {
  font-size: 1.4rem;
  color: #545b7e;
}
.JML-ourValuesSection .JML-ourValuesList {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.JML-ourValuesSection .JML-ourValuesList li {
  list-style: none;
  padding: 20px;
  color: #00517E;
  background-color: white;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid #dfdfdf;
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.05);
}
.JML-ourValuesSection .JML-ourValuesList li .fa-circle-check {
  color: #12AE51;
  margin-right: 10px;
}

/****Stats section**/
.JML-stats-section {
  background-color: #fff;
  color: #00517E;
  padding-top: 50px;
  padding-bottom: 20px;
}
.JML-stats-section .JML-stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  border-left: 1px solid #94a6b0;
  padding-left: 20px;
}
.JML-stats-section .JML-stat-text {
  font-size: 1.2rem;
  color: #00517E;
  max-width: 220px;
  margin-bottom: 0px;
}

/***FAQ Page***/
.JML-FAQSection {
  padding-top: 50px;
  padding-bottom: 50px;
}
.JML-FAQSection .JML-faqAccordion .accordion-item {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0px 0px 28px 0px #dae0eb;
}
.JML-FAQSection .JML-faqAccordion .accordion-button {
  background-color: transparent;
  font-weight: 600;
  font-size: 1rem;
  color: #004b6b;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: none;
}
.JML-FAQSection .JML-faqAccordion .accordion-button:focus {
  box-shadow: none;
}
.JML-FAQSection .JML-faqAccordion .accordion-button::after {
  margin-left: auto;
}
.JML-FAQSection .JML-faqAccordion .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.JML-FAQSection .JML-faqAccordion .accordion-body {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: #333;
}
.JML-FAQSection .JML-faqAccordion .icon {
  background-color: #d6eaf8;
  color: #004b6b;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.JML-FAQSection .JML-faqAccordion .question {
  flex-grow: 1;
  text-align: left;
}

/****Contact Page****/
.JML-contact {
  background-color: #E3F3FF;
  padding: 50px 0;
}
.JML-contact .JML-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.JML-contact .JML-contact-card {
  background: #fff;
  border-radius: 8px;
  display: flex;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  box-shadow: 0px 0px 28px 0px rgba(218, 224, 235, 0.6);
  transition: box-shadow 0.3s ease;
}
.JML-contact .JML-contact-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.JML-contact .JML-contact-card .JML-icon-box {
  background-color: #00517E;
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.JML-contact .JML-contact-card .JML-icon-box i {
  font-size: 20px;
}
.JML-contact .JML-contact-card .JML-content-box {
  padding: 1.2rem;
}
.JML-contact .JML-contact-card .JML-content-box .JML-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #545b7e;
  margin-bottom: 15px;
}
.JML-contact .JML-contact-card .JML-content-box p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
  color: #545b7e;
}

.JML-ContactFormSection {
  padding-bottom: 0px;
  padding-top: 50px;
  background: url("../images/home-secureFinancialFuture-bg.png") left bottom no-repeat;
  background-size: contain;
}

/*****White BG****/
.JML-whiteBGSectionContainer {
  padding-top: 90px;
  padding-bottom: 90px;
}
.JML-whiteBGSectionContainer .JML-whiteBGWrapper {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 28px 0px #dae0eb;
  padding: 20px;
}
.JML-whiteBGSectionContainer .JML-optout-card {
  border-radius: 12px;
}
.JML-whiteBGSectionContainer .JML-optout-title {
  font-weight: 700;
  font-size: 2.6rem;
  color: #0F7D90;
  font-family: "Roboto", "Segoe UI", "sans-serif";
}
.JML-whiteBGSectionContainer .JML-optout-text {
  font-size: 1rem;
  color: #6c757d;
}
.JML-whiteBGSectionContainer .JML-optout-input {
  height: 50px;
  border-radius: 8px;
  font-size: 1rem;
}
.JML-whiteBGSectionContainer .Prime-section-title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 2rem;
}
.JML-whiteBGSectionContainer .Prime-list {
  padding-left: 1.5rem;
}
.JML-whiteBGSectionContainer .Prime-container {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 960px;
}
.JML-whiteBGSectionContainer .Prime-important {
  font-style: italic;
  color: #6c757d;
}
.JML-whiteBGSectionContainer .date {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 600;
}