@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "poppinsregular";
  font-size: 14px;
}
/* MAIN LAYOUT
========================================================================*/
.topHeader {
  background: #f0cc96;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}
.topHeader .topLeft {
  width: 50%;
  float: left;
  color: #841618;
  font-size: 16px;
}
.topHeader .topLeft img {
  height: 20px;
  float: left;
  margin-right: 5px;
}
.topHeader .topLeft span {
  float: left;
}
.topHeader .topLeft a {
  color: #841618;
  display: inline-block;
  line-height: 20px;
  margin-top: 4px;
}
.topHeader .topLeft a.callIcon {
  margin-left: 20px;
}
.topHeader .topRight {
  width: 49%;
  float: left;
  text-align: right;
  color: #841618;
  font-size: 13px;
}
.topHeader .topRight a {
  color: #841618;
  transition: 0.5s;
}
.topHeader .topRight a:hover,
.topHeader .topRight a.active {
  color: #ffffff;
  transition: 0.5s;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
  .topHeader .topLeft {
    width: 100%; /* Full width for mobile */
    display: flex; /* Use flexbox to align items in one row */
    justify-content: space-between; /* Space items evenly */
    align-items: center; /* Vertically center content */
    flex-wrap: nowrap; /* Prevent wrapping to new line */
    font-size: 10px; /* Reduced font size for mobile */
    padding: 0 5px; /* Reduced padding for tighter spacing */
  }

  .topHeader .topLeft a.emailIcon,
  .topHeader .topLeft a.whatsappIcon {
    display: flex; /* Align icon and text within each link */
    align-items: center; /* Vertically center icon and text */
    margin: 0; /* Remove extra margins */
    padding: 3px; /* Reduced padding for mobile */
    max-width: 48%; /* Limit width to prevent overflow */
  }

  .topHeader .topLeft a.emailIcon {
    flex: 1; /* Allow email to take available space */
    white-space: nowrap; /* Prevent email text from wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Show ellipsis for long email text */
  }

  .topHeader .topLeft a.whatsappIcon {
    flex: 0 0 auto; /* Prevent WhatsApp link from stretching */
    margin-left: 5px; /* Further reduced margin for mobile */
  }

  .topHeader .topLeft img {
    height: 14px; /* Further reduced icon size for mobile */
    margin-right: 3px; /* Reduced margin for tighter spacing */
  }

  .topHeader .topRight {
    display: none; /* Hide topRight in mobile view */
  }
}
/* HEADER
========================================================================*/
header {
  background: rgb(31, 39, 107);
  padding: 15px 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 48px;
  left: 0;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.logo {
  width: 20%;
  float: left;
}
.logo a {
  display: inline-block;
}
.logo a img {
  width: 134px;
  height: 60px;
}

/* sk edit
========================================================================*/
.navigation {
  width: 80%;
  float: right;
}

/* sk edit
/* NAV
========================================================================*/
.menuBtn {
  width: 30px;
  position: relative;
  position: absolute;
  right: 0;
  top: 6px;
  display: none;
}
.menuBtn span {
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: #faa627;
  display: block;
}
.menuBtn span:first-child {
}
.menuBtn span:nth-child(2) {
  margin: 5px 0;
}
.menuBtn span:last-child {
}
.menuBtn.active span {
}
.menuBtn.active span:first-child {
  transform: rotate(45deg);
  margin: 6px 0 0 0;
}
.menuBtn.active span:nth-child(2) {
  opacity: 0;
}
.menuBtn.active span:last-child {
  transform: rotate(-45deg);
  margin: -16px 0 0 0;
}

.navigation {
  margin: 5px 0 0 0;
  font-family: "poppinsmedium";
}
.navigation ul {
  float: right;
}
.navigation ul li {
  float: left;
}
.navigation ul li a {
  color: #ffffff;
  font-size: 16px;
  padding: 10px 15px;
  transition: 0.5s;
}
.navigation ul li a:hover,
.navigation ul li.active a,
.navigation ul li:hover a,
.navigation ul li a.active {
  color: #faa627;
  transition: 0.5s;
}
/* BANNER
========================================================================*/
.bannerWrap {
  margin-top: 116px;
}
.bannerWrap .bannerSlider {
}
.bannerWrap .banner {
}
.bannerWrap .banner img {
  width: 100%;
}
.bannerWrap .banner img.desktopBanner {
  display: block;
  padding: 26px;
}
.bannerWrap .banner img.mobileBanner {
  display: none;
  padding: 33px;
}

/* Inner Page BANNER
========================================================================*/
.innerbannerWrap {
  margin-top: 117px;
}
.innerbannerWrap img {
  width: 100%;
}
.innerbannerWrap img.desktopBanner {
  display: block;
}
.innerbannerWrap img.mobileBanner {
  display: none;
}
.innerbannerWrap .bannerSlider {
}
.innerbannerWrap .banner {
}
.innerbannerWrap .banner img {
  width: 100%;
}
.innerbannerWrap .banner img.desktopBanner {
  display: block;
}
.innerbannerWrap .banner img.mobileBanner {
  display: none;
}

.innerbannerWrap {
  position: relative;
}
.innerbannerWrap h1 {
  position: absolute;
  text-align: center;
  margin: auto;
  top: 50%;
  margin-top: -15px;
  width: 100%;
  text-transform: uppercase;
  color: #841618;
  font-family: "poppinsbold";
}
.innerbannerWrap h1 span {
  text-transform: lowercase;
}
.goldloanbannerWrap {
  width: 100%;
  background: #f3f6fb;
  padding-top: 40px;
}
.goldloanbannerWrap .goldloanbannerInner {
}
.goldloanbannerWrap .goldloanbannerInner .goldloanbannerLeft {
  width: 40%;
  float: left;
  color: #808285;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanbannerLeft h3 {
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #841618;
  font-family: "poppinsbold";
  margin-top: 80px;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanbannerimg {
  width: 35%;
  float: left;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanbannerimg img {
  width: 100%;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanbannerLeft .knowMore {
  margin-top: 40px;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanbannerLeft .knowMore a {
  text-transform: uppercase;
  background: #841618;
  color: #ffffff;
  padding: 8px 25px;
  display: inline-block;
  transition: 0.3s;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanbannerLeft .knowMore a:hover {
  background: #faa627;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanForm {
  width: 28%;
  float: right;
  margin-left: -3%;
  background: rgba(128, 130, 133, 0.7);
  border-radius: 10px;
  padding: 30px;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanForm h3 {
  font-size: 18px;
  color: #841618;
  text-align: center;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanForm .inputBox {
  position: relative;
  margin-bottom: 15px;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanForm .inputBox .formError {
  color: #d30909;
  font-weight: normal;
  font-size: 13px;
  position: absolute;
  left: 10px;
  bottom: -16px;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanForm .inputBox input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #f5f5f5;
  border: none;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanForm .inputSubmit {
  text-align: center;
  margin-top: 25px;
}
.goldloanbannerWrap .goldloanbannerInner .goldloanForm .inputSubmit input {
  text-transform: uppercase;
  background: #841618;
  color: #ffffff;
  padding: 10px 25px;
  display: inline-block;
  transition: 0.3s;
  border: none;
  font-size: 15px;
  border-radius: 10px;
}
.goldloanbannerWrap
  .goldloanbannerInner
  .goldloanForm
  .inputSubmit
  input:hover {
  background: #faa627;
}

/* CONTAINER
========================================================================*/
.goldinvaluableWrap {
  position: relative;
  padding: 60px 0 130px 0;
}
.goldinvaluableWrap .goldinvaluableInner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.goldinvaluableWrap .heroContent {
  width: 90%;
  margin: 0 auto;
}
.goldinvaluableWrap .heroContent h2 {
}
.goldinvaluableWrap .heroContent h2 span {
  color: #841618;
}
.goldinvaluableWrap .steps {
  margin-top: 50px;
}
.goldinvaluableWrap .steps ul {
}
.goldinvaluableWrap .steps ul li {
  width: 31%;
  float: left;
  margin: 0 1%;
  background: #263f3e;
  border: 1px solid #841618;
  padding: 30px;
  transition: 0.4s;
}
.goldinvaluableWrap .steps ul li:hover {
  background: #e7e1e1;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}
.goldinvaluableWrap .steps ul li img {
  margin-bottom: 25px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.4s;
  width: 130px;
}
.goldinvaluableWrap .steps ul li:hover img {
  background: #7070d3;
  transition: 0.4s;
}
.goldinvaluableWrap .steps ul li h3 {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #faa627;
  text-transform: uppercase;
  transition: 0.4s;
}
.goldinvaluableWrap .steps ul li h4 {
  font-size: 26px;
  line-height: 28px;
  color: #ffffff;
  transition: 0.4s;
}
.goldinvaluableWrap .steps ul li:hover h4 {
  color: #000000;
  transition: 0.4s;
}
.goldinvaluableWrap .steps ul li:hover h3 {
  color: #841618;
  transition: 0.4s;
}
/*.goldinvaluableWrap .steps ul li:first-child{  background:#ffffff; border:1px solid #faa627}
.goldinvaluableWrap .steps ul li:first-child h3{ color:#841618; }
.goldinvaluableWrap .steps ul li:first-child h4{ color:#000000;}*/

.reachingoutWrap {
  background: url("../images/middleBg.jpg") no-repeat center/cover;
  padding: 60px 0 80px 0;
}
.reachingoutWrap .reachingoutInner {
}
.reachingoutWrap .reachingoutInner .reachingoutLeft {
  width: 60%;
  float: left;
}
.reachingoutWrap .reachingoutInner .reachingoutLeft h2 {
  color: #ffffff;
}
.reachingoutWrap .reachingoutInner .reachingoutLeft h2 span {
  color: #faa627;
}
.reachingoutWrap .reachingoutInner .reachingoutLeft .lineFirst {
  color: #ffffff;
  font-size: 18px;
}
.reachingoutWrap .reachingoutInner .reachingoutLeft .lineSec {
  color: #faa627;
  margin-top: 20px;
  font-size: 18px;
}
.reachingoutWrap .reachingoutInner .reachingoutRight {
  width: 40%;
  float: right;
  display: none;
}
.reachingoutWrap .reachingoutInner .reachingoutRight img {
  width: 100%;
  margin: -150px 0 -60px 0;
}

.statsWrap {
  position: relative;
}
.statsWrap .statsInner {
  background: #faa627;
  border-radius: 6px;
  position: absolute;
  top: -50px;
  width: 100%;
  z-index: 99;
}
.statsWrap .statsInner ul {
  padding: 30px 0;
  overflow: hidden;
}
.statsWrap .statsInner ul li {
  float: left;
  width: 14.25%;
  padding: 0 1%;
  text-align: center;
  position: relative;
  min-height: 90px;
}
.statsWrap .statsInner ul li:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ffca7a;
  content: "";
}
.statsWrap .statsInner ul li:last-child:after {
  display: none;
}
.statsWrap .statsInner ul li .num {
  font-size: 22px;
  line-height: 25px;
  color: #841618;
  font-family: "poppinsbold";
  margin-bottom: 10px;
}
.statsWrap .statsInner ul li .txt {
}

/* Partners Section */
.partnersWrap {
  padding: 160px 0 60px 0;
  text-align: center;
  background: #f8f4d0 url("../images/middleBg2.jpg") no-repeat center/cover;
}

.partnersWrap h2 span {
  color: #841618;
}

.partnersWrap .partnersInner ul {
  margin-top: 30px;
}

.partnersWrap .partnersInner ul li {
  width: 23%;
  margin: 10px 1%;
  float: left;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.partnersWrap .partnersInner ul li img {
  width: 100%;
  height: auto; /* Ensure proportional scaling */
}

.partnersWrap .partnersInner ul li .design {
  display: block;
  padding: 10px;
  min-height: 54px;
  background: #faa627;
  font-size: 12px;
  line-height: 17px;
  color: #000000;
  font-weight: bold; /* Moved from inline */
}

/* Remove inline styles for desktop */
@media (min-width: 769px) {
  .partnersWrap .partnersInner ul li .design {
    font-size: 18px; /* Match original inline style */
  }
}

/* Fix typo in original CSS */
.partnersWra .partnersInner {
  /* Corrected typo: .partnersWra to .partnersWrap */
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
  .partnersWrap {
    padding: 100px 0 40px 0; /* Reduced padding for mobile */
  }

  .partnersWrap .partnersInner ul {
    margin-top: 20px; /* Reduced margin for mobile */
    display: flex; /* Use flexbox for side-by-side layout */
    flex-wrap: wrap; /* Allow wrapping to next row */
    justify-content: center; /* Center cards */
  }

  .partnersWrap .partnersInner ul li {
    width: calc(33.33% - 10px); /* Three cards per row with margin */
    margin: 5px; /* Reduced margin for mobile */
    float: none; /* Remove float for flexbox */
    box-sizing: border-box; /* Include padding/margins in width */
  }

  .partnersWrap .partnersInner ul li img {
    width: 100%;
    height: auto; /* Maintain proportional scaling */
  }

  .partnersWrap .partnersInner ul li .design {
    font-size: 10px; /* Smaller font for mobile */
    padding: 6px; /* Reduced padding */
    min-height: 40px; /* Adjusted for mobile */
    line-height: 14px; /* Adjusted for smaller font */
  }
}
.leadershipteamWrap {
  position: relative;
  padding: 60px 0 120px 0;
}

.leadershipteamWrap .leadershipteamInner {
  text-align: center;
}

.leadershipteamWrap .leadershipteamInner ul {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* makes it responsive */
  gap: 20px; /* space between cards */
  padding: 0;
  list-style: none;
}

.leadershipteamWrap .leadershipteamInner ul li {
  flex: 1 1 calc(25% - 20px); /* 4 in a row, responsive */
  max-width: calc(25% - 20px);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  overflow: hidden; /* Ensure image stays within card boundaries */
}

.leadershipteamWrap .leadershipteamInner ul li:hover {
  transform: translateY(-8px);
}

.leadershipteamWrap .leadershipteamInner ul li .pic img {
  width: 100%; /* Full width of the card */
  height: 100%; /* Full height of the card */
  object-fit: cover; /* Ensure image fills card without distortion */
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .leadershipteamWrap .leadershipteamInner ul li {
    flex: 1 1 calc(45% - 20px);
    max-width: calc(45% - 20px);
  }
}

@media (max-width: 600px) {
  .leadershipteamWrap .leadershipteamInner ul li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testimonialsWrap {
  position: relative;
  padding: 60px 0;
  background: #f4f4f4;
  display: none;
}
.testimonialsWrap .reachingoutInner {
  text-align: center;
}
.testimonialsWrap .reachingoutInner h2 {
}
.testimonialsWrap .reachingoutInner h2 span {
  color: #841618;
}
.testimonialsWrap .reachingoutInner .testimonialsGroup {
  width: 60%;
  margin: 40px auto 0 auto;
}
.testimonialsWrap .reachingoutInner .testimonialsSlider {
}
.testimonialsWrap .reachingoutInner .testimonialsSlider .testimonialsBox {
  background: #ffffff;
  padding: 30px 60px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.testimonialsWrap
  .reachingoutInner
  .testimonialsSlider
  .testimonialsBox
  .profile {
}
.testimonialsWrap
  .reachingoutInner
  .testimonialsSlider
  .testimonialsBox
  .profile
  .profilepic {
  width: 120px;
  float: left;
}
.testimonialsWrap
  .reachingoutInner
  .testimonialsSlider
  .testimonialsBox
  .profile
  .profilepic
  img {
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.testimonialsWrap
  .reachingoutInner
  .testimonialsSlider
  .testimonialsBox
  .profile
  .profileInfo {
  float: left;
}
.testimonialsWrap
  .reachingoutInner
  .testimonialsSlider
  .testimonialsBox
  .profile
  .profileInfo
  .name {
  font-size: 18px;
  line-height: 20px;
  margin-top: 20px;
  text-transform: uppercase;
  color: #2d3e50;
  font-family: "poppinsbold";
  margin-bottom: 10px;
}
.testimonialsWrap
  .reachingoutInner
  .testimonialsSlider
  .testimonialsBox
  .profile
  .profileInfo
  .desig {
  color: #2d3e50;
  text-transform: uppercase;
}
.testimonialsWrap .reachingoutInner .testimonialsSlider .testimonialsBox .info {
  margin-top: 20px;
}

.connectWrap {
  /*background:#e5e5e5;*/
  padding-bottom: 60px;
}
.connectWrap .connectHeading {
  background: url("../images/bottomBg.jpg") no-repeat center/cover;
  text-align: center;
  padding: 60px 0 100px 0;
}
.connectWrap .connectHeading h2 {
  color: #faa627;
}
.connectWrap .connectHeading h2 span {
  color: #ffffff;
}
.connectWrap .connectInfo {
  text-align: center;
  margin: -70px 0 0 0;
}
.connectWrap .connectInfo ul {
}
.connectWrap .connectInfo ul li {
  color: #313131;
  width: 31%;
  float: left;
  margin: 0 1%;
  background: #e7cca5;
  padding: 30px;
  font-family: "poppinsmedium";
  min-height: 360px;
}
.connectWrap .connectInfo ul li img {
  margin-bottom: 20px;
}
.connectWrap .connectInfo ul li h3 {
  color: #841618;
  font-size: 26px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "poppinssemibold";
}
.connectWrap .connectInfo ul li p {
  min-height: 52px;
}
.connectWrap .connectInfo ul li a {
  color: #313131;
}

.bottomWrap {
  background: #e5e5e5;
  padding: 60px 0;
}
.bottomWrap .bottomInner {
}
.bottomWrap .bottomInner .formWrap {
  width: 48%;
  float: left;
  margin-right: 4%;
}
.bottomWrap .bottomInner .formWrap h2 {
  color: #841618;
  margin-bottom: 10px;
}
.bottomWrap .bottomInner .formWrap .form {
  margin-top: 30px;
}
.bottomWrap .inputBox {
  position: relative;
  margin-bottom: 20px;
}
.bottomWrap .inputBox .formError {
  color: #e30000;
  font-weight: normal;
  font-size: 12px;
  position: absolute;
  left: 0;
  bottom: -14px;
}
.bottomWrap .inputBox input {
  width: 100%;
  padding: 15px 15px;
  font-family: "poppinsregular";
  border: none;
}
.bottomWrap .inputBox select {
  width: 100%;
  padding: 15px 15px;
  font-family: "poppinsregular";
  border: none;
}
.bottomWrap .inputBox textarea {
  width: 100%;
  padding: 15px 15px;
  font-family: "poppinsregular";
  border: none;
}
.bottomWrap .inputSubmit {
}
.bottomWrap .inputSubmit input {
  background: #841618;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 15px 30px;
  font-family: "poppinsregular";
  border: none;
}
.bottomWrap .bottomInner .map {
  width: 48%;
  float: left;
}
.bottomWrap .bottomInner .map h2 {
  color: #841618;
  margin-bottom: 10px;
}
.bottomWrap .bottomInner .map img,
.bottomWrap .bottomInner .map iframe {
  width: 100%;
  min-height: 350px;
  margin-bottom: -10px;
  border: 2px solid #faa627;
  margin-top: 30px;
}
.thankWrap {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.thankWrap .thankInner {
  font-size: 20px;
}

/* Inner Pages ===========================================================*/
.readMore {
  margin-top: 20px;
}
.readMore a {
  text-transform: uppercase;
  background: #841618;
  color: #ffffff;
  padding: 8px 25px;
  display: inline-block;
  transition: 0.3s;
}
.readMore a:hover {
  background: #faa627;
  color: #841618;
  transition: 0.3s;
}
.goldloanHerosec {
  position: relative;
  padding: 60px 0;
}
.goldloanHerosec .goldloanHeroInner {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.goldloanHerosec .goldloan-stepsWrap {
  margin-top: 40px;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox {
  width: 23%;
  border: 1px solid #ffffff;
  float: left;
  margin: 0 1%;
  padding: 20px;
  text-align: center;
  transition: 0.5s;
  background: #ffffff;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox .icon {
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox .icon img {
  background: #841618;
  border-radius: 50%;
  transition: 0.5s;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox:hover .icon img {
  background: #faa627;
  transition: 0.5s;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox .info {
  margin-top: 20px;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox .info h3 {
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  color: #faa627;
  transition: 0.5s;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox:hover .info h3 {
  color: #841618;
  transition: 0.5s;
}
.goldloanHerosec .goldloan-stepsWrap .glstepBox .info span {
  display: block;
  font-size: 24px;
  line-height: 24px;
}

.goldloanstepWrap {
  background: #ffedd2;
  position: relative;
  padding: 60px 0;
}
.goldloanstepWrap .goldloanstepInner {
}
.goldloanstepWrap .goldloanstepInner h2 {
  /*color: #841618;*/
  text-align: center;
}
.goldloanstepWrap .goldloanstepInner .stepsBox {
  background: #f5c582 /*url("../images/stepboxBg.png") no-repeat center bottom*/;
  padding: 30px 30px 0 30px;
  width: 31%;
  float: left;
  margin: 0 1%;
}
.goldloanstepWrap .goldloanstepInner .stepsBox .stepsInfo {
  min-height: 180px;
}
.goldloanstepWrap .goldloanstepInner .stepsBox h3 {
  font-size: 15px;
  background: #25ac25;
  color: #f5f3ef;
  display: inline-block;
  width: 80px; /* Set width */
  height: 80px; /* Set equal height */
  border-radius: 50%; /* Make it round */
  text-align: center; /* Center horizontally */
  line-height: 80px; /* Center vertically */
  margin-left: -30px;
  margin-bottom: 30px;
  display: flex; /* Flexbox for centering */
  justify-content: center; /* Horizontal center */
  align-items: center;
  margin: 0 auto 30px auto; /* Center block itself */
}
.goldloanstepWrap .goldloanstepInner .stepsBox h4 {
}
.goldloanstepWrap .goldloanstepInner .stepsBox p {
}
.goldloanstepWrap .goldloanstepInner .stepsBox img {
  width: 100%;
}

.whytakeWrap {
  position: relative;
  padding: 60px 0;
}
.whytakeWrap .whytakeInner {
}
.whytakeWrap .whytakeInner .whytakeLeft {
  width: 48%;
  float: left;
  padding-top: 50px;
}
.whytakeWrap .whytakeInner .whytakeLeft h2 {
  color: #841618;
}
.whytakeWrap .whytakeInner .whytakeRight {
  width: 48%;
  float: left;
  margin-left: 4%;
}
.whytakeWrap .whytakeInner .whytakeRight img {
  max-width: 100%;
}

.acrossmhWrap {
  position: relative;
  padding: 60px 0;
  background: #600b0d url("../images/whytakeBg.png") no-repeat top 30px center;
  color: #ffffff;
}
.acrossmhWrap .acrossmhInner {
  text-align: center;
}
.acrossmhWrap .acrossmhInner h2 {
  color: #ffffff;
}
.acrossmhWrap .acrossmhInner h2 span {
  color: #faa627;
}
.acrossmhWrap .acrossmhInner .filter {
  margin: 40px 0;
}
.acrossmhWrap .acrossmhInner .filter .filterBox {
  width: 20%;
  margin: 0 0.5%;
  display: inline-block;
}
.branch-locatorBtn a {
  color: #ffffff;
  padding: 10px 30px;
  background: #faa627;
  margin-top: 30px;
  display: inline-block;
  font-size: 18px;
  transition: 0.5s;
}
.branch-locatorBtn a:hover {
  background: #080808;
  color: #ffffff;
  transition: 0.5s;
}
.acrossmhWrap .acrossmhInner .filter .filterSubmit {
  width: 15%;
  margin: 0 0.5%;
  display: inline-block;
  text-align: left;
}
.acrossmhWrap .acrossmhInner .filter select {
  padding: 10px 15px;
  background: #ffffff;
  width: 100%;
  border-radius: 10px;
  font-size: 15px;
}
.acrossmhWrap .acrossmhInner .filter select option {
  color: #000000;
}
.acrossmhWrap .acrossmhInner .filter .state {
}
.acrossmhWrap .acrossmhInner .filter .district {
}
.acrossmhWrap .acrossmhInner .filter button {
  padding: 12px 0;
  width: 80%;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  background: #f8a527;
  transition: 0.5s;
}
.acrossmhWrap .acrossmhInner .filter button:hover {
  background: #080808;
  color: #ffffff;
  transition: 0.5s;
}
.acrossmhWrap .acrossmhInner .locationList {
  text-align: left;
}
.acrossmhWrap .acrossmhInner .locationList ul {
}
.acrossmhWrap .acrossmhInner .locationList ul li {
  width: 31%;
  float: left;
  padding-left: 25px;
  background: url(../images/bullet-logo.png) no-repeat left top 5px;
  font-size: 16px;
  margin: 0 1% 10px 1%;
  background-size: 16px 16px;
  display: none;
}
.requiredWrap {
  padding: 60px 0;
}
.requiredWrap .requiredInner {
}
.requiredWrap .requiredInner h2 {
  text-align: center; /*color: #841618;*/
}
.requiredWrap .requiredInner .requiredBox {
  background: #ebebeb;
  padding: 30px;
  width: 48%;
  float: left;
  margin: 0 1%;
}
.requiredWrap .requiredInner .requiredBox h3 {
  font-size: 18px;
  line-height: 20px;
  background: #841618;
  color: #faa627;
  display: inline-block;
  padding: 10px 15px 10px 20px;
  margin-left: -30px;
  margin-bottom: 30px;
}
.requiredWrap .requiredInner .requiredBox ul {
}
.requiredWrap .requiredInner .requiredBox ul li {
  background: url("../images/bullet-right.png") no-repeat left top 5px;
  padding-left: 20px;
  margin-bottom: 15px;
}

.glfaqsWrap {
  background: #ffedd2;
  padding: 60px 0;
}
.glfaqsWrap.nobg {
  background: none;
}
.glfaqsWrap .glfaqsInner {
  text-align: center;
}
/*.glfaqsWrap .glfaqsInner h2{  color:#841618;}*/
.glfaqsWrap .glfaqsInner .accordion {
  text-align: left;
  margin-top: 40px;
}
.glfaqsWrap .glfaqsInner .accordion .accordion-section {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  width: 99%;
  margin: 10px auto 20px auto;
}
.glfaqsWrap
  .glfaqsInner
  .accordion
  .accordion-section
  a.accordion-section-title {
  padding: 15px 50px 15px 15px;
  background: #ffffff url("../images/down-arrow.png") no-repeat right 15px top
    15px;
  color: #464646;
  font-weight: 600;
  font-size: 18px;
}
.glfaqsWrap
  .glfaqsInner
  .accordion
  .accordion-section
  .accordion-section-content {
  background: #ffffff;
}
.storiesWrap {
  position: relative;
  padding: 60px 0 120px 0;
  background: url("../images/storiesBg.jpg") no-repeat bottom center/cover;
}
.storiesWrap .storiesInner {
  position: relative;
  text-align: center;
}
.storiesWrap .storiesInner h2 {
}
.storiesWrap .storiesInner .storiesSlider {
  margin-top: 30px;
}
.storiesWrap .storiesSlider .storiesBox {
  text-align: left;
  background: #ffffff;
  border-radius: 10px;
  width: 96%;
  margin: 15px 2%;
  padding: 40px 100px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  min-height: 362px;
}
.storiesWrap .storiesSlider .storiesBox .storiesProfile {
  display: flex;
  align-items: center;
}
.storiesWrap .storiesSlider .storiesBox .storiesProfile .storiesImg {
  border-radius: 50%;
  overflow: hidden;
  width: 74px;
  margin-right: 20px;
  border: 1px solid #faa627;
}
.storiesWrap .storiesSlider .storiesBox .storiesProfile .storiesImg img {
  width: 100%;
}
.storiesWrap .storiesSlider .storiesBox .storiesProfile .storiesName {
}
.storiesWrap .storiesSlider .storiesBox .storiesProfile .storiesName h3 {
  line-height: 20px;
  margin-bottom: 5px;
  font-size: 18px;
  color: #2d3e50;
  text-transform: uppercase;
}
.storiesWrap .storiesSlider .storiesBox .storiesProfile .storiesName .desig {
  text-transform: uppercase;
}
.storiesWrap .storiesSlider .storiesBox .storiesInfo {
  font-style: italic;
  margin-top: 30px;
}

.quickloanWrap {
  background: url("../images") no-repeat bottom center/cover;
  position: relative;
}
.quickloanWrap .quickloanInner {
  position: relative;
}
.quickloanWrap .quickloanInner .quickloanLeft {
  width: 30%;
  float: left;
  position: relative;
}
.quickloanWrap .quickloanInner .quickloanLeft img {
  margin: -80px 0 0 0;
  width: 100%;
}
.quickloanWrap .quickloanInner .quickloanRight {
  width: 70%;
  float: right;
  padding: 50px 0;
}
.quickloanWrap .quickloanInner .quickloanRight .tag {
}
.quickloanWrap .quickloanInner .quickloanRight h3 {
  font-size: 42px;
  line-height: 44px;
  color: #000000;
  margin: 15px 0 30px 0;
}
.quickloanWrap .quickloanInner .quickloanRight .knowMore {
}
.quickloanWrap .quickloanInner .quickloanRight .knowMore a {
  background: #4e4a4a;
  color: #f0e9e9;
  padding: 10px 20px;
  display: inline-block;
  transition: 0.3s;
}
.quickloanWrap .quickloanInner .quickloanRight .knowMore a:hover {
  background: #000000;
  transition: 0.3s;
}

/* About Us page */
.makinggoldWrap {
  position: relative;
  padding: 60px 0;
}
.makinggoldWrap .makinggoldInner {
  position: relative;
}
.makinggoldWrap .makinggoldInner .makinggoldLeft {
  width: 46%;
  float: left;
  margin-right: 6%;
}
.makinggoldWrap .makinggoldInner .makinggoldRight {
  width: 48%;
  float: left;
}
.makinggoldWrap .makinggoldInner .makinggoldRight img {
  max-width: 100%;
}

.highlight {
  color: #000000;
  font-family: "poppinssemibold";
}
.cornerstoneWrap {
  background: #f4f4f7;
  position: relative;
  padding: 60px 0 100px 0;
}
.cornerstoneWrap .cornerstoneInner {
  color: #808285;
}
.cornerstoneWrap .cornerstoneInner .cornerstoneLeft {
  width: 65%;
  float: right;
}
.cornerstoneWrap .cornerstoneInner .cornerstoneLeft h2 {
}
.cornerstoneWrap .cornerstoneInner .cornerstoneRight {
  width: 30%;
  float: left;
  margin-right: 5%;
}
.cornerstoneWrap .cornerstoneInner .cornerstoneRight img {
  border: 6px solid #ffffff;
  border-radius: 5px;
}
.cornerstoneWrap .cornerstoneInner .cornerstoneRole {
  margin-top: 40px;
}
.cornerstoneWrap .cornerstoneInner .cornerstoneRole h3 {
  color: #841618;
  margin-bottom: 30px;
}
.cornerstoneWrap .cornerstoneInner .cornerstoneRole ul {
}
.cornerstoneWrap .cornerstoneInner .cornerstoneRole ul li {
  width: 31%;
  margin: 0 1%;
  float: left;
  padding-left: 45px; /*background: url("../images/bulletimg.png") no-repeat left top;*/
}
.cornerstoneWrap .cornerstoneInner .cornerstoneRole ul li h4 {
  margin-bottom: 0;
  color: #841618;
}

.visionmissionWrap {
  position: relative;
  overflow: hidden;
  margin-top: -40px;
}
.visionmissionWrap .visionmissionInner {
  position: relative;
}
.visionmissionWrap .visionmissionInner .visionmissionLeft {
  width: 55.5%;
  float: left;
  margin-left: -5.5%;
  border-right: 8px solid #ffffff;
}
.visionmissionWrap .visionmissionInner .visionmissionLeft img {
  width: 100%;
}
.visionmissionWrap .visionmissionInner .visionmissionRight {
  width: 50%;
  float: left;
}
.visionmissionWrap .visionmissionInner .visionmissionRight .visionmissionBox {
  padding: 38px 30px;
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox
  .icon {
  width: 30%;
  float: left;
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox
  .icon
  img {
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox
  .text {
  width: 70%;
  float: left;
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox
  .text
  h3 {
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox.visionBox {
  background: #3f4258;
  color: #ffffff;
  border-bottom: 8px solid #ffffff;
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox.visionBox
  h3 {
  color: #ffffff;
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox.missionBox {
  background: #dbd5f1;
  color: #000000;
}
.visionmissionWrap
  .visionmissionInner
  .visionmissionRight
  .visionmissionBox.missionBox
  h3 {
  color: #841618;
}

.corevaluesWrap {
  position: relative;
  padding: 60px 0;
}
.corevaluesWrap .corevaluesInner {
  position: relative;
}
.corevaluesWrap .corevaluesInner h2 {
  text-align: center;
}
.corevaluesWrap .corevaluesInner .corevaluesBox {
  width: 22%;
  margin: 0 1.5%;
  float: left;
  background: #ebebeb;
  padding: 20px;
  min-height: 315px;
  border-bottom: 6px solid #faa627;
}
.corevaluesWrap .corevaluesInner .corevaluesBox img {
  float: right;
}
.corevaluesWrap .corevaluesInner .corevaluesBox h3 {
  color: #6e1214;
  text-transform: uppercase;
  margin-top: 15px;
  font-size: 27px;
  line-height: 30px;
  font-family: "poppinsbold";
}
.prcoverageWrap {
  position: relative;
  padding: 60px 0 120px 0;
  background: #ebebeb;
  display: none;
}
.prcoverageWrap .prcoverageInner {
  position: relative;
}
.prcoverageWrap .prcoverageInner h2 {
  text-align: center;
}
.prcoverageWrap .prcoverageInner .prcoverageBox {
  width: 31%;
  float: left;
  margin: 0 1%;
  background: #ffffff;
}
.prcoverageWrap .prcoverageInner .prcoverageBox .prcoverageImg {
}
.prcoverageWrap .prcoverageInner .prcoverageBox .prcoverageImg img {
  width: 100%;
}
.prcoverageWrap .prcoverageInner .prcoverageBox .prcoverageInfo {
  padding: 30px 25px;
}
.prcoverageWrap .prcoverageInner .prcoverageBox .prcoverageInfo h3 {
  color: #841618;
}
.prcoverageWrap .prcoverageInner .prcoverageBox .prcoverageInfo .readmore {
  margin-top: 20px;
}
.prcoverageWrap .prcoverageInner .prcoverageBox .prcoverageInfo .readmore a {
  background: #841618;
  text-transform: uppercase;
  padding: 10px 20px;
  color: #ffffff;
  transition: 0.5s;
}
.prcoverageWrap
  .prcoverageInner
  .prcoverageBox
  .prcoverageInfo
  .readmore
  a:hover {
  background: #faa627;
  transition: 0.5s;
}

/* News Events **********************/
.newsWrap {
  position: relative;
  padding: 60px 0;
}
.newsWrap .newsInner {
  position: relative;
}
.newsWrap .newsInner .newsBox {
  width: 31%;
  float: left;
  margin: 15px 1%;
  background: #ffffff;
  padding: 30px 30px 80px 30px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  min-height: 200px;
}
.newsWrap .newsInner .newsBox h3 {
  font-size: 18px;
}
.newsWrap .newsInner .newsBox .readMore {
  position: absolute;
  left: 30px;
  bottom: 30px;
  margin: 0;
}

/*testimonials ****************************************/
.testimonialWrap {
  position: relative;
  padding: 60px 0;
}
.testimonialWrap .testimonialInner {
  position: relative;
}
.testimonialWrap .testimonialInner .testimonialsBox {
  width: 48%;
  float: left;
  margin: 15px 1%;
  background: #ffffff;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  min-height: 320px;
}
.testimonialWrap .testimonialInner .testimonialsBox .name {
  margin-top: 20px;
  font-family: "poppinssemibold";
}
.testimonialWrap .testimonialInner .testimonialsBox iframe {
  width: 100%;
  min-height: 350px;
  margin-bottom: -10px;
}
.testimonialWrap .testimonialInner .testimonialsVideo .testimonialsBox {
  padding: 0;
}

.careersWrap {
  position: relative;
  padding: 60px 0;
}
.careersWrap .careersInner {
  position: relative;
}
.careersWrap .careersInner a {
  color: #841618;
  font-family: "poppinsmedium";
}
.careersWrap .careersInner .jobopeningWrap {
  margin: 40px -1% 0 -1%;
}
.careersWrap .careersInner .jobopeningWrap .jobopeningBox {
  width: 48%;
  float: left;
  margin: 15px 1%;
  background: #ffffff;
  padding: 30px;
  -webkit-box-shadow: 3px 3px 10px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 10px 0 rgb(0 0 0 / 10%);
  position: relative;
  min-height: 150px;
}
.careersWrap .careersInner .jobopeningWrap .jobopeningBox h4 {
}
.careersWrap .careersInner .jobopeningWrap .jobopeningBox a {
  color: #000000;
}
.careersWrap .careersInner .jobopeningWrap .jobopeningBox span {
  font-weight: 600;
}

.applyformWrap {
  position: relative;
  padding: 60px 0;
  background: #ffedd2;
}
.applyformWrap .applyformInner {
  position: relative;
}
.applyinputBox {
  width: 48%;
  margin: 0 1% 20px 1%;
  position: relative;
  float: left;
}
.applyinputBox input {
  width: 100%;
  padding: 15px 15px;
  font-family: "poppinsregular";
  border: none;
}
.applyinputBox select {
  width: 100%;
  padding: 15px 15px;
  font-family: "poppinsregular";
  border: none;
}
.applyinputBox textarea {
  width: 100%;
  padding: 15px 15px;
  font-family: "poppinsregular";
  border: none;
}
.applyinputBox .formError {
  color: #e30000;
  font-weight: normal;
  font-size: 12px;
  position: absolute;
  left: 0;
  bottom: -14px;
}
.applyinputSubmit {
  width: 98%;
  margin: 15px 1% 0 1%;
}
.applyinputSubmit input {
  background: #841618;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 15px 30px;
  font-family: "poppinsregular";
  border: none;
  transition: 0.5s;
}
.applyinputSubmit input:hover,
.applyinputSubmit input:focus {
  background: #faa627;
  transition: 0.5s;
}

/* branch locator */
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li {
  width: auto;
  float: none;
  margin: 0;
  background: none;
  padding: 0;
  font-size: 14px;
  border: 1px solid #f1f1f1;
  border-top: none;
  padding: 20px;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li.branchHeading {
  border: none;
  border-bottom: 1px solid #f1f1f1;
  margin-top: 20px;
  padding-left: 0;
  padding-right: 0;
}
.acrossmhWrap
  .acrossmhInner
  .locationList.branch-locator
  ul
  li.branchHeading
  h3 {
  color: #ffffff;
  margin-bottom: 0;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li .name {
  width: 30%;
  float: left;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li .adress {
  width: 35%;
  float: left;
  padding-left: 15px;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li .phone {
  width: 20%;
  float: left;
  padding-left: 15px;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li .map {
  width: 15%;
  float: left;
  padding-left: 15px;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li a {
  color: #ffffff;
  font-size: 16px;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li a img {
  width: 20px;
  margin: -5px 0 0 0;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li .map a {
  color: #ffffff;
  font-size: 16px;
  padding: 10px 15px;
  border: 1px solid #faa627;
  display: block;
  text-align: center;
  transition: 0.5s;
}
.acrossmhWrap .acrossmhInner .locationList.branch-locator ul li .map a:hover {
  background: #faa627;
  color: #000000;
  transition: 0.5s;
}

/* Bottom */
.footertopWrap {
  background: rgb(31, 39, 107);
  padding: 50px 0 20px 0;
  color: #ffffff;
}
.footertopWrap .footertopInner {
  margin: 0 -1%;
  padding-bottom: 50px;
  border-bottom: 1px solid #bb6566;
}
.footertopWrap .footertopInner .footertopBox {
  width: 23%;
  margin: 0 1%;
  float: left;
}
.footertopWrap .footertopInner .footertopBox h3 {
  color: #ffffff;
}
.footertopWrap .footertopInner .footertopBox ul.margintop {
  margin-top: 40px;
}
.footertopWrap .footertopInner .footertopBox ul li {
  margin-bottom: 15px;
}
.footertopWrap .footertopInner .footertopBox ul li a {
  color: #ffffff;
}
.footertopWrap .footertopInner .footertopBox ul li a:hover {
  color: #faa627;
}
/* FOOTER
========================================================================*/
footer {
  background: #841618;
  padding: 20px 0;
  font-size: 14px;
  color: #ffffff;
}
.footerWrap .footerOne {
  text-align: left;
  float: left;
  width: 30%;
}

.footerWrap .footerOne img {
  width: 174px;
  height: 65px;
}
.footerWrap .footerTwo {
  text-align: center;
  float: left;
  width: 40%;
}
.footerWrap .footerTwo ul {
}
.footerWrap .footerTwo ul li {
  display: inline-block;
  margin: 0 5px;
}
.footerWrap .footerTwo ul li a {
}
.footerWrap .footerTwo ul li a img {
  width: 35px;
}
.footerWrap .footerTHree {
  font-size: 12px;
  text-align: center;
  width: 30%;
  float: left;
}
.footerWrap .footerTHree a {
  color: #ffffff;
}

.videoWrap {
  position: relative;
  padding: 80px 0 0;
}
.videoWrap .videoInner {
  width: 80%;
  margin: 0 auto;
}
.videoWrap .videoInner iframe {
  width: 100%;
  min-height: 540px;
}
.videoWrap .videoInner .slick-arrow {
  position: absolute;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  border: none;
  overflow: hidden;
  text-indent: -1000px;
  top: 50%;
  margin-top: -35px;
  z-index: 9;
}
.videoWrap .videoInner .slick-next.slick-arrow {
  background: url(../images/right-arrow.png) no-repeat center;
  right: -64px;
}
.videoWrap .videoInner .slick-prev.slick-arrow {
  background: url(../images/left-arrow.png) no-repeat center;
  left: -64px;
}
.videoWrap .videoInner .slick-disabled.slick-arrow {
  display: none !important;
  display: none !important;
}

.accordion-section .accordion-section-content ul {
  margin-top: 10px;
  padding-left: 20px;
}
.accordion-section .accordion-section-content ul li {
  list-style: circle;
}

/* HEADINGS
========================================================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "poppinssemibold";
}
h1 {
  font-size: 36px;
  line-height: 27px;
}
h2 {
  font-size: 36px;
  line-height: 38px;
  color: #000000;
  margin-bottom: 40px;
}
h2 span {
  color: #841618;
}
h3 {
  font-size: 22px;
  line-height: 23px;
  color: #000000;
  margin-bottom: 15px;
}
h4 {
  font-size: 18px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 15px;
}
h5 {
  font-size: 16px;
  line-height: 17px;
}
h6 {
  font-size: 14px;
  line-height: 16px;
}
p {
  margin-top: 10px;
}
p:first-child {
  margin: 0;
}
/* FORM
========================================================================*/
label {
}
input,
textarea,
select {
  font-size: 12px;
  background: #fff;
  border: 1px solid #dadada;
  padding: 4px 8px 3px;
  margin: 0 0 5px 0;
}
input:focus,
textarea:focus {
  border-color: #c1c1c1;
  background: #fff;
}
/* Slick Slider
========================================================================*/
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Accordian */
.accordion {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.accordion {
  overflow: hidden;
  border-radius: 3px;
}
.accordion-section-title {
  width: 100%;
  padding: 15px;
  display: inline-block;
  transition: all linear 0.15s;
}
.accordion-section-title.active,
.accordion-section-title:hover {
  background: #4c4c4c;
  text-decoration: none;
}
.accordion-section:last-child .accordion-section-title {
  border-bottom: none;
}
.accordion-section-content {
  padding: 15px;
  display: none;
}

@font-face {
  font-family: "poppinsbold";
  src: url("fonts/poppins-bold-webfont.eot");
  src: url("fonts/poppins-bold-webfontd41d.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/poppins-bold-webfont.woff") format("woff"),
    url("fonts/poppins-bold-webfont.ttf") format("truetype"),
    url("fonts/poppins-bold-webfont.svg#poppinsbold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppinslight";
  src: url("fonts/poppins-light-webfont.eot");
  src: url("fonts/poppins-light-webfontd41d.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/poppins-light-webfont.woff") format("woff"),
    url("fonts/poppins-light-webfont.ttf") format("truetype"),
    url("fonts/poppins-light-webfont.svg#poppinslight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "poppinsmedium";
  src: url("fonts/poppins-medium-webfont.eot");
  src: url("fonts/poppins-medium-webfontd41d.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/poppins-medium-webfont.woff") format("woff"),
    url("fonts/poppins-medium-webfont.ttf") format("truetype"),
    url("fonts/poppins-medium-webfont.svg#poppinsmedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppinsregular";
  src: url("fonts/poppins-regular-webfont.eot");
  src: url("fonts/poppins-regular-webfontd41d.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/poppins-regular-webfont.woff") format("woff"),
    url("fonts/poppins-regular-webfont.ttf") format("truetype"),
    url("fonts/poppins-regular-webfont.svg#poppinsregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "poppinssemibold";
  src: url("fonts/poppins-semibold-webfont.eot");
  src: url("fonts/poppins-semibold-webfontd41d.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/poppins-semibold-webfont.woff") format("woff"),
    url("fonts/poppins-semibold-webfont.ttf") format("truetype"),
    url("fonts/poppins-semibold-webfont.svg#poppinssemibold") format("svg");
  font-weight: normal;
  font-style: normal;
}

.connectInfo ul li img {
  vertical-align: middle;
  margin-right: 10px;
}

.connectInfo ul li a {
  color: #0066cc; /* Adjust to match your existing link color */
  text-decoration: none;
}

.connectInfo ul li a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite ease-in-out;
  opacity: 0;
  animation: fadeIn 1s forwards 0.5s;
}

.whatsapp-float img {
  width: 50px; /* Set a reasonable size for the icon */
  height: 50px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Hover Effect: Bounce */
.whatsapp-float:hover img {
  transform: scale(1.1) translateY(-5px);
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Click Effect: Rotation */
.whatsapp-float:active img {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

/* Tooltip */
.whatsapp-float[title]:hover:after {
  content: attr(title);
  position: absolute;
  bottom: 60px; /* Adjusted to account for smaller icon */
  right: 0;
  background-color: #25d366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float img {
    width: 40px; /* Smaller size for mobile */
    height: 40px;
  }

  .whatsapp-float[title]:hover:after {
    font-size: 12px;
    padding: 6px 10px;
    bottom: 50px; /* Adjusted for smaller icon */
  }
}
/* Fade-In Animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
  /* Show the menu button on mobile */
  .menuBtn {
    display: block;
  }

  /* Hide navigation by default on mobile */
  .navigation {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(31, 39, 107); /* Match header background */
    z-index: 9998;
  }

  /* Show navigation when menu button is active */
  .navigation.active {
    display: block;
  }

  /* Stack navigation items vertically */
  .navigation.active ul {
    display: block; /* Override flex to stack items */
    text-align: center; /* Center align for better appearance */
  }

  .navigation.active ul li {
    float: none; /* Remove float to stack vertically */
    display: block; /* Ensure each item takes full width */
    margin: 10px 0; /* Add spacing between items */
  }

  .navigation.active ul li a {
    display: block;
    padding: 15px; /* Increase padding for touch-friendly interaction */
    font-size: 16px; /* Adjust font size for readability */
  }

  /* Adjust hover effect for mobile */
  .navigation.active ul li a::after {
    display: none; /* Remove underline animation for mobile */
  }

  .whatsapp-float[title]:hover:after {
    font-size: 12px;
    padding: 6px 10px;
    bottom: 60px;
  }
}

/* Keep nav in one line */
.navigation ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap; /* prevents wrapping */
  gap: 20px; /* spacing between items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fcfafa;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover underline animation */
.navigation ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #d4af37; /* gold color */
  transition: width 0.3s ease;
}

.navigation ul li a:hover::after {
  width: 100%;
}

.navigation ul li a:hover {
  color: #d4af37;
  transform: translateY(-2px);
}
