@font-face {
  font-family: SohneLeicht;
  src: url("/assets/fonts/Sohne-Leicht.otf");
}
@font-face {
  font-family: SohneKraftig;
  src: url("/assets/fonts/Sohne-Kraftig.otf");
}
@font-face {
  font-family: SohneHalbfett;
  src: url("/assets/fonts/Sohne-Halbfett.otf");
}

:root {
  --primary-color: #3554D1;
  --secondary-color: #E7EAFA;
  --background-alt: linear-gradient(0deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), #757D8A;
  --background-alt-2: #F9F9F9;
  --title: #121F3E;
  --text: #575A65;
  --border-color: #E5E9F2;
}

* {
  margin: 0;
  padding: 0;
  font-family: SohneLeicht, sans-serif;
  box-sizing: border-box;
  color: var(--title);
}

body::-webkit-scrollbar {
  display: none;
}

/* Navbar */
.nav-wrap {
  background-color: white;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.nav-wrap__inner {
  width: 100%;
}

.nav-wrap__inner .mob-none {
  display: none;
}

.nav-wrap__inner .nav-wrap--mobile {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #FFF;
  width: 100%;
  max-width: 320px;
  padding: 32px 0;
  border-right: 1px solid var(--border-color);
  overflow-y: scroll;
  animation: slide-in 1s;
  z-index: 5;
}

.nav-wrap .mob-slide-out {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #FFF;
  width: 100%;
  max-width: 320px;
  padding: 32px 0;
  border-right: 1px solid var(--border-color);
  overflow-y: scroll;
  animation: slide-out 1s forwards;
  z-index: 5;
}

.nav-wrap__inner .nav-wrap--mobile::-webkit-scrollbar {
  display: none;
}

@keyframes slide-in {
  from {
    left: -360px;
  }
  to {
    left: 0;
  }
}

@keyframes slide-out {
  from {
    left: 0;
  }
  to {
    left: -360px;
  }
}

.nav-wrap__inner .logo-wrap--mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 20px;
}

.nav-wrap__inner .products-link--mobile,
.nav-wrap__inner .resources-link--mobile {
  color: var(--title);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-color);
}

.nav-wrap__inner .products-link--mobile span,
.nav-wrap__inner .resources-link--mobile span {
  font-family: SohneKraftig, sans-serif;
}

.nav-wrap__inner .about-wrap--mobile {
  margin-bottom: 64px;
  padding: 16px 20px;
}

.nav-wrap__inner .about--mobile {
  font-family: SohneKraftig, sans-serif;
  color: var(--title);
  text-decoration: none;
}

.nav-wrap__inner .login--mobile,
.nav-wrap__inner .signup--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: #FFF;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  height: 56px;
  font-family: SohneKraftig, sans-serif;
  margin: 24px 20px 0;
}

.nav-wrap__inner .signup--mobile {
  background-color: var(--primary-color);
  color: #FFF;
}

.nav-wrap__inner .products-menu--mobile,
.nav-wrap__inner .resources-menu--mobile {
  display: none;
  padding: 0 20px;
  max-width: 320px;
  background-color: var(--background-alt-2);
}

.products-menu--mobile .products-menu--item,
.resources-menu--mobile .products-menu--item {
  text-decoration: none;
  padding: 12px 0;
  display: block;
}

.nav-wrap__inner .products-menu--item p,
.nav-wrap__inner .resources-menu--item p {
  font-family: SohneKraftig, sans-serif;
  color: #121F3E;
  font-size: 0.875rem;
}

.nav-wrap__inner .products-menu--item span,
.nav-wrap__inner .resources-menu--item span {
  color: #A1A1A1;
  font-size: 0.75rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.desktop-nav .nav-links {
  display: none;
}

.desktop-nav .auth {
  display: none;
}
/* End Navbar */

/* Header */
.header {
  padding: 56px 20px;
}

.hero-section .hero-section__heading {
  font-family: SohneHalbfett, sans-serif;
  font-weight: 700;
  max-width: 470px;
  font-size: 1.8rem;
}

.search-form-wrap {
  margin-top: 32px;
}

.search-form {
  display: grid;
  gap: 24px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.amount-wrap .amount-input,
.type-wrap .type-input,
.income-wrap .income-input,
.purpose-wrap .purpose-input,
.phone-wrap .phone-input, 
.bvn-wrap .bvn-input {
  height: 60px;
  background-color: var(--background-alt-2);
  border: none;
  width: 100%;
  border-radius: 8px;
  padding: 30px 21px 8px 36px;
  font-size: 1.25rem;
  font-family: SohneKraftig, sans-serif;
}

.type-wrap .type-input,
.purpose-wrap .purpose-input {
  padding: 24px 21px 8px 16px;
  cursor: pointer;
}
.phone-wrap .phone-input,
.bvn-wrap .bvn-input {
  padding: 24px 21px 8px 16px;
}

.amount-wrap .amount-label,
.type-wrap .type-label,
.income-wrap .income-label,
.purpose-wrap .purpose-label,
.phone-wrap .phone-label,
.bvn-wrap .bvn-label {
  font-size: 0.875rem;
  margin-left: 16px;
  color: var(--text);
  position: absolute;
  padding-top: 6px;
}

.amount-input-wrap span,
.income-input-wrap span {
  position: absolute;
  font-size: 1.25rem;
  padding: 28px 0 0 16px;
  font-weight: 600;
}

.amount-wrap .amount-input:focus,
.amount-wrap .amount-input:hover,
.type-wrap .type-input:focus,
.type-wrap .type-input:hover,
.income-wrap .income-input:focus,
.income-wrap .income-input:hover,
.purpose-wrap .purpose-input:focus, 
.purpose-wrap .purpose-input:hover,
.phone-wrap .phone-input:focus, 
.phone-wrap .phone-input:hover,
.bvn-wrap .bvn-input:focus,
.bvn-wrap .bvn-input:hover {
  border: 1px solid var(--primary-color);
  outline: none;
}

.type-input-wrap,
.purpose-input-wrap {
  display: flex;
  align-items: center;
}

.type-input-wrap svg,
.purpose-input-wrap svg {
  position: relative;
  margin-left: -28px;
  margin-top: 18px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.search-btn {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #FFF;
  font-family: SohneKraftig, sans-serif;
  font-size: 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.search-btn:focus {
  outline: none;
}
/* End Header */

/* Main Content */
.main-content {
  padding: 64px 20px;
}

.section--heading {
  font-size: 1.25rem;
  font-family: SohneKraftig, sans-serif;
  letter-spacing: 1px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.explore-loans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  overflow-x: scroll;
  column-gap: 32px;
  row-gap: 32px;
  margin-top: 32px;
  padding-bottom: 12px;
}

.explore-loans::-webkit-scrollbar {
  height: 2px;
}
.explore-loans::-webkit-scrollbar-track {
  background: #e7eafa;
}
.explore-loans::-webkit-scrollbar-thumb {
  background: #3554d1;
  border-radius: 8px;
}

.explore-loans__item {
  min-width: 280px;
}

.explore-loans--img {
  width: 100%;
}

.explore-loans--title {
  margin-top: 16px;
  display: block;
  font-family: SohneKraftig, sans-serif;
}

.works-wrap {
  margin-top: 52px;
  border-top: 1px solid #EDEDED;
  padding: 40px 20px 0;
  /* height: 800px; */
  /* position: sticky; */
  /* overflow-y: scroll; */
}

.works {
  margin-top: 32px;
}

.works__details {
  display: flex;
  flex-direction: column;
}

.works__details .works__details--num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 48px;
  height: 48px;
  background-color: var(--secondary-color);
  border-radius: 100%;
  font-family: SohneKraftig, sans-serif;
  font-size: 1.5rem;
}

.works__details .works__details--inner {
  margin-top: 12px;
}

.works__details .works__details--heading {
  font-size: 1.25rem;
  font-family: SohneKraftig, sans-serif;
}

.works__details .works__details--text {
  margin-top: 12px;
  line-height: 28px;
  max-width: 440px;
}

.works__img-wrap {
  display: none;
}

@media screen and (min-width: 1024px) {
  .works-wrap {
    padding: 104px 0 0;
  }

  .works__item {
    overflow-y: scroll;
    height: 650px;
  }

  .works__item::-webkit-scrollbar {
    display: none;
  }
  
  .works__item-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
  }

  .works__details-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 100px;
  }

  .works__details .works__details--heading {
    font-size: 2rem;
  }

  .works__item .works__details {
    transition: 0.8s;
    min-height: 400px;
  }

  .works__img-wrap {
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    min-width: 412px;
    height: 540px;
    margin-left: 36px;
    background-image: url('../../images/how-it-works-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    justify-content: center;
    grid-column: 2/3;
  }

  .works__img-wrap .works__img {
    width: 272px;

  }
}
/* End Main Content */

/* Testimonials */
.testimonials-wrap {
  padding: 64px 20px;
  background-color: var(--secondary-color);
  margin-top: 100px;
}

.testimonials-inner {
  margin-top: 64px;
  width: 87.5vw;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 16px;
  overflow-x: scroll;
}

.testimonials-inner::-webkit-scrollbar {
  height: 2px;
}
.testimonials-inner::-webkit-scrollbar-track {
  background: #e7eafa;
}
.testimonials-inner::-webkit-scrollbar-thumb {
  background: #3554d1;
  border-radius: 8px;
}

.testimonials__item {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials__item .testimonials__item--text {
  max-width: 300px;
  line-height: 24px;
}

.testimonials__item--user {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.testimonials__item--user .testimonials__item--img {
  width: 48px;
  height: 48px;
  background-color: #C4C4C4;
  border-radius: 8px;
}

.testimonials__item--user .testimonials__item--name {
  font-family: SohneKraftig, sans-serif;
  margin-left: 16px;
}

.more-details {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
  padding: 14px 24px;
  background-color: white;
  text-decoration: none;
  font-family: SohneKraftig, sans-serif;
  border-radius: 8px;
}

.more-details:hover {
  background-color: var(--primary-color);
  color: white;
}
/* End Testimonials */

/* Lender */
.lender-wrap {
  padding: 64px 20px;
}

.lender--inner {
  background: rgba(18, 31, 62, 0.979708);
  border-radius: 8px;
  padding: 24px;
}

.lender--heading,
.lender--text {
  color: white;
  text-align: center;
}

.lender--text {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}
/* End Lender */

/* Blog */
.blog-wrap {
  padding: 0 20px 64px;
}

.blog--inner {
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.section--text {
  color: var(--text);
}

.blog--posts {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  width: 100%;
  overflow-x: scroll;
  column-gap: 20px;
  row-gap: 24px;
  padding-bottom: 12px;
}

.blog--posts::-webkit-scrollbar {
  height: 2px;
}
.blog--posts::-webkit-scrollbar-track {
  background: #e7eafa;
}
.blog--posts::-webkit-scrollbar-thumb {
  background: #3554d1;
  border-radius: 8px;
}

.blog--posts__item {
  min-width: 320px;
  max-width: 414px;
  height: 414px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 32px;
  cursor: pointer;
  text-decoration: none;
}

.blog--posts__item:nth-child(1) {
  background: linear-gradient(0deg, #272727 -5.33%, rgba(39, 39, 39, 0.906347) 11.08%, rgba(39, 39, 39, 0.857464) 15.99%, rgba(39, 39, 39, 0.764142) 24.22%, rgba(39, 39, 39, 0.331838) 33.44%, rgba(39, 39, 39, 0) 52.54%), url('../../images/loan-scammer.png');
}

.blog--posts__item:nth-child(2) {
  background: linear-gradient(0deg, #272727 -5.33%, rgba(39, 39, 39, 0.906347) 11.08%, rgba(39, 39, 39, 0.857464) 15.99%, rgba(39, 39, 39, 0.764142) 24.22%, rgba(39, 39, 39, 0.331838) 33.44%, rgba(39, 39, 39, 0) 52.54%), url('../../images/business-loans.png');
}

.blog--posts__item:nth-child(3) {
  background: linear-gradient(0deg, #272727 -5.33%, rgba(39, 39, 39, 0.906347) 11.08%, rgba(39, 39, 39, 0.857464) 15.99%, rgba(39, 39, 39, 0.764142) 24.22%, rgba(39, 39, 39, 0.331838) 33.44%, rgba(39, 39, 39, 0) 52.54%), url('../../images/credit-score.png');
}

.post--date {
  font-size: 0.875rem;
  color: white;
}

.post--title {
  font-size: 1.125rem;
  color: white;
  font-family: SohneKraftig, sans-serif;
}

.blog--more {
  width: 180px;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto 0;
  text-decoration: none;
  font-family: SohneKraftig, sans-serif;
}

.blog--more:hover {
  background: var(--secondary-color);
  color: var(--title);
}
/* End Blog */

/* Footer */
.footer {
  background: #121F3F;
  padding: 80px 20px 64px;
  margin-top: 104px;
}

.footer .footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  row-gap: 48px;
}

.footer__container .products .products--title,
.footer__container .company .products--title,
.footer__container .legal .products--title,
.footer__container .help .products--title{
  font-family: SohneKraftig, sans-serif;
  color: white;
}

.footer__container .products .products--text,
.footer__container .company .products--text,
.footer__container .legal .products--text,
.footer__container .help .products--text {
  margin-top: 16px;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  color: white;
}

.footer .footer__brand {
  margin-top: 126px;
}

.footer .social-links-wrap {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 0;
}

.disclaimer .top-copy {
  margin-top: 25px;
}

.disclaimer .bottom-copy {
  margin-bottom: 25px;
}
.disclaimer .copyright {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.875rem;
  padding-left: 2px;
  padding-right: 12px;
  text-align: left;
}

.disclaimer .disclaimer-image {
width: 211px;
height: 106px;
}

.social-links-wrap .copyright {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.875rem;
  text-align: center;
}

.social-links-wrap .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.social-links .twitter,
.social-links .facebook {
  display: flex;
  align-items: center;
}

.social-links .twitter::after,
.social-links .facebook::after {
  content: '';
  display: block;
  background-color: #979CAA;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  margin: 0 24px;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 80px 40px 64px;
  }

  .footer .social-links-wrap {
    flex-direction: row;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: none;
  }

  .social-links-wrap .social-links {
    margin-top: 0;
  }
}

@media screen and (min-width: 1440px) {
  .footer {
    padding: 80px 80px 64px;
  }
}

@media screen and (min-width: 1536px) {
  .footer .footer__container,
  .footer .footer__brand,
  .footer .disclaimer,
  .footer .social-links-wrap {
    width: 1440px;
    margin: 62px auto 0;
  }

  .footer .footer__container {
    margin-top: 0;
  }
  
  .footer .social-links-wrap {
    margin-top: 16px;
  }
}
/* End Footer */

/* Media Queries */
@media screen and (min-width: 640px) {
  /* Header */
  .search-form {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }


  .purpose-wrap {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .search-btn {
    grid-column: 1/3;
  }
  /* End Header */

  /* End Main Content */
  .works__details {
    flex-direction: row;
  }

  .works__details .works__details--inner {
    margin-top: 4px;
    margin-left: 24px;
  }

  .works__details .works__details--text {
    margin-top: 4px;
  }
  /* End Main Content */
}

@media (min-width: 768px) {
  /* Footer */
  .footer .social-links-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer .social-links {
    border: none;
  }
  /* End Footer */
}

@media screen and (min-width: 1024px) {
  /* Navbar */
  .nav-wrap {
    padding: 0 40px;
    height: 80px;
  }
  
  .nav {
    max-width: 1440px;
    margin: 0 auto;
  }

  .nav-wrap__inner .login--mobile,
  .nav-wrap__inner .signup--mobile {
    display: none;
  }

  .nav-wrap__inner .products-menu--item,
  .nav-wrap__inner .resources-menu--item {
    padding: 0;
  }

  .desktop-nav {
    height: 80px;
  }

  .desktop-nav .nav-links {
    display: flex;
  }

  .desktop-nav .products-menu-wrap,
  .desktop-nav .resources-menu-wrap {
    visibility: hidden;
    position: absolute;
    width: 387px;
    opacity: 0;
    transition: 0.2s;
    z-index: 20;
    margin-top: -4px;
    left: -20px;
    box-shadow: 4px 8px 30px rgb(0 0 0 / 10%);
    border-radius: 12px;
  }

  .desktop-nav .resources-menu-wrap {
    left: -103px;
  }

  .desktop-nav .products-link,
  .desktop-nav .resources-link {
    display: flex;
    align-items: center;
  }

  .desktop-nav .products-link span,
  .desktop-nav .resources-link span {
    font-family: SohneKraftig, sans-serif;
    margin-right: 8px;
    transition: 0.2s;
    height: 80px;
    display: flex;
    align-items: center;
    color: var(--text);
  }

  .desktop-nav .products-link span:hover,
  .desktop-nav .resources-link span:hover {
    color: var(--primary-color);
  }

  .desktop-nav .resources-link {
    margin-left: 20px;
  }

  .products-link-wrap,
  .resources-link-wrap,
  .about-wrap {
    position: relative;
    cursor: pointer;
  }

  .products-link-wrap:hover .products-menu-wrap, 
  .resources-link-wrap:hover .resources-menu-wrap {
    visibility: visible;
    opacity: 1;
    transition: 0.2s;
  }

  .products-menu-wrap .arrow-up {
    position: relative;
    left: 50px;
  }
  .resources-menu-wrap .arrow-up-res {
    position: relative;
    left: 172px;
  }

  .products-menu-wrap .products-menu,
  .resources-menu-wrap .resources-menu {
    background: #FFF;
    padding: 16px;
    border-radius: 8px;
    margin-top: -8px;
  }

  .products-menu .products-menu--item,
  .resources-menu .resources-menu--item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    background-color: white;
    border-radius: 8px;
  }

  .products-menu .products-menu--item:hover,
  .resources-menu .resources-menu--item:hover {
    background-color: #F9FAFC;
  }

  .products-menu--item .products--item,
  .resources-menu--item .resources--item {
    margin-left: 12px;
  }

  .products-menu--item:nth-child(n + 2),
  .resources-menu--item:nth-child(n + 2) {
    margin-top: 16px;
  }

  .desktop-nav .about {
    font-family: SohneKraftig, sans-serif;
    color: var(--text);
    text-decoration: none;
    margin-left: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    transition: 0.2s;
  }

  .desktop-nav .about:hover {
    color: var(--primary-color);
  }

  .desktop-nav .hamburger {
    display: none;
  }

  .desktop-nav .auth {
    display: flex;
    align-items: center;
  }

  .auth .world {
    display: none;
    border-right: 1px solid var(--text);
    height: auto;
    padding-right: 20px;
  }

  .world svg {
    margin-top: 4px;
  }
  
  .auth .login {
    text-decoration: none;
    color: var(--text);
    font-family: SohneKraftig, sans-serif;
    margin-left: 20px;
  }

  .auth .signup {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-color: var(--primary-color);
    width: 135px;
    border-radius: 8px;
    text-decoration: none;
    height: 48px;
    margin-left: 24px;
    font-family: SohneKraftig, sans-serif;
  }
  /* End Navbar */

  /* Header */
  .header {
    padding: 64px 40px;
    height: 585px;
    background-image: radial-gradient(41.68% 73.15% at 65.87% 32.91%, rgba(0, 0, 0, 0) 0%, rgba(1, 2, 5, 0.039366) 24.48%, rgba(3, 5, 9, 0.0773745) 29.69%, rgba(5, 9, 19, 0.15433) 42.19%, rgba(18, 31, 62, 0.51) 82.39%), url('../../images/hero-image.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .header-inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .search-form {
    width: 648px;
    background-color: #FFF;
    border-radius: 8px;
    padding: 20px;
  }

  .hero-section .hero-section__heading {
    color: #FFF;
    font-size: 3rem;
  }
  /* End Header */

  /* Main Content */
  .main-content {
    padding: 64px 40px;
  }

  .main-cntent__inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .section--heading {
    font-size: 2rem;
  }

  .explore-loans {
    margin-top: 62px;
  }

  .explore-loans--title {
    font-size: 1.125rem;
  }
  /* End Main Content */

  /* Testimonials */
  .testimonials-wrap {
    padding: 104px 40px 48px;
  }

  .testimonials-inner {
    width: 92vw;
    max-width: 1440px;
    margin: 64px auto 0;
  }

  .testimonials__item {
    min-width: 368px;
  }
  /* End Testimonials */

  /* Lender */
  .lender-wrap {
    padding: 104px 40px;
  }

  .lender--inner {
    height: 400px;
    max-width: 1440px;
    background: linear-gradient(-92.49deg, #121F3E 24.81%, rgba(18, 31, 62, 0.979708) 32.68%, rgba(18, 31, 62, 0.970684) 41.18%, rgba(18, 31, 62, 0.93258) 47.52%, rgba(18, 31, 62, 0.913418) 56.64%, rgba(18, 31, 62, 0.845616) 62.69%, rgba(18, 31, 62, 0.815713) 63.2%, rgba(18, 31, 62, 0.751234) 66%, rgba(18, 31, 62, 0) 79.15%), url('../../images/lender-bg.png');
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 600px;
  }

  .lender--heading,
  .lender--text {
    text-align: left;
    width: 400px;
    line-height: 24px;
  }

  .lender--inner .more-details {
    margin: 40px 0 0;
  }
  /* End Lender */

  /* Blog */
  .blog-wrap {
    padding: 0 40px 104px;
  }

  .blog--inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .blog--posts {
    max-width: 1282px;
    margin: 64px auto 0;
  }

  .blog--posts__item {
    width: 414px;
  }

  .post--title {
    font-size: 1.25rem;
    color: white;
  }
  /* End Blog */
}

@media screen and (min-width: 1280px) {
  /* Main Content */
  .explore-loans::-webkit-scrollbar {
    display: none;
  }

  .works__item {
    /* width: 1200px; */
    margin-left: auto;
    margin-right: auto;
  }
  /* End Main Content */
}

@media screen and (min-width: 1366px) {
  .blog--posts::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  /* Navbar */
  .nav-wrap {
    padding: 0 80px;
  }

  .desktop-nav .resources-link,
  .desktop-nav .about {
    margin-left: 40px;
  }
  /* End Navbar */

  /* Header */
  .header {
    padding: 64px 80px;
  }
  /* End Header */

  /* Main Content */
  .main-content {
    padding: 64px 80px;
  }
  /* End Main Content */

  /* Testimonials */
  .testimonials-wrap {
    padding: 104px 80px 48px;
  }
  /* End Testimonials */

  /* Lender */
  .lender-wrap {
    padding: 104px 80px;
  }
  /* End Lender */

  /* Blog */
  .blog-wrap {
    padding: 0 80px 104px;
  }
  /* End Blog */
}

@media screen and (min-width: 1536px) {
  .desktop-nav {
    width: 1440px;
    margin: 0 auto;
  }
}

