html,
body {
  background: #f3f3f3;
}

.shadow-bottom {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.0588235294));
  position: fixed;
  width: 100%;
  background: #ffffff;
}

.loanHeroBanner {
  width: 100%;
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.loanHeroBanner .loanHeroBannerContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.loanHeroBanner .loanHeroBannerContent .content h1 {
  font-family: "Roboto";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  display: inline-block;
  background: linear-gradient(90deg, #040404 0%, #546659 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
.loanHeroBanner .loanHeroBannerContent .content p {
  color: #666666;
  font-family: "Roboto";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.loanHeroBanner .loanHeroBannerContent .loanHeroBannerImg {
  width: 425px;
  height: 551px;
}

.loanFeaturesSection {
  text-align: left;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  padding: 32px;
  margin-top: -44px;
}
.loanFeaturesSection h2 {
  color: #040404;
  font-family: "Roboto";
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
}
.loanFeaturesSection > p {
  color: #666666;
  font-family: "Roboto";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 8px;
}
.loanFeaturesSection ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 64px;
       column-gap: 64px;
  margin-top: 48px;
}
.loanFeaturesSection ul li {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}
.loanFeaturesSection ul li:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.0588235294);
}
.loanFeaturesSection ul li img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.loanFeaturesSection ul li h3 {
  color: #040404;
  font-family: "Roboto";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  margin-top: 20px;
}
.loanFeaturesSection ul li p {
  color: #666666;
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}

.loanSteps {
  padding: 80px 122px;
  text-align: center;
}
.loanSteps .loanStepsTitle {
  color: rgb(102, 102, 102);
  font-family: "Roboto";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.loanSteps .loanStepsTitle .round {
  width: 10px;
  height: 10px;
  background: #666;
  border-radius: 50%;
}
.loanSteps h1 {
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  background: linear-gradient(90deg, #040404 0%, #84c095 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0px 48px 0px;
}
.loanSteps .loanStepsContent {
  display: flex;
  align-items: flex-start;
  gap: 120px;
}
.loanSteps .loanStepsContent img {
  width: 367.88px;
  height: 654px;
}
.loanSteps .loanStepsContent ul {
  display: flex;
  flex-direction: column;
  gap: 76px;
}
.loanSteps .loanStepsContent ul li {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.loanSteps .loanStepsContent ul li .num {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  background-color: #4cb673;
  color: rgb(255, 255, 255);
  font-family: "Roboto";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  border-radius: 50%;
  text-align: center;
  position: relative;
}
.loanSteps .loanStepsContent ul li h4 {
  color: rgb(4, 4, 4);
  font-family: "Roboto";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 8px;
}
.loanSteps .loanStepsContent ul li p {
  color: rgb(102, 102, 102);
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.loanSteps .loanStepsContent ul li:not(:last-child) .num::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48px;
  width: 1px;
  height: 120px;
  border-left: 1px dashed #62c98d;
}

.downloadSection {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7019607843);
  backdrop-filter: blur(25px);
  padding: 110px 0px;
  text-align: center;
  margin-bottom: 80px;
}
.downloadSection h1 {
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  background: linear-gradient(90deg, #040404 0%, #84c095 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.downloadSection p {
  color: #666666;
  font-family: "Roboto";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 8px 0px 24px 0px;
}
.downloadSection img {
  width: 180px;
  height: 52px;
}/*# sourceMappingURL=home.css.map */