html {
  scroll-behavior: smooth;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: none;
  scrollbar-color: var(--maincolor) #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 2px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #111a41;
  border-radius: 0px;
  border: 3px solid #ffffff;
}

/* Fonts */
@font-face {
  font-family: "ParalucentCondMedium";
  src: url("../fonts/ParalucentCondMedium.eot");
  src: url("../fonts/ParalucentCondMedium.eot") format("embedded-opentype"),
    url("../fonts/ParalucentCondMedium.woff2") format("woff2"),
    url("../fonts/ParalucentCondMedium.woff") format("woff"),
    url("../fonts/ParalucentCondMedium.ttf") format("truetype"),
    url("../fonts/ParalucentCondMedium.svg#ParalucentCondMedium") format("svg");
}
@font-face {
  font-family: "ParalucentLight";
  src: url("../fonts/ParalucentLight.eot");
  src: url("../fonts/ParalucentLight.eot") format("embedded-opentype"),
    url("../fonts/ParalucentLight.woff2") format("woff2"),
    url("../fonts/ParalucentLight.woff") format("woff"),
    url("../fonts/ParalucentLight.ttf") format("truetype"),
    url("../fonts/ParalucentLight.svg#ParalucentLight") format("svg");
}
@font-face {
  font-family: "ParalucentCondDemiBold";
  src: url("../fonts/ParalucentCondDemiBold.eot");
  src: url("../fonts/ParalucentCondDemiBold.eot") format("embedded-opentype"),
    url("../fonts/ParalucentCondDemiBold.woff2") format("woff2"),
    url("../fonts/ParalucentCondDemiBold.woff") format("woff"),
    url("../fonts/ParalucentCondDemiBold.ttf") format("truetype"),
    url("../fonts/ParalucentCondDemiBold.svg#ParalucentCondDemiBold")
      format("svg");
}
@font-face {
  font-family: "SoleilRegular";
  src: url("../fonts/SoleilRegular.eot");
  src: url("../fonts/SoleilRegular.eot") format("embedded-opentype"),
    url("../fonts/SoleilRegular.woff2") format("woff2"),
    url("../fonts/SoleilRegular.woff") format("woff"),
    url("../fonts/SoleilRegular.ttf") format("truetype"),
    url("../fonts/SoleilRegular.svg#SoleilRegular") format("svg");
}

:root {
  --pmedium: "ParalucentCondMedium";
  --plight: "ParalucentLight";
  --pdemibold: "ParalucentCondDemiBold";
  --sregular: "SoleilRegular";
  --arial: "Arial, Helvetica, sans-serif";
  --gradient: transparent linear-gradient(270deg, #00469b 0%, #00234e 100%) 0%
    0% no-repeat padding-box;
  --maincolor: #002c62;
  --ani: all 0.5s;
}

/* Back To Top */
.scrollToTopBtn {
  background: var(--gradient);
  border: none;
  color: #fff;
  opacity: 0;
  cursor: pointer;
  font-size: 30px;
  line-height: 48px;
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 92;
  opacity: 2;
  transform: translateY(200px);
  transition: all 0.5s ease;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 50%;
  border: 0.5px solid #fff;
}

.scrollToTopBtn img {
  width: 30px;
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
  opacity: 1;
}

.scrollToTopBtn:hover i {
  color: #eecb4c;
  top: 5px;
}
.scrollToTopBtn:focus,
.scrollToTopBtn:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}

body {
  font-family: var(--regular);
}
p {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
section {
  padding: 5% 0;
  overflow: hidden;
}
.main-container {
  padding: 0 5%;
}
.sub-container {
  padding: 0 8%;
}
a {
  text-decoration: none;
}

/* Header */
.header-strip {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2%;
}
.st-contact {
  align-items: center;
  gap: 20px;
}
.st-contact span {
  margin-top: -5px;
  color: #00000045;
}
.header-strip a {
  color: #000000a9;
  font-family: var(--sregular);
  font-size: 16px;
}
.header-strip a span {
  color: #000000a9;
  font-family: var(--sregular);
  font-size: 15px;
  margin: 0;
}
.header-strip a i {
  color: var(--maincolor);
  margin-right: 10px;
  font-size: 14px;
}
.st-media a i {
  font-size: 17px;
  margin-right: 0;
}
.str-m-main {
  display: none;
}
.st-media {
  align-items: center;
  gap: 25px;
}

.header-main {
  background: var(--gradient);
  align-items: center;
  justify-content: space-between;
  padding: 0 2%;
  box-shadow: 0px 6px 10px #0000001f;
  position: relative;
  z-index: 7;
}
header.smaller {
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 7;
}
.head-logo img {
  width: 85%;
}
.header-right {
  align-items: center;
  gap: 36px;
}
.head-nav ul {
  margin: 0;
}
.head-nav ul li {
  list-style: none;
  display: inline;
  color: #ffffff90;
  font-family: var(--sregular);
  margin-left: 25px;
}
.head-nav ul li a {
  color: #ffffffe6;
  transition: var(--ani);
  font-size: 16px;
}
.head-nav ul li a i {
  font-size: 12px;
}
.head-nav ul li a:hover {
  color: #fff;
}
.head-btn {
  padding: 0 30px;
  position: relative;
}
.head-btn a {
  border-radius: 3px;
  background-color: #fff;
  padding: 1px 10px;
  padding-top: 6px;
  display: flex;
  align-items: center;
  font-family: var(--sregular);
  font-size: 15px;
  margin-bottom: 0;
  gap: 10px;
  color: var(--maincolor);
  transition: var(--ani);
  cursor: pointer;
}
.main-text h3
{
    font-family: var(--pmedium);
  font-size: 35px;
}
.finance-main-para p
{
   padding: 0 0%;
  font-size: 16px; 
}
.head-btn a i {
  font-size: 14px;
  margin-top: -4px;
}
.mgmenu-h {
  transition: var(--ani);
}
.mgmenu-po {
  position: relative;
}
.mega-box {
  position: absolute;
  top: 49px;
  left: 55px;
  background: var(--gradient);
  opacity: 0;
  visibility: hidden;
  transition: var(--ani);
  width: 720px;
}
.mega-box .content {
  display: grid;
  grid-template-columns: auto auto;
  padding: 20px;
}
.mgmenu-h:hover .mega-box {
  opacity: 1;
  visibility: visible;
  top: 43px;
  transition: var(--ani);
}
.mgmenu-links ul {
  padding: 0;
}
.mgmenu-links ul li {
  margin-left: 0;
  display: block;
  margin-bottom: 10px;
  border-bottom: 0.5px solid #ffffff2f;
}
.mgmenu-links ul li a {
  width: 100%;
  display: block;
  color: #ffffffb6;
  transition: var(--ani);
  font-family: var(--sregular);
  font-size: 16px;
  padding-left: 0;
}
.mgmenu-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}
.head-btn a span {
  color: #00000045;
  transition: var(--ani);
}

.head-btn a:hover {
  color: #fff !important;
  background-color: var(--maincolor);
}
.head-btn a:hover span {
  color: #ffffff8f;
}
.head-btn::before {
  content: "";
  width: 1px;
  height: 62px;
  background-color: #2060ad;
  position: absolute;
  left: 0;
  top: -16px;
}
.head-btn::after {
  content: "";
  width: 1px;
  height: 62px;
  background-color: #2060ad;
  position: absolute;
  right: 0;
  top: -16px;
}
/* Mega menu */
.head-menu {
  width: 25px;
  margin-top: -5px;
  position: relative;
}
.menu-icon {
  height: 27px;
  cursor: pointer;
  transition: var(--ani);
}
.menu-icon span {
  cursor: pointer;
  border-radius: 1px;
  height: 1px;
  width: 20px;
  background: #fff;
  display: block;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 50%;
}
.menu-icon span::before,
.menu-icon span::after {
  cursor: pointer;
  border-radius: 1px;
  height: 1px;
  width: 20px;
  background: #fff;
  position: absolute;
  left: 30%;
  top: 50%;
  display: block;
  content: "";
  transition: all 0.5s ease-in-out;
}
.menu-icon span::before {
  left: 0;
  top: -8px;
}
.menu-icon span::after {
  left: 0;
  top: 8px;
}

.menu-icon.active span::before,
.menu-icon.active span::after {
  top: 0;
  background-color: #fff;
}
.menu-icon.active span::after {
  transform: rotate(-135deg);
}
.menu-icon.active span::before {
  transform: rotate(135deg);
}
.menu-icon.active span {
  background-color: transparent !important;
}

/* ----- */
.overlay-menu {
  background-color: #fff;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: -1;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
}
.overlay-menu.active {
  z-index: 95;
  opacity: 1;
  visibility: visible;
}

.overlay-close {
  position: fixed;
  z-index: 999;
  top: 50px;
  right: 50px;
  display: inline;
  width: 50px;
  height: 50px;
}
.overlay-close i {
  font-size: 35px;
  color: #fff;
  float: right;
  cursor: pointer;
}
.menu-container {
  width: 100%;
  height: 100%;
  padding: 50px;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  border-radius: 20px;
  background: var(--gradient);
  padding: 40px;
  scrollbar-width: none;
}
.m-contents {
  transition: var(--ani);
  opacity: 0;
  transform: translateY(20px);
}
.overlay-menu.active .m-contents {
  transition: var(--ani);
  opacity: 1;
  transform: translateY(0);
}
.mlinks-bx {
  padding-top: 80px;
}
.m-header h2 {
  font-family: var(--pdemibold);
  font-size: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.m-header h2::before {
  content: "";
  background-color: #ffffff;
  width: 60%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.m-tags {
  padding-top: 30px;
}
.m-contact {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.m-contact h4 {
  font-family: var(--pmedium);
  font-size: 22px;
  position: relative;
}
.m-contact h4::before {
  font-family: "FontAwesome";
  position: absolute;
  left: -20px;
  content: "\f3c5";
  color: #fff;
}
.m-contact p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}
.m-quick-linkss {
  padding-left: 40px;
}
.m-links a {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  transition: var(--ani);
}
.m-links a:hover {
  padding-left: 5px;
}
.m-medias {
  align-items: center;
  gap: 30px;
}
.m-medias a i {
  color: #fff;
  font-size: 19px;
  transition: var(--ani);
}
.m-medias a i:hover {
  color: #000;
}
/* ----- */

/* Mega menu */
.head-btn .call-bx {
  position: absolute;
  background-color: #e6f6fc;
  border-radius: 0 0 12px 12px;
  padding: 20px;
  width: 300px;
  right: 0;
  top: -13px;
  transition: var(--ani);
  opacity: 0;
  visibility: hidden;
}
.head-btn .call-bx.active {
  top: 47px;
  opacity: 1;
  visibility: visible;
}
.call-close {
  position: relative;
}
.call-close-btn {
  position: absolute;
  right: 0;
  top: 3px;
  cursor: pointer;
}
.call-bx h4 {
  font-size: 20px;
  font-family: var(--pmedium);
  color: var(--maincolor);
  margin-bottom: 15px;
}
.call-bx p {
  font-size: 14px;
  color: #0000009a;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 15px;
}
.call-bx input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #cbcbcb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}
.call-bx input:focus,
.call-bx input:focus-visible {
  outline: none;
  box-shadow: none;
}
.call-bx a {
  text-align: center !important;
  background: var(--maincolor);
  color: #fff;
  font-size: 18px;
  font-family: var(--pmedium);
  margin-top: 15px;
  display: block;
  transition: var(--ani);
}
.call-bx a:hover {
  background: #000;
}
/* Header */

/* Banner */
.banner-main {
  position: relative;
}
.mob-banner {
  display: none;
}
.banner-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7%;
}
.second-text {
  font-family: var(--pmedium);
  font: 20px;
  margin-bottom: 10px;
}
.main-text {
  font-family: var(--pmedium);
  font-size: 35px;
}
.banner-text h5 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.banner-text h3 {
  color: #fff;
  margin-bottom: 20px;
}
.banner-text h3 span {
  display: block;
}
.quick-bann {
  align-items: center;
  gap: 50px;
}
.quick-b img {
  width: 30px;
  aspect-ratio: 1;
  margin-bottom: 20px;
}
.quick-b h6 {
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 14px;
}
.quick-border {
  border-left: 1px solid #2060ad;
  border-right: 1px solid #2060ad;
  padding: 0 20px;
}
/* Banner */

/* About Us */
.about-left {
  position: relative;
}
.about-desk {
  display: block;
}
.about-mob {
  display: none;
}
.ab-faq-bx {
  position: absolute;
  bottom: 20px;
  left: 32px;
}
.ab-faq-bx a {
  width: 280px;
  border-radius: 25px;
  background: var(--gradient);
  display: inline-block;
  padding: 20px;
  position: relative;
  top: 20px;
  right: 20px;
  transition: var(--ani);
  text-decoration: none;
}
.ab-faq-bx a h6 {
  font-family: var(--pdemibold);
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.ab-faq-bx-border {
  border: 0.5px solid rgba(112, 112, 112, 1);
  border-radius: 25px;
}
.ab-faq-bx a span {
  background-color: #fff;
  width: 23px;
  aspect-ratio: 1/1;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  float: right;
}
.ab-faq-bx a span i {
  color: var(--maincolor);
}
.ab-faq-bx a:hover {
  top: 0;
  right: 0;
}
.about-left h3 {
  color: var(--maincolor);
  line-height: 44px;
  margin-bottom: 60px;
}
.about-left h3 span {
  display: block;
}
.about-left p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}
.about-left p:last-child {
  margin-bottom: 0;
}
/* About Us */

/* We are helping */
.helping-main {
  background: var(--gradient);
}
.helping-right h3 {
  margin-bottom: 30px;
  color: #fff;
}
.helping-right h3 span {
  display: block;
}
.helping-right h5 {
  font-family: var(--plight);
  font-size: 25px;
  margin-bottom: 40px;
  color: #fff;
}
.helping-right h5 span {
  display: block;
}
.helping-right p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  text-align:justify;
}
.helping-right a {
  background-color: #fff;
  border-radius: 9px;
  padding: 10px 30px;
  font-family: var(--pmedium);
  color: #000;
  font-size: 17px;
  transition: var(--ani);
  display: inline-block;
}
.helping-right a:hover {
  background-color: var(--maincolor);
  color: #fff;
}
/* We are helping */

/* Services */
.service-left h5 {
  color: rgba(0, 0, 0, 0.7);
  position: relative;
  padding-bottom: 10px;
}
.service-left h5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--maincolor);
}
.service-right h3 {
  margin-bottom: 30px;
  color: var(--maincolor);
}
.service-right p {
  font-size: 16px;
}
.sec-service-left .nav-tabs {
  border-bottom: none;
}
.loan-img-bg {
  background: var(--gradient);
  display: inline-block;
  box-shadow: 0px 5px 9px #00000029;
  border-radius: 25px;
  padding: 14px;
  margin-bottom: 15px;
}
.loan-img-bg img {
  width: 25px;
}
.gold-l-img {
  display: none;
}
.s-loan-bx {
 margin-top: 11px;
  padding: 10px;
  border-radius: 12px;
  transition: var(--ani);
}
.s-loan-bx h4 {
  font-family: var(--pmedium);
  font-size: 23px;
  margin-bottom: 5px;
  color: #000;
}
.s-loan-bx p {
  font-size: 16px;
}
.sec-service-right {
  padding-left: 60px;
  padding-top: 50px;
  position: relative;
}
.s-loan-bx.active {
  box-shadow: 0px 0px 15px #00234e36;
}
.offering-gloan {
 
  border-radius: 25px;
}
.offering-gloan .neel-service
{
 border-radius: 25px;   
}
.offering-gloan h3 {
  color: #fff;
  margin-bottom: 15px;
}
.offering-gloan h1 {
  color: #eecb4c;
  font-size: 50px;
  font-family: var(--pmedium);
}
.offering-gloan ul {
  margin: 0;
  padding: 0;
  margin-top: 50px;
}
.offering-gloan ul li {
  list-style: none;
  font-family: var(--plight);
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.offering-gloan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 33px;
  height: 33px;
  background: url("../images/gold-loan-bullets.png") no-repeat;
  background-size: 20px 20px;
}
.gold-expert {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 25px;
  padding: 20px 40px;
}
.gold-expert h6 {
  font-family: var(--pdemibold);
  font-size: 20px;
  color: var(--maincolor);
  margin-bottom: 5px;
}
.gold-expert a {
  font-family: var(--pmedium);
  font-size: 35px;
  color: #005dd6;
  line-height: 1;
}
.gold-expert a i {
  color: #000;
  font-size: 20px;
  transform: rotate(40deg);
  margin-left: 10px;
}
/* Services */

/* News  */
.news-main {
  padding: 0;
}
.news-logo {
  width: 220px;
  padding-left: 6%;
}
.news-updates {
  background: var(--gradient);
  padding: 80px;
  padding-right: 25%;
  padding-left: 15%;
  height: 100%;
}
.news-updates h5 {
  color: rgba(255, 255, 255, 0.7);
}
.news-updates h3 {
  color: #fff;
  position: relative;
}
.news-updates h3::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: -31px;
}
.news-border {
  border-left: 2px solid #193c66;
  padding-left: 30px;
}
.news-updates p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.news-right-posi {
  position: relative;
  top: -113px;
  right: 12%;
}
.newsit {
  background: #ffffff;
  box-shadow: 0px 3px 6px #0000004a;
  border-radius: 25px;
  padding: 20px;
  margin: 20px 10px;
  transition: var(--ani);
}
.news-img {
  position: relative;
}
.news-img img {
  border-radius: 25px;
}
.news-img i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  transform: rotate(40deg);
  color: #fff;
}
.newsit p {
  font-family: var(--pmedium);
  font-size: 18px;
  color: var(--maincolor);
  margin: 20px 0;
  line-height: 23px;
  transition: var(--ani);
}
.newsit:hover {
  background: #004393;
}
.newsit:hover p {
  color: #fff;
}
.owl-news .owl-nav .owl-prev,
.owl-news .owl-nav .owl-next,
.owl-news .owl-dot {
  font-family: "fontAwesome";
}
.owl-news .owl-nav {
  position: absolute;
  right: 30px;
  margin-top: 0;
}
.owl-news .owl-nav .owl-prev {
  margin-right: 17px;
}
.owl-news .owl-nav .owl-prev:before {
  font-family: "FontAwesome";
  content: "\f060";
  color: var(--maincolor);
  font-size: 17px;
}
.owl-news .owl-nav .owl-next:after {
  font-family: "FontAwesome";
  content: "\f061";
  color: var(--maincolor);
  font-size: 17px;
}
.owl-news .owl-nav .owl-prev:hover,
.owl-news .owl-nav .owl-next:hover {
  background-color: transparent;
}
/* News  */

/* Finance Today */
.finance-main h3 {
  color: var(--maincolor);
  margin-bottom: 30px;
}
.finance-main-para {
  padding: 0 20%;
  font-size: 16px;
}
.easy-count {
  background-color: #e6f6fc;
  border-radius: 14px;
  padding: 40px 0;
  margin-top: 40px;
}
.mcount-boc {
  border-right: var(--maincolor) solid 1px;
}
.mcount-boc .prg-count {
  font-family: var(--pmedium);
  font-size: 50px;
  color: var(--maincolor);
}
.mcount-boc .plus {
  font-family: var(--pmedium);
  font-size: 45px;
  color: var(--maincolor);
}
.mcount-boc p {
  font-family: var(--pmedium);
  font-size: 18px;
  margin-top: -5px;
}
/* Finance Today */

/* Testimonials */
.testi-main {
  /* background: url("../images/testi-bg.png") no-repeat;
  padding: 100px 0; */
  position: relative;
  background: var(--gradient);
}
.testi-men img {
  position: absolute;
  left: 75px;
  width: 250px;
  bottom: 0;
}
.testi-icon {
  position: absolute;
  left: -113px;
  width: 80px;
  top: 60px;
}
.testi-slide {
  width: 700px;
  position: relative;
  float: right;
  right: 5%;
}
.testi-slide h3 {
  color: #fff;
  margin-bottom: 50px;
}
.owl-testi p {
  color: #bdbdbd;
  font-size: 17px;
}
.owl-testi h5 {
  font-family: var(--pmedium);
  font-size: 18px;
  color: #fff;
  margin-top: 40px;
}
/* Testimonials */

/* Form */
.form-bx {
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000066;
  border-radius: 6px;
  padding: 30px;
}
.form-bx h3 {
  color: var(--maincolor);
}
.forms {
  margin-top: 30px;
}
.forms input {
  margin-bottom: 15px;
  background-color: #e6f6fc;
  border: none;
  padding: 10px;
  color: var(--maincolor);
  font-size: 16px;
  font-family: var(--pmedium);
}
.forms input::placeholder {
  color: var(--maincolor);
  font-size: 16px;
  opacity: 1;
}
.forms a {
  display: block;
  background-color: var(--maincolor);
  box-shadow: 0px 3px 6px #00000066;
  text-align: center;
  padding: 15px;
  font-size: 17px;
  font-family: var(--pmedium);
  color: #fff;
  transition: var(--ani);
}
.forms a:hover {
  background-color: #000;
}
.form-right-img {
  height: 100%;
}
/* Form */

/* Footer */
.footer-main {
  background-color: #edeeef;
}
.ftr-linkflex {
  align-items: center;
  gap: 30%;
}
.ftrlinkss a {
  display: block;
  font-family: var(--pmedium);
  font-size: 16px;
  opacity: 0.9;
  color: #000;
  transition: var(--ani);
  margin-bottom: 10px;
  position: relative;
  left: 0;
}
.ftrlinkss a:hover {
  color: var(--maincolor);
  left: 6px;
}
.news-ltr h5 {
  color: #000;
  font-family: var(--pmedium);
  font-size: 25px;
  margin-bottom: 15px;
}
.news-ltr h5 span {
  display: block;
}
.newsltr-input {
  position: relative;
}
.newsltr-input input {
  width: 100%;
  border: none;
  border-bottom: 0.5px solid #0000005e;
  padding: 10px;
  font-family: var(--pmedium);
  font-size: 16px;
  background-color: transparent;
}
.newsltr-input input::placeholder {
  font-family: var(--plight);
}
.newsltr-input input:focus,
.newsltr-input input:focus-visible {
  outline: none;
  border-bottom: 1px solid #000000;
}
.newsltr-input a {
  color: #fff;
  position: absolute;
  right: 10px;
  top: 6px;
}
.newsltr-input a i {
  background-color: var(--maincolor);
  font-size: 13px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  padding-top: 3px;
}
.first-ftr {
  padding-bottom: 5%;
  border-bottom: 1px solid #0000005e;
}
.second-ftr {
  padding-top: 5%;
}
.stay-ftr h3 {
  color: var(--maincolor);
}
.stay-ftr h3 span {
  display: block;
}
.ftr-media h6 {
  font-family: var(--pmedium);
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 20px;
}
.ftrmedia-flex {
  align-items: center;
  gap: 30px;
}
.ftrmedia-flex a i {
  color: var(--maincolor);
  font-size: 19px;
  transition: var(--ani);
}
.ftrmedia-flex a i:hover {
  color: #000;
}
.ftr-add {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ftr-add h5 {
  font-family: var(--pmedium);
  font-size: 18px;
  position: relative;
}
.ftr-add h5:before {
  font-family: "FontAwesome";
  position: absolute;
  left: -20px;
  content: "\f3c5";
  color: var(--maincolor);
  font-size: 17px;
}
.ftr-add p {
  font-family: var(--pmedium);
  font-size: 16px;
  color: #000;
  opacity: 0.8;
  line-height: 29px;
  margin-bottom: 0;
  letter-spacing: 0px;
}
.ftr-add p span {
  display: block;
}

footer {
  background: var(--gradient);
  padding: 5px 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ft-copy img {
  opacity: 0.4;
  width: 57px;
}
.ft-copy span {
  color: #fff;
  opacity: 0.5;
  font-family: var(--plight);
  font-size: 16px;
  padding-left: 10px;
}
.ft-policy a {
  color: #fff;
  font-family: var(--plight);
  font-size: 15px;
  margin: 0 10px;
}
/* Footer */

/* -------------- Abhout us -------------- */
/* About Banner */
.banner-subpages {
  position: relative;
}
.sub-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3%;
}
.sub-text h2 {
  color: #fff;
  font-family: var(--pmedium);
  font-size: 37px;
}

/* Helping */
.helping-sub h3 {
  color: var(--maincolor);
  text-align: center;
  margin-bottom: 10px;
}
.helping-sub h3 span {
  display: block;
}
.helping-sub p {
  text-align: center;
  color: #000;
  width: 719px;
  margin: auto;
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif;
}
/* Helping */
.hlp-bx {
  padding-top: 60px;
}
.hlp-logo {
  width: 140px;
  margin-left: -20px;
  display:none;
}
.hlp-content p {
  text-align: left;
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif;
  width: auto;
  opacity: 0.9;
  padding-right: 20px;
}

/* Financial Responsibility  */
.responsibility {
  background-color: #e6f6fc;
}
.responsibility h3 {
  color: #000;
  margin-bottom: 0;
}
.responsibility h3 span {
  display: block;
}
.responsibility p {
  font-size: 16px;
}

/* Mission */
.mission-sub {
  padding: 0;
}
.mission-bg {
  background-image: url("../images/mission-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5% 0;
  padding-bottom: 170px;
  color: #fff;
}
.mission-left h6 {
  font-family: var(--pmedium);
  opacity: 0.7;
  font-size: 18px;
  margin-bottom: 15px;
}
.mission-left h3 {
  font-size: 28px;
  margin-bottom: 0;
}
.mission-content {
  padding-left: 30px;
}
.mission-content h3 {
  position: relative;
}
.mission-content h3::before {
  content: "";
  position: absolute;
  left: -20px;
  width: 1px;
  height: 50px;
  background-color: #fff;
  top: 0;
}
.simple-bg {
  background-color: #e6f6fc;
  padding: 5% 0;
}
.simple-bx {
  background-color: #fff;
  box-shadow: 0px 3px 6px #0000004a;
  border-radius: 25px;
  padding: 60px 30px;
  margin-top: -180px;
}
.simple-cols {
  display: flex;
  align-items: center;
  gap: 20px;
}
.simple-cols img {
  width: 75px;
}
.simple-cols h5 {
  font-family: var(--pmedium);
  font-size: 25px;
  color: #000;
  margin-bottom: 10px;
}
.simple-cols p {
  font-size: 15px;
  opacity: 0.9;
}

/* -------------- Contact-------------- */
.getintouch-bx {
  padding: 30px;
  background: var(--gradient);
  border-radius: 25px;
}
.getform {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 25px;
}
.getform h3 {
  color: var(--maincolor);
  margin-bottom: 30px;
}
.getinput input {
  width: 100%;
  font-family: var(--pmedium);
  font-size: 16px;
  padding: 15px 10px;
  border: 0.5px solid #707070;
  border-radius: 6px;
  margin-bottom: 15px;
}
.getinput input:focus,
.getinput input:focus-visible,
.getinput textarea:focus,
.getinput textarea:focus-visible {
  outline: none;
  box-shadow: none;
}
.getinput textarea {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 16px;
  padding: 15px 10px;
  border: 0.5px solid #707070;
  resize: none;
  height: 55px;
  font-family: var(--pmedium);
}
.getinput a {
  width: 100%;
  box-shadow: 0px 3px 6px #00000066;
  background-color: #002c62;
  display: block;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-family: var(--pmedium);
  transition: var(--ani);
}
.getinput a:hover {
  background-color: #000;
}
.get-right {
  padding: 40px;
}
.get-right h4 {
  font-size: 23px;
  color: #fff;
  font-family: var(--plight);
  margin-bottom: 30px;
}
.get-right h4 span {
  display: block;
}
.get-right p {
  color: #fff;
  font-size: 16px;
}
.get-det {
  padding-top: 40px;
}
.get-det a {
  color: #fff;
  font-size: 25px;
  font-family: var(--pmedium);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  transition: var(--ani);
}
.get-det a i {
  font-size: 15px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 10px;
  transition: var(--ani);
}
.get-det a:hover {
  color: #000;
}
.get-det a:hover i {
  border: 1px solid #000;
}
.locate-sub {
  padding-top: 0;
}
.locate-left {
  border-radius: 25px;
  background: var(--gradient);
}
.locate-center {
  position: relative;
}
.locate-logo img {
  width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.locate-right {
  background-image: url("../images/locate-bg-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  color: #fff;
}
.locate-content {
  padding: 60px;
  padding-bottom: 30px;
}
.locate-content h3 {
  margin-bottom: 30px;
}
.locate-content h5 {
  font-family: var(--plight);
  margin-bottom: 15px;
}
.locate-content h5 img {
  width: 22px;
  margin-right: 10px;
}
.locate-content p {
  padding-left: 30px;
  margin-bottom: 30px;
}

/* -------------- Service -------------- */
.serviceb-content {
  padding: 5% 8%;
}
.serviceb-content h1 {
  font-size: 60px;
  color: #eecb4c;
  font-family: var(--pmedium);
  margin-bottom: 10px;
}
.serviceb-content h3 {
  color: var(--maincolor);
  margin-bottom: 50px;
}
.serviceb-content h3 span {
  display: block;
}
.serviceb-content p {
  font-size: 16px;
  padding-right: 200px;
}
.serv-enq {
  padding-top: 30px;
}
.serv-enq a {
  font-family: var(--pdemibold);
  font-size: 18px;
  color: #fff;
  background: var(--gradient);
  padding: 16px 30px;
  border-radius: 25px;
  display: inline-block;
  transition: var(--ani);
}
.serv-enq a i {
  background-color: #fff;
  color: var(--maincolor);
  border-radius: 50%;
  width: 21px;
  aspect-ratio: 1/1;
  text-align: center;
  padding-top: 2px;
  margin-left: 50px;
  transition: var(--ani);
}
.serv-enq a:hover i {
  margin-left: 60px;
}
.serviceb-right {
  background: var(--gradient);
  height: 100%;
  position: relative;
}
.serive-right-img {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  z-index: 1;
}
.serivce-right-coin {
  position: absolute;
  bottom: 30px;
  left: -127px;
  z-index: 2;
  width: 129px;
}
.ss-main {
  padding: 0;
}
.ss-first-bg {
  background-color: #e6f6fc;
  padding-top: 5%;
}
.minimal-bx-position {
  position: relative;
}
.minimal-bx {
  padding: 40px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 33px;
  background-color: #fff;
  position: absolute;
  width: 96%;
}
.minimal-bx ul
{
    padding-left:0;
}
.minimal-bx ul li {
  display: block;
  font-family: var(--pmedium);
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.minimal-bx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url("../images/footer-logo.png");
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}
.minimal-logo-withname {
  width: 70%;
  margin-top: 20px;
}
.minimal-right {
  gap: 30px;
  align-items: center;
}
.bangles-img {
  width: 250px;
}
.minimal-right-logo {
  opacity: 0.2;
  width: 150px;
  height: 150px;
  margin-top: -50px;
}
.s-gloan-bg {
  background: var(--gradient);
  padding-bottom: 5%;
  padding-top: 150px;
}
.gloan-s-bx {
  background-color: #fff;
  border-radius: 9px;
  padding: 40px;
  position: relative;
}
.gloan-ss-right h3 {
  color: var(--maincolor);
  margin-bottom: 20px;
}
.gloan-ss-right p {
  font-size: 15px;
  margin-bottom: 0;
}
.service-gold-loan-img {
  width: 70%;
  margin: auto;
  display: block;
  margin-top: 80px;
}
.ss-tabs {
  position: absolute;
  right: 70px;
  top: 40px;
}
.ss-nav {
  font-family: var(--pmedium);
  font-size: 20px;
  color: #000;
  margin: 0 3px;
  border: #000 1px solid;
  padding: 5px 15px;
  border-radius: 12px;
}
.ss-nav.active {
  color: #043878;
  border: var(--maincolor) 1px solid;
}
.all-bx {
  padding: 40px;
  border: 0.5px solid #707070;
  border-radius: 33px;
}
.all-img-left img {
  width: 80%;
  display: block;
  margin: auto;
}
.all-content h3 {
  margin-bottom: 20px;
  color: var(--maincolor);
}
.all-content p {
  font-size: 17px;
}
/* Responsive */
@media (max-width: 1366.5px) {
  .newsit {
    height: 316px;
  }
}
@media (max-width: 1294.5px) {
  .head-logo img {
    width: 280px;
  }
}
@media (max-width: 1259.5px) {
  .head-logo img {
    width: 280px;
  }
  .head-nav ul {
    padding-left: 0;
  }
  .head-btn::after,
  .head-btn::before {
    height: 54px;
    top: -12px;
  }
  .head-btn a {
    padding: 2px 8px;
  }
}
@media (max-width: 1222.5px) {
  .head-nav {
    display: none;
  }
}

@media (max-width: 991.5px) {
  .od-1 {
    order: 1;
  }
  .od-2 {
    order: 2;
  }
  .od-3 {
    order: 3;
  }
  section {
    padding: 30px 0;
  }
  .res-shadow {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px #00234e36;
  }
  .mlinks-bx {
    padding-top: 0;
  }
  .m-header h2 {
    font-size: 34px;
    margin-top: 30px;
  }
  .m-tags {
    padding-top: 15px;
  }
  .m-quick-linkss {
    padding-left: 0;
  }
  .m-contact p {
    font-size: 16px;
  }
  .mob-banner {
    display: block;
    height: 400px;
    object-fit: cover;
  }
  .banner-text {
    right: inherit !important;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 90%;
  }
  .desk-banner {
    display: none;
  }
  .sub-container,
  .main-container {
    padding: 0 3%;
  }
  .about-desk {
    display: none !important;
  }
  .about-mob {
    display: block;
  }
  .ab-faq-bx {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-top: 30px;
  }
  .about-left h3 {
    margin-bottom: 15px;
  }
  .main-text {
    font-size: 29px;
  }
  .helping-right h3,
  .helping-right h5 {
    margin-top: 30px;
  }
  .helping-right h3 span,
  .helping-right h5 span {
    display: inline;
  }
  .helping-right h5 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .service-right h3 {
    margin-bottom: 20px;
  }
  .service-left h5 {
    margin-bottom: 30px;
  }
  .sec-service-right {
    padding-left: 0;
    padding-top: 30px;
  }
  .s-loan-bx p {
    display: none;
  }
  .gold-expert a {
    font-size: 26px;
  }
  .news-logo {
    display: none;
  }
  .news-main {
    background: var(--gradient);
    border-radius: 12px;
  }
  .news-right-posi {
    position: static;
    padding: 0 30px;
  }
  .news-updates {
    padding: 5% 30px;
    padding-bottom: 0;
  }
  .newsit {
    height: auto;
    margin: 29px 10px;
  }
  .testi-men img {
    display: none;
  }

  .owl-testi h5 {
    margin-top: 30px;
  }
  .finance-main-para {
    padding: 0;
  }
  .mcount-boc p {
    font-size: 16px;
  }
  .finance-main {
    background-color: #e6f6fc;
  }
  .easy-count {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .form-right-img {
    display: block;
    margin: auto;
    margin-top: 30px;
    border-radius: 12px;
  }
  .ftr-logo img {
    width: 90px;
    margin-bottom: 30px;
  }
  .stay-ftr h3 {
    margin-bottom: 30px;
  }
  .stay-ftr h3 span {
    display: inline;
  }
  .ftr-add {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10%;
  }
  .ft-copy span {
    font-size: 14px;
  }
  .ft-policy a {
    font-size: 12px;
    position: relative;
    top: -3px;
  }
  .first-ftr {
    padding-bottom: 0;
    border-bottom: none;
  }
  .testi-slide {
    width: 500px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    float: none;
    border: 2px solid #153f73;
    padding: 20px;
    border-radius: 12px;
  }
  .testi-icon {
    left: -79px;
    width: 55px;
    top: 20px;
  }
  .testi-main,
  .helping-main {
    border-radius: 12px;
  }
  .helping-right p {
    margin-bottom: 20px;
  }
  .sec-service-left {
    overflow-x: auto;
    white-space: nowrap;
     padding-top: 15px !important;
  }
  .s-loan-main {
    display: flex;
    gap: 15px;
  }
  .s-loan-bx.active {
    border: 1px solid #000;
    box-shadow: 0px 0px 15px #00234e85;
  }
  .s-loan-bx {
    white-space: nowrap;
    border: 1px solid #01265244;
    box-shadow: 0px 0px 15px #00234e36;
    padding: 10px;
    border-radius: 12px;
  }
  .s-loan-bx h4 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0;
  }
  /* -------------- Abhout us -------------- */
  .banner-subimg {
    height: 260px;
    object-fit: cover;
  }
  .sub-text h2 {
    font-size: 30px;
  }
  .helping-sub h3 {
    margin-bottom: 20px;
    text-align: left;
  }
  .helping-sub h3 span,
  .responsibility h3 span {
    display: inline;
  }
  .hlp-bx {
    padding-top: 5px;
  }
  .hlp-logo {
    margin: auto;
    display: block;
    padding-bottom: 5px;
    display: none;
  }
  .helping-sub p {
    text-align: justify;
    padding-bottom: 0px;
    width: auto;
  }
  .hlp-content p {
    padding-right: 0;
    padding-bottom: 20px;
  }
  .responsibility h3 {
    margin-bottom: 10px;
  }
  .mission-left h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .mission-content {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .mission-content h3::before {
    top: 8px;
  }
  .mission-bg {
    padding-bottom: 160px;
    border-radius: 12px;
  }
  .simple-bg {
    padding: 30px 0;
  }
  .simple-bx {
    padding: 30px;
    padding-bottom: 10px;
  }
  .simple-cols {
    margin-bottom: 20px;
  }
  .simple-cols img {
    width: 60px;
  }
  .simple-cols h5 {
    font-size: 22px;
  }
  .simple-cols p {
    opacity: 1;
  }
  .responsibility p {
    font-size: 15px;
    text-align: justify;
  }
  /* -------------- Contact -------------- */
  .get-right h4 span {
    display: inline;
  }
  .get-right {
    padding: 30px 0;
    padding-bottom: 0;
  }
  .get-right h4 {
    margin-bottom: 20px;
  }
  .get-det {
    padding-top: 30px;
  }
  .locate-content {
    padding: 30px;
  }
  .locate-content h3 {
    margin-bottom: 20px;
  }
  .locate-content p {
    margin-bottom: 20px;
  }
  .locate-left {
    height: 120px;
    margin-top: 30px;
  }
  .locate-logo img {
    width: 170px;
  }
  /* -------------- Service -------------- */
  .serive-right-img {
    position: static;
    transform: none;
    width: 60%;
    float: right;
  }
  .serviceb-right {
    background: none;
  }
  .serivce-right-coin {
    display: none;
  }
  .service-banner {
    padding: 30px 3%;
  }
  .serviceb-content {
    padding: 0;
  }
  .serviceb-content p {
    padding-right: 0;
    text-align: justify;
  }
  .serviceb-content h1 {
    font-size: 33px;
  }
  .serviceb-content h3 span {
    display: inline-block;
  }
  .serviceb-content h3 {
    margin-bottom: 20px;
  }
  .ss-first-bg {
    padding: 30px 0;
  }
  .minimal-bx {
    padding: 30px;
    position: static;
  }
  .minimal-logo-withname {
    width: 350px;
    margin-top: 0px;
  }
  .bangles-img {
    display: none;
  }
  .minimal-right-logo {
    display: none;
  }
  .s-gloan-bg {
    padding: 30px 0;
  }
  .service-gold-loan-img {
    width: 50%;
    margin-top: 10px;
  }
  .gloan-ss-right p,
  .all-content p {
    text-align: justify;
  }
  .all-bx {
    padding: 30px;
  }
  .all-content h3 {
    margin-bottom: 15px;
  }
  .all-img-left img {
    width: 40%;
    margin-top: 20px;
  }
}
@media (max-width: 767.5px) {
  .helping-right a {
    padding: 5px 20px;
    font-size: 15px;
  }
  .mcount-boc {
    border-right: none;
    margin-bottom: 30px;
  }
  .mcount-boc .prg-count,
  .mcount-boc .plus {
    font-size: 30px;
  }
  .testi-main {
    padding: 5% 3%;
  }
  .testi-slide {
    width: 100%;
    right: inherit;
  }
  .testi-slide h3 {
    margin-bottom: 30px;
  }
  .news-ltr h5 {
    margin-top: 20px;
  }
  .news-ltr h5 span {
    display: inline;
  }
  .ftr-add {
    margin-top: 20px;
  }
  .form-bx {
    margin-bottom: 30px;
  }
  .form-right-img {
    width: 100%;
    margin-top: 0;
  }
  .s-loan-main {
    display: flex;
    align-items: center;
  }
  .loan-img-bg img {
    width: 30px;
  }
  .s-loan-bx h4 {
    font-size: 20px;
  }
  .s-loan-bx p {
    font-size: 13px;
  }
  .gold-expert {
    right: 0;
  }
  .offering-gloan {
    padding: 40px 30px;
  }
  .main-text {
    font-size: 24px;
  }
  .offering-gloan h1 {
    font-size: 30px;
  }
  .offering-gloan ul li {
    font-size: 18px;
  }
  .offering-gloan ul li::before {
    top: 2px;
  }
  .service-right h3 {
    margin-top: 0;
  }
  .about-left p,
  .service-right p,
  .finance-main-para {
    color: #000;
    font-size: 15px;
  }
    /* -------------- Service -------------- */
    .service-gold-loan-img {
      width: 60%;
    }
    .all-bx,
    .gloan-s-bx {
      padding: 20px;
    }
    .ss-tabs {
      right: 20px;
      top: 20px;
    }
    .ss-nav{
      font-size: 18px;
    }
}
@media (max-width: 710.5px) {
  footer {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .ft-policy a {
    font-size: 14px;
  }
}
@media (max-width: 666.5px) {
  .locate-content {
    padding-bottom: 70px;
  }
  .locate-logo img {
    width: 135px;
  }
  .locate-left {
    height: 85px;
  }
}
@media (max-width: 630.5px) {
  .header-strip {
    padding: 2px 2%;
  }
  .header-strip a span {
    display: none;
  }
  .st-contact span {
    display: none;
  }
  .st-contact {
    gap: 10px;
  }
  .head-btn {
    display: none;
  }
  .gold-expert {
    position: static;
    margin-top: 20px;
    box-shadow: 0px 0px 6px #00000051;
    padding: 20px;
    width: 245px;
  }
  .gold-expert a {
    font-size: 21px;
  }
  .gold-l-img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 63px;
    width: 30%;
  }
  .owl-testi h5 {
    margin-top: 12px;
  }
  .m-header h2 {
    font-size: 28px;
  }
  .m-contact h4::before {
    font-size: 16px;
    top: 3px;
  }
  .offering-gloan {
    background-image: none;
    background: var(--gradient);
  }
  .offering-gloan ul {
    margin-top: 20px;
  }

  .s-loan-bx h4 {
    font-size: 17px;
    margin-top: 5px;
    margin-bottom: 0;
  }
  .s-loan-bx {
    border: 1px solid #01265244;
    box-shadow: 0px 0px 15px #00234e36;
    padding: 10px;
    border-radius: 12px;
  }
  .loan-img-bg {
    margin: auto;
  }
  .m-medias a i {
    font-size: 17px;
  }
  .finance-main h3 {
    margin-bottom: 20px;
  }
  .ftr-add {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .finance-main-para {
    text-align: justify !important;
  }
  .forms a {
    padding: 8px;
  }
  .getintouch-bx {
    padding-bottom: 20px;
  }
  .get-right h4 {
    font-size: 20px;
  }
  .get-right p {
    text-align: justify;
  }
  .get-det a {
    font-size: 21px;
  }
  .serviceb-content h1 {
    font-size: 28px;
  }
}
@media (max-width: 575.5px) {
  .hlp-img {
    width: 100%;
  }
  .ss-tabs{
    position: static;
    padding-bottom: 20px;
  }
  .service-gold-loan-img,
  .all-img-left img {
    width: 100%;
  }
  .minimal-logo-withname{
    display: none;
  }
  .serv-enq {
    padding-top: 20px;
  }
  .serv-enq a {
    font-size: 16px;
    padding: 9px 21px;
  }
  .help-shadow{
    padding: 10px;
    padding-bottom: 20px;
  }
}
@media (max-width: 500.5px) {
  .m-logo a img {
    width: 93%;
  }
  .overlay-close {
    top: 40px;
    right: 40px;
  }
  .overlay-close i {
    font-size: 23px;
  }
  .m-header h2 {
    font-size: 25px;
  }
  .m-contact h4 {
    font-size: 20px;
  }
  .st-media {
    gap: 15px;
  }
  .st-media a i {
    font-size: 14px;
  }
  .about-left p {
    margin-bottom: 6px;
    text-align: justify;
    font-size: 15px;
  }
  .about-left h3 {
    line-height: normal;
  }
  .helping-right h5 {
    font-size: 19px;
    margin: 0;
    margin-bottom: 10px;
  }
  .service-right h3,
  .helping-right h3 {
    margin-bottom: 15px;
  }
  .main-text {
    font-size: 22px;
  }
  .main-text {
    font-size: 22px;
  }
  .ft-copy span {
    display: block;
    margin-top: 6px;
  }
  .banner-subimg {
    height: 180px;
  }
  .sub-text h2 {
    font-size: 28px;
  }
  .serive-right-img{
    width: 80%;
    margin-top: 20px;
  }
  .ss-nav {
    font-size: 15px;
  }
}
