@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
}
:root {
  --text1-color: #fff;
  --text2-color: #14105b;
  --btn-color: #009fb7;
  --bg-color: #f3f7ff;
  --box-color: #eee;
  --hover-color: #26b8ac;
  --topic-color: #fb5004;
  --brand-color: #007bff; /* rgba(0, 123, 255, 1) */
  --loanClac-color: #40d8a8;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0.5rem;
  font-size: 66%;
}
body {
  background: var(--loanClac-color);
  width: 100%;
  height: 100vh;
}
h2 {
  position: relative;
  font-size: 6vmin;
  letter-spacing: 3px;
  color: var(--text1-color);
  -webkit-text-stroke: 0.05vmin var(--text2-color);
}
h2::before {
  content: attr(data-text);
  position: absolute;
  width: 0;
  height: 100%;
  color: var(--hover-color);
  -webkit-text-stroke: 0.04vmin var(--text2-color);
  border-right: 2px solid var(--hover-color);
  overflow: hidden;
  animation: text-animate 8s linear infinite;
}
@keyframes text-animate {
  0%,
  10%,
  100% {
    width: 0;
  }
  70%,
  90% {
    width: 100%;
    border-color: transparent;
  }
}
h1 {
  font-size: 6vmin;
  color: var(--topic-color);
}
hr {
  box-shadow: 0 0 10px -5px var(--text2-color) inset !important;
  width: 100%;
  height: 1.5px;
}
/* *****START .btn***** */
.btn {
  display: inline-block;
  padding: 0.8rem 3.8rem;
  font-size: 1.8rem;
  border: 0.1rem solid var(--btn-color);
  outline: 0;
  background: var(--btn-color);
  border-radius: 1rem;
  cursor: pointer;
  text-align: center;
  color: var(--text1-color);
}
.btn:hover {
  background: none;
  color: var(--btn-color);
}
/* *****END .btn***** */
/* *****START .underline***** */
.underline {
  width: 38vmin;
  height: 4px;
  background: #fb5004;
  margin: 5px auto;
  border-radius: 5px;
  transition: all ease-in-out 5s;
}
.underline.show {
  width: 80%;
  border: 2px solid #fc036b;
  border-radius: 50%;
  box-shadow: 0 4px 5px rgba(63, 129, 235, 1);
}
/* *****END .underline***** */
/* *****START .heading***** */
.heading {
  margin: 1rem auto;
  /* text-align: center; */
  color: var(--text2-color);
  overflow: hidden;
}
/* *****END .heading***** */
/* *****START .section-area***** */
.section-area {
  padding: 9%;
  margin-top: -100vh;
}
/* *****END .section-area***** */
/* *****START header***** */
.nav-container {
  position: relative;
}
.nav-container .head-container {
  height: 100vh;
  width: 100%;
}
.nav-container .head-container img {
  height: 100vh;
}
.nav-container .calc_header {
  position: relative;
  /* height: 120vh; */
  width: 100%;
  object-fit: cover;
  top: 3.5px;
}
.webtop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.top-line {
  position: fixed;
  background: rgb(255, 119, 0);
  height: 3.5px;
  width: 100%;
  z-index: 102;
  top: 0;
  left: 0;
  right: 0;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 101;
  width: 100%;
  height: 12vh;
  display: flex;
  align-items: center;
}
header .header-main {
  position: relative;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1rem 1%;
  height: 12vh;
  width: 100%;
}
header .logo {
  display: flex;
  position: relative;
  color: var(--text1-color);
  padding: 0.4rem;
  align-items: center;
  justify-content: center;
  width: 20%;
}
header .logo .com-icon {
  display: flex;
  justify-content: center;
  align-items: center !important;
  width: 8.7% !important;
  height: 100%;
  z-index: 1;
  transform: scale(1.8);
  /* border-radius: 50%;
    overflow: hidden; */
}
header .logo .com-icon img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  padding-top: 2.5px;
}
header .logo .com-icon img:hover {
  transform: scale(1.2);
  transition: 0.5s;
}
header .logo .com-name {
  font-size: 4vmin !important;
  color: #e8b900;
  font-weight: 800;
  letter-spacing: 3px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  width: 100;
  z-index: 1;
}
header .logo .com-name:hover {
  cursor: pointer;
  transition: 0.5s;
  color: var(--brand-color);
}
header .logo span {
  position: absolute;
  top: 1.5px;
  left: 0;
  width: 100%;
  height: 90%;
  display: block;
}
header .logo span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to left,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
  animation: logo 3s linear infinite;
}
header .logo span:first-child {
  transform: rotate(0deg);
}
header .logo span:nth-child(2n) {
  transform: rotate(180deg);
}
@keyframes logo {
  0% {
    transform: scale(0);
    transform-origin: left;
  }
  50% {
    transform: scale(1);
    transform-origin: left;
  }
  50.1% {
    transform: scale(1);
    transform-origin: right;
  }
  100% {
    transform: scale(0);
    transform-origin: right;
  }
}
header .navbar-one {
  width: 70%;
}
header .navbar-one ul {
  display: flex;
  text-decoration: none;
  list-style: none;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  transform: translateX(-11%);
}
header .navbar-one ul li a {
  margin: 0 0.8rem;
  font-size: 3.4vmin;
  color: var(--text1-color);
  padding: 0.4rem;
  font-weight: 800;
}
.blue-text {
  color: #14105b !important;
}
header .navbar-one a.active {
  color: var(--brand-color);
}
header .navbar-one a:hover {
  color: var(--brand-color);
}
header .navbar-two ul {
  text-decoration: none;
  list-style: none;
}
.vcg-search-input {
  margin-left: 8px;
}
header .search-btns {
  position: absolute;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 12vh !important;
  right: 4.5% !important;
  width: 4%;
}
header #glass-btn {
  position: absolute;
  font-size: 4.5vmin !important;
  color: var(--text1-color);
  cursor: pointer;
  display: flex !important;
  margin-top: 3.5px;
  align-items: center !important;
  justify-content: center;
}
header #glass-btn:hover {
  color: var(--brand-color) !important;
  transition: 0.5s;
}
header .control-btns {
  position: absolute;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 12vh !important;
  right: 0 !important;
  width: 4%;
  padding-right: 1%;
}
header #burger-btn {
  position: absolute;
  font-size: 7.3vmin !important;
  color: var(--text1-color);
  cursor: pointer;
  display: flex !important;
  margin-top: 3.5px;
  align-items: center !important;
  justify-content: center;
}
header #burger-btn:hover {
  color: var(--brand-color) !important;
  transition: 0.5s;
}
header #cross-btn {
  font-size: 4.5vmin;
  color: var(--text2-color);
  cursor: pointer;
  display: none;
}
header #cross-btn:hover {
  color: red !important;
  transition: 0.5s;
}
/* *****END header***** */
/* START SME calu */
#guaranteeFee {
  margin-top: -100vh;
}
/* End SME calu */
/* *****START footer***** */
.footer {
  background: var(--loanClac-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 6rem;
  margin-top: 20vh;
}
.footer h1 {
  font-size: 5.5vmin;
  margin: 2rem 0;
  color: var(--text1-color);
}
.footer p {
  font-size: 1.6rem;
  margin: 1rem 0;
  color: var(--text1-color);
}
.footer i {
  font-size: 2.6rem;
  margin: 1rem 0.5rem;
  color: var(--text1-color);
  border-radius: 50%;
}
.footer i:hover {
  box-shadow: 0 0 10px #ffeb3b, 0 0 20px #ffeb3b;
  transform: scale(1.25);
  transition: box-shadow 0.3s ease;
}
.footer .fa-facebook {
  color: blue;
}
.footer .fa-instagram {
  color: #e018f2ff;
}
.footer .fa-youtube {
  color: #f21818ff;
}
.footer .fa-square-linkedin {
  color: #006effff;
}
/* *****END footer***** */
/* start progress-bar */
.progress-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-color);
}
.progress-bar-inner {
  position: relative;
  width: 0%;
  padding: 0px;
  /* background: #ffce00; */
  background: var(--loanClac-color);
  color: var(--text1-color);
  font-weight: 800;
}
/* End progress-bar */
/* *****START whatsapp***** */
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 100px;
  padding: 35px;
  z-index: 10;
}
.whatsapp .whatsapp-btn {
  font-size: 8vmin;
  color: #00ff00;
}
.bxl-whatsapp {
  cursor: pointer;
}
.whatsapp span {
  position: absolute;
  bottom: 15px;
  right: 24px;
  font-size: 3vmin;
  font-weight: 800;
  color: #00ff00;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
/* *****END whatsapp***** */
/* *****START of ScrollTop***** */
.scroll-to-top {
  position: fixed;
  right: 60px;
  width: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
  cursor: pointer;
  font-size: 32px;
  height: 50px;
  padding: 7px;
  z-index: 2;
}
.scroll-to-top:hover {
  opacity: 0.5;
}
.scroll-to-top span {
  display: flex;
  justify-content: center;
}
.scroll-to-top span svg {
  cursor: pointer;
}
/* *****END of ScrollTop***** */

/* ***************START width>=1025px*************** */
@media (min-width: 1025px) {
  header {
    /* background: var(--loanClac-color); */
    filter: opacity(0.95);
  }
  header #glass-btn.show-glass {
    display: none !important;
  }
  header #burger-btn.hide-burger {
    display: none !important;
  }
  header #cross-btn {
    display: none;
  }
  header #cross-btn.show-cross {
    display: block !important;
    font-size: 6.5vmin;
    margin-top: 3.5px;
  }
  .change-headermain {
    height: 12vh !important;
    background: linear-gradient(
      to left,
      #a5fecb,
      #65c7f7,
      #20bdff,
      #7056f4,
      #5433ff 20%,
      transparent 20%,
      transparent 100%
    ) !important;
    filter: opacity(0.95);
  }
  header .navbar-one.active-navbar-one {
    display: none;
  }
  header .navbar-two {
    border: 3px lightgrey inset !important;
    outline: 1px rgba(255, 255, 255, 1) inset !important;
    display: none;
  }
  header .navbar-two ul {
    flex-direction: column;
    width: 100%;
    padding: 10% 0;
  }
  header .navbar-two ul li {
    display: flex;
    position: relative !important;
    width: 100%;
    justify-content: space-between;
    align-items: center !important;
  }
  header .navbar-two ul li a {
    margin-left: calc(100% - 90%);
    font-size: 3.8vmin;
    color: var(--text2-color);
    font-weight: 900;
    letter-spacing: 3px;
    padding: 13px 0;
    width: 100%;
  }
  header .navbar-two.active-navbar-two {
    position: absolute;
    top: 12vh;
    right: 0;
    bottom: 0;
    width: 20%;
    height: 88vh;
    background: linear-gradient(
      179.98deg,
      rgba(104, 213, 255, 1) 0.12%,
      rgba(45, 179, 222, 1) 18.53%,
      #799de0 61.88%,
      #4f83e4 93.88%
    );
    filter: opacity(0.95);
    animation: rightmove 0.5s ease-in-out;
    display: block;
  }
  @keyframes rightmove {
    from {
      right: -100%;
    }
    to {
      right: 0;
    }
  }
  .navbar-two .fa-chevron-right {
    color: var(--text2-color);
    margin-right: calc(100% - 90%);
    font-size: 4vmin;
    cursor: pointer;
  }
  .navbar-two li:hover .fa-chevron-right {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right:hover {
    color: #e0bc00 !important;
  }
  header .navbar-two ul li a.active {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active:hover {
    color: #e0bc00;
  }
  header .navbar-two ul li a:hover {
    color: var(--text1-color);
  }
  header .navbar-two ul li:hover {
    background: linear-gradient(
      65.5deg,
      rgba(23, 205, 205, 1) -15.1%,
      rgba(23, 25, 95, 1) 71.5%
    );
    transition: 0.5s ease-out;
  }
  header .navbar-two ul li a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: var(--text1-color);
    border-radius: 3px;
    box-shadow: inset 0 -2px 4px rgba(48, 48, 48, 0.15);
    animation: fill 1s ease-in-out forwards;
  }
  @keyframes fill {
    from {
      width: 0%;
      opacity: 0;
    }
    to {
      width: 100%;
      opacity: 1;
    }
  }
  .navbar-two hr {
    position: absolute;
    height: 0.5px;
    width: 80%;
    border-radius: 100%;
    background: rgb(82, 82, 82);
    bottom: -1.5px;
    left: calc(100% - 90%);
    right: calc(100% - 90%);
    transition: background 0.1s ease-in-out;
  }
  .navbar-two li:hover hr {
    display: none;
  }
}
/* ***************End width>=1025px*************** */

/* ***************Start width<=1024px*************** */
@media (max-width: 1024px) {
  header {
    height: 10vh;
    display: flex;
    align-items: center !important;
    /* background: var(--text2-color); */
    filter: opacity(0.95);
  }
  header .header-main {
    height: 10vh;
    display: flex !important;
    align-items: center !important;
    padding: 1rem 1.5%;
  }
  header .logo {
    width: 76%;
  }
  header .logo.show-logo {
    display: flex !important;
    width: 85%;
  }
  header .logo .com-icon {
    width: 8.5% !important;
  }
  header .logo .com-icon.comicon-big {
    width: 9.5% !important;
  }
  header .logo .com-name {
    font-size: 6.5vmin !important;
  }
  header .logo .com-name.comname-big {
    font-size: 8vmin !important;
  }
  header .search-btns {
    position: absolute;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 12vh !important;
    right: 12% !important;
    width: 12%;
    height: 5vh !important;
  }
  header #glass-btn {
    font-size: 6.3vmin !important;
  }
  header #glass-btn.show-glass {
    display: none !important;
  }
  header .control-btns {
    position: absolute;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 12%;
    height: 5vh !important;
    padding-right: 1.5%;
    transition: all 0.5s ease-in-out;
  }
  header .control-btns.ctrl-btns {
    height: 5vh !important;
    background: transparent !important;
    align-items: center !important;
    justify-content: center !important;
  }
  header #burger-btn {
    display: block;
    font-size: 10.5vmin !important;
  }
  header #burger-btn.hide-burger {
    display: none !important;
  }
  header #cross-btn {
    display: none !important;
  }
  header #cross-btn.show-cross {
    display: block !important;
    font-size: 8.7vmin !important;
    margin-top: 3.5px !important;
    margin-right: 0px !important;
  }
  .change-header {
    height: 13vh !important;
    transition: all 0.8s ease-in-out;
    background: linear-gradient(
      to left,
      #a5fecb,
      #65c7f7,
      #20bdff,
      #7056f4,
      #5433ff
    ) !important;
    filter: opacity(0.99);
    display: flex !important;
    align-items: center !important;
  }
  .change-headermain {
    height: 13vh !important;
    transition: all 0.8s ease-in-out;
    background: linear-gradient(
      to left,
      #a5fecb,
      #65c7f7,
      #20bdff,
      #7056f4,
      #5433ff
    ) !important;
    filter: opacity(0.99);
    display: flex !important;
    align-items: center !important;
  }
  header .navbar-one {
    display: none !important;
  }
  header .navbar-two {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 13vh;
    right: 0;
    text-align: center;
    width: 100%;
    height: 87vh;
    background: linear-gradient(
      179.98deg,
      rgba(104, 213, 255, 1) 0.12%,
      rgba(45, 179, 222, 1) 18.53%,
      #799de0 61.88%,
      #4f83e4 93.88%
    );
    filter: opacity(0.99) !important;
    display: none;
    overflow: auto;
  }
  header .navbar-two.active-navbar-two {
    position: absolute;
    animation: upmove 0.5s ease-in-out;
    top: 13vh;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
  }
  @keyframes upmove {
    from {
      top: 100vh;
    }
    to {
      top: 13vh;
    }
  }
  header .navbar-two {
    border: 3px lightgrey inset !important;
    outline: 1px rgba(255, 255, 255, 1) inset !important;
  }
  header .navbar-two ul {
    flex-direction: column;
    width: 100%;
    padding: 5% 0 10%;
  }
  header .navbar-two ul li {
    display: flex;
    position: relative !important;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  header .navbar-two ul li a {
    display: block;
    font-size: 7vmin !important;
    color: var(--text2-color);
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    padding: 21px 0 !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .header .navbar-two ul li a {
    margin-left: calc(100% - 100%);
  }
  header .navbar-two ul li a.active {
    color: var(--text1-color);
  }
  header .navbar-two ul li a:hover {
    color: var(--text1-color);
  }
  header .navbar-two ul li:hover {
    background: linear-gradient(
      65.5deg,
      rgba(23, 205, 205, 1) -15.1%,
      rgba(23, 25, 95, 1) 71.5%
    );
    transition: 0.5s ease-out;
  }
  header .navbar-two ul li a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    box-shadow: inset 0 -2px 4px rgba(48, 48, 48, 0.15);
    animation: fill 1s ease-in-out forwards;
  }
  @keyframes fill {
    from {
      width: 0%;
      opacity: 0;
    }
    to {
      width: 100%;
      opacity: 1;
    }
  }
  .navbar-two .fa-chevron-right {
    color: var(--text2-color);
    margin-right: calc(100% - 100%);
    font-size: 8vmin;
    cursor: pointer;
  }
  .navbar-two .fa-chevron-right:hover {
    color: #e0bc00 !important;
  }
  .navbar-two li:hover .fa-chevron-right {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active {
    color: var(--text1-color);
  }
  .navbar-two .fa-chevron-right.active:hover {
    color: #e0bc00;
  }
  .navbar-two hr {
    position: absolute;
    height: 0.5px;
    width: 80%;
    border-radius: 100%;
    background: rgb(82, 82, 82);
    bottom: -1.5px;
    left: calc(100% - 90%);
    right: calc(100% - 90%);
    transition: background 0.1s ease-in-out;
  }
  .navbar-two li:hover hr {
    display: none;
  }
  .guaranteeFee .topic-ctrl {
    min-width: 100%;
    margin-top: 10vh;
  }
  .guaranteeFee .topic-ctrl h2 {
    font-size: 5vmin !important;
    left: 16% !important;
  }
  .guaranteeFee .form {
    min-width: 100%;
  }
  /* #finance-calculator {
    left: 10%;
    min-width: 88%;
    width: 100%;
  } */
  .finance-calculator {
    left: 5% !important;
    /* min-width: 88%; */
    width: 80% !important;
  }
  .nav-container .head-container img {
    height: 50vh;
    width: 100%;
  }
  .footer {
    margin-top: 0;
  }
  /* *****START of Whatsapp & ScrollTop***** */
  .whatsapp {
    padding-right: 27px;
    right: 24px;
    bottom: 100px;
  }
  .whatsapp .whatsapp-btn {
    font-size: 17vmin;
  }
  .whatsapp span {
    bottom: 15px;
    /* right: 24px; */
    font-size: 5vmin;
  }
  .scroll-to-top {
    position: fixed;
    right: 60.5px !important;
  }
  /* *****END of Whatsapp & ScrollTop***** */
}
/* ***************End width<=1024px*************** */

/* ***************Start width<=550px*************** */

/* ***************End width<=550px*************** */
