/* =========================================================
   RESET AND BASE STYLES
========================================================= */

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f9f9f9;
}


/* =========================================================
   HEADER
========================================================= */

header {
  background-color: #ffffff;
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}


/* =========================================================
   NAVBAR
========================================================= */

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  width: 85px;
  height: 80px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* TaponBytes */

.brand-name {
  display: flex;
  align-items: baseline;
  font-family: 'Montserrat', sans-serif;
  font-size: 27px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.3px;
  white-space: nowrap;
}


/* Tapon */

.brand-name .tapon {
  color: #1768B3;
}


/* Bytes */

.brand-name .bytes {
  color: #1675C9;
}


/* Finance */

.brand-subtitle {
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  letter-spacing: 3.2px;
  color: #297DC2;
  text-transform: uppercase;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333333;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.navbar-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.a-element {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.a-element:hover {
  color: rgb(41, 125, 194);
}


/* Login Button */

.a-element:last-child {
  background-color: rgb(41, 125, 194);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
}

.a-element:last-child:hover {
  background-color: #5b33ec;
}


/* =========================================================
   TABLET NAVBAR
   769px - 1024px
========================================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {

  header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-bar {
    flex-wrap: nowrap;
  }

  .logo {
    gap: 8px;
  }

  .logo-image {
    width: 100px;
    height: 90px;
  }

  .brand-name {
    font-size: 23px;
    letter-spacing: 0.2px;
  }

  .brand-subtitle {
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 2.7px;
  }

  .navbar-links {
    gap: 15px;
  }

  .a-element {
    font-size: 14px;
  }

  .a-element:last-child {
    padding: 7px 12px;
  }
}


/* =========================================================
   MOBILE NAVBAR
   Up to 768px
========================================================= */

@media screen and (max-width: 768px) {

  header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-bar {
    min-height: 65px;
    flex-wrap: nowrap;
  }

  .logo {
    gap: 6px;
    margin-right: auto;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }

  .brand-name {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.1px;
  }

  .brand-subtitle {
    margin-top: 4px;
    font-size: 15px;
    letter-spacing: 2.2px;
  }

  .hamburger {
    display: block;
    margin-left: 15px;
    padding-right: 5px;
    font-size: 26px;
    cursor: pointer;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10px;

    background-color: #ffffff;

    width: 200px;
    padding: 20px;

    box-shadow: -2px 4px 8px rgba(0, 0, 0, 0.15);

    border-radius: 8px;
    z-index: 999;
    gap: 5px;
  }

  .navbar-links.show {
    display: flex;
  }

  .a-element {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  .a-element:last-child {
    width: 100%;
    text-align: center;
  }
}


/* =========================================================
   SMALL MOBILE NAVBAR
   Up to 400px
========================================================= */

@media screen and (max-width: 400px) {

  .logo {
    gap: 5px;
  }

  .logo-image {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 0;
  }

  .brand-subtitle {
    margin-top: 3px;
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .hamburger {
    font-size: 24px;
  }

  .navbar-links {
    width: 180px;
  }
}


/* =========================================================
   HOME / HERO SECTION
========================================================= */

.home-section {
  width: 100%;
  min-height: 450px;
  background-color: #021230;
  position: relative;
  overflow: hidden;
}

.home-container {
  width: 100%;
  max-width: 1536px;
  min-height: 450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.home-content {
  width: 50%;
  padding-left: 7.4%;
  position: relative;
  z-index: 5;
}


/* =========================================================
   SMALL BADGE
========================================================= */

.home-heading {
  display: inline-block;

  border: 1px solid #0877ff;
  border-radius: 20px;

  padding: 5px 16px;

  color: #0877ff;

  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 10px;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.home-content h1 {
  margin: 0;

  color: #ffffff;

  font-family: 'Poppins', sans-serif;

  font-size: 54px;
  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -1px;
}

.home-content h1 span {
  display: block;
  color: #0878ff;
  font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.home-content p {
  margin-top: 18px;
  margin-bottom: 22px;

  color: #ffffff;

  font-family: 'Poppins', sans-serif;

  font-size: 16px;
  line-height: 1.8;

  font-weight: 400;
}


/* =========================================================
   HOME BUTTONS
========================================================= */

.home-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}


/* Apply Button */

.apply-btn {
  min-width: 205px;
  height: 50px;

  padding: 0 12px 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #0878ff;
  color: #ffffff;

  border: 1px solid #0878ff;
  border-radius: 5px;

  text-decoration: none;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #0066df;
}


/* =========================================================
   ARROW CIRCLE
========================================================= */

.arrow-circle {
  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0878ff;

  font-size: 13px;
}


/* =========================================================
   HOME IMAGE
   DESKTOP + TABLET
========================================================= */

.home-image {
  width: 52%;
  height: 450px;
  position: absolute;
  right: 0;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* =========================================================
   HOME TABLET
   769px - 1024px
========================================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {

  .home-section {
    min-height: 420px;
  }

  .home-container {
    min-height: 420px;
  }

  .home-content {
    width: 56%;
    padding-left: 5%;
    z-index: 10;
  }

  .home-heading {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .home-content h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .home-content p {
    font-size: 14px;
    line-height: 1.6;

    margin-top: 15px;
    margin-bottom: 20px;
  }

  .home-buttons {
    gap: 12px;
  }

  .apply-btn {
    min-width: 170px;
    height: 45px;
    font-size: 13px;
    padding-left: 15px;
  }

  .arrow-circle,
  .calculator-circle {
    width: 26px;
    height: 26px;

    font-size: 11px;
  }
}


/* =========================================================
   HOME MOBILE
   0px - 768px

   IMPORTANT:
   HERO IMAGE IS HIDDEN ON MOBILE
========================================================= */

@media screen and (max-width: 768px) {

  .home-section {
    min-height: auto;
    background: #061d4f;
    background-size: cover;
  }

  /* REMOVE HAND / HERO IMAGE ON MOBILE */
  .home-image {
    display: none;
  }

  .home-container {
    min-height: auto;

    display: flex;
    flex-direction: column;

    align-items: stretch;
  }

  .home-content {
    width: 100%;

    padding: 45px 25px 30px;

    text-align: center;

    z-index: 10;
  }

  .home-heading {
    font-size: 10px;

    padding: 4px 12px;

    margin-bottom: 12px;
  }

  .home-content h1 {
    font-size: 34px;

    line-height: 1.15;

    letter-spacing: -0.5px;
  }

  .home-content h1 span {
    margin-top: 2px;
  }

  .home-content p {
    font-size: 14px;

    line-height: 1.7;

    margin-top: 15px;
    margin-bottom: 25px;
  }

  .home-content p br {
    display: none;
  }

  .home-buttons {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;
  }

  .apply-btn {
    width: 230px;

    min-width: 230px;

    height: 48px;

    font-size: 14px;
  }
}


/* =========================================================
   HOME SMALL MOBILE
========================================================= */

@media screen and (max-width: 400px) {

  .home-content {
    padding: 35px 18px 25px;
  }

  .home-content h1 {
    font-size: 29px;
  }

  .home-content p {
    font-size: 13px;
  }

  .apply-btn {
    width: 215px;
    min-width: 215px;
  }
}


/* =========================================================
   GLOBAL RESET FOR MAIN CONTENT
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #07183d;
  background: #ffffff;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}


/* =========================================================
   TOP FEATURES
========================================================= */

.top-area {
  min-height: 120px;

  padding: 20px 6%;

  background:
    linear-gradient(
      90deg,
      #071d4c 0%,
      #09265b 45%,
      #031743 100%
    );
}

.feature-container {
  max-width: 1360px;
  min-height: 100px;

  margin: 0 auto;

  background: #ffffff;

  border: 1px solid #e4e8ee;
  border-radius: 8px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-item {
  display: flex;
  align-items: center;

  padding: 15px 35px;

  position: relative;
}

.feature-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 20px;
  bottom: 20px;

  width: 1px;

  background: #e2e2e2;
}

.feature-icon {
  width: 53px;
  height: 53px;

  min-width: 53px;

  border-radius: 50%;

  background: #0966d8;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 23px;

  margin-right: 18px;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.2);
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 700;

  color: #07183d;

  margin-bottom: 4px;
}

.feature-text p {
  font-size: 12px;

  line-height: 1.55;

  color: #273348;
}


/* =========================================================
   MIDDLE SECTION
========================================================= */

.middle-section {
  background: #ffffff;

  padding: 18px 6% 22px;
}

.middle-container {
  max-width: 1360px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1.04fr);

  gap: 32px;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
  margin-bottom: 9px;
}

.section-title h3 {
  font-size: 12px;

  font-weight: 700;

  color: #07183d;

  margin-bottom: 5px;
}

.section-title span {
  display: block;

  width: 28px;
  height: 3px;

  background: #146bd9;

  border-radius: 5px;
}


/* =========================================================
   PARTNERS
========================================================= */

.partners-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 7px;
}

.partner-card {
  height: 62px;

  border: 1px solid #e4e8ed;

  border-radius: 7px;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  box-shadow: 0 1px 4px rgba(0,0,0,.03);

  font-size: 19px;
}

.partner-card strong {
  font-weight: 700;
}

.partner-card small {
  display: block;

  font-size: 12px;
}

.partner-card img {
  max-width: 85%;
  max-height: 160px;

  object-fit: contain;
}


/* =========================================================
   LOANS
========================================================= */

.loans-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 7px;
}

.loan-card {
  min-height: 62px;

  border: 1px solid #e4e8ed;

  border-radius: 7px;

  padding: 8px 12px;

  display: flex;
  align-items: center;

  background: #ffffff;

  box-shadow: 0 1px 4px rgba(0,0,0,.03);
}

.loan-icon {
  width: 58px;

  min-width: 28px;

  font-size: 28px;

  color: #0871d9;

  margin-right: 12px;

  text-align: center;
}

.loan-card h4 {
  font-size: 11px;

  font-weight: 700;

  color: #07183d;

  margin-bottom: 2px;
}

.loan-card p {
  font-size: 10.5px;

  line-height: 1.45;

  color: #33405a;
}


/* =========================================================
   COUNTER SECTION
========================================================= */
/* =========================================================
   COUNTER SECTION
   ========================================================= */

   .stats-section {
    width: 100%;
    min-height: 300px;

    background: #101014;
    background-image: url("https://static.vecteezy.com/system/resources/previews/011/641/938/non_2x/blue-abstract-background-design-blue-corporate-background-use-for-business-corporate-institution-poster-template-party-festive-seminar-illustration-free-vector.jpg");
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 55px;

    padding: 70px 60px;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   INDIVIDUAL COUNTER CARD
   ========================================================= */

.stat-box {
    width: 200px;
    height: 200px;

    background: #20232b;
background-image: url("");
    border-radius: 7px;

    border: 1px solid #292d36;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;

    box-sizing: border-box;

    padding: 20px 10px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   GREEN BOTTOM BORDER
   ========================================================= */

.stat-box::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 11px;

    background: #d4d8dd;

    border-radius:
        0 0 7px 7px;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.stat-box:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   ICON
   ========================================================= */

.stat-icon {
    color: #dde0e6;

    font-size: 42px;

    line-height: 1;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   NUMBER
   ========================================================= */

.stat-number {
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 48px;

    font-weight: 700;

    line-height: 1;

    margin-bottom: 12px;

    white-space: nowrap;

    text-align: center;
}


/* =========================================================
   LABEL
   ========================================================= */

.stat-label {
    color: #eeeeee;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.3;

    text-align: center;

    white-space: nowrap;
}


/* =========================================================
   DESKTOP — ALL 5 IN ONE ROW
   ========================================================= */

@media (min-width: 1100px) {

    .stats-section {
        flex-wrap: nowrap;
    }

    .stat-box {
        flex: 0 0 200px;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1100px) {

    .stats-section {
        gap: 25px;
        padding: 60px 25px;
    }

    .stat-box {
        width: 180px;
        height: 190px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-icon {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .stats-section {
        flex-wrap: wrap;
        gap: 25px;
    }

    .stat-box {
        width: 200px;
        height: 200px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .stats-section {
        flex-direction: column;

        gap: 25px;

        padding: 50px 20px;
    }

    .stat-box {
        width: 100%;
        max-width: 280px;

        height: 200px;
    }

    .stat-number {
        font-size: 44px;
    }

    .stat-icon {
        font-size: 38px;
    }

    .stat-label {
        font-size: 15px;
    }
}


/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-section {
  background: #eef7ff;

  padding: 35px 6% 20px;
}

.why-container {
  max-width: 1360px;

  margin: 0 auto;
}

.why-heading {
  text-align: center;

  margin-bottom: 25px;
}

.why-heading h2 {
  font-size: 25px;

  font-weight: 700;

  color: #06183d;

  margin: 0 0 8px;
}

.why-heading p {
  font-size: 14px;

  color: #263650;

  margin: 0;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 11px;
}

.benefit-card {
  min-height: 95px;

  background: #ffffff;

  border: 1px solid #e3eaf2;

  border-radius: 8px;

  display: flex;

  align-items: flex-start;

  padding: 12px 11px;

  box-shadow:
    0 2px 7px rgba(31, 82, 130, .04);
}

.benefit-icon {
  width: 42px;
  height: 42px;

  min-width: 42px;

  border-radius: 50%;

  background: #eef7ff;

  border: 1px solid #dceeff;

  color: #0a6bd6;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 25px;

  margin-right: 10px;
}

.benefit-card h4 {
  font-size: 16px;

  font-weight: 700;

  color: #07183d;

  margin: 2px 0 5px;
}

.benefit-card p {
  font-size: 12px;

  line-height: 1.5;

  color: #344158;
}


/* =========================================================
   LARGE TABLET
   1024px - 1200px
========================================================= */

@media (max-width: 1200px) {

  .top-area,
  .middle-section,
  .why-section {
    padding-left: 3%;
    padding-right: 3%;
  }

  .why-section {
    padding-top: 35px;
  }

  .feature-item {
    padding: 15px 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    font-size: 20px;

    margin-right: 12px;
  }

  .feature-text h4 {
    font-size: 12px;
  }

  .feature-text p {
    font-size: 10px;
  }

  .middle-container {
    gap: 18px;
  }

  .benefit-card {
    padding: 10px 8px;
  }

  .benefit-icon {
    width: 35px;
    height: 35px;

    min-width: 35px;

    font-size: 15px;

    margin-right: 7px;
  }
}


/* =========================================================
   TABLET
   768px - 1023px
========================================================= */

@media (max-width: 1023px) {

  .top-area {
    padding: 15px 2%;
  }

  .feature-container {
    grid-template-columns: repeat(2, 1fr);

    min-height: auto;
  }

  .feature-item {
    min-height: 82px;

    padding: 12px 20px;
  }

  .feature-item:nth-child(2)::after {
    display: none;
  }

  .feature-item:nth-child(3)::after {
    display: block;
  }

  .middle-section {
    padding: 20px 3%;
  }

  .middle-container {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .loans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
  }

  .benefit-card {
    min-height: 90px;
  }

  .why-section {
    padding: 35px 3% 20px;
  }

  .why-heading h2 {
    font-size: 19px;
  }
}


/* =========================================================
   MOBILE
   767px AND BELOW
========================================================= */

@media (max-width: 767px) {

  /* =====================================================
     TOP FEATURES
  ===================================================== */

  .top-area {
    padding: 10px 12px;
  }

  .feature-container {
    grid-template-columns: 1fr;

    border-radius: 8px;
  }

  .feature-item {
    min-height: 72px;

    padding: 10px 16px;
  }

  .feature-item:not(:last-child)::after {
    left: 16px;
    right: 16px;

    top: auto;
    bottom: 0;

    width: auto;
    height: 1px;
  }

  .feature-icon {
    width: 43px;
    height: 43px;

    min-width: 43px;

    font-size: 18px;

    margin-right: 13px;
  }

  .feature-text h4 {
    font-size: 12px;
  }

  .feature-text p {
    font-size: 10px;

    line-height: 1.45;
  }


  /* =====================================================
     MIDDLE
  ===================================================== */

  .middle-section {
    padding: 18px 12px;
  }

  .middle-container {
    display: block;
  }

  .partners-section {
    margin-bottom: 25px;
  }

  .section-title h3 {
    font-size: 11px;
  }


  /* =====================================================
     PARTNERS
  ===================================================== */

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 7px;
  }

  .partner-card {
    height: 58px;

    font-size: 12px;
  }

  .partner-card img {
    max-width: 65%;
    max-height: 70px;
  }

  .partners-button {
    height: 31px;

    font-size: 10px;
  }


  /* =====================================================
     LOANS
  ===================================================== */

  .loans-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 7px;
  }

  .loan-card {
    min-height: 70px;

    padding: 8px;
  }

  .loan-icon {
    width: 25px;

    min-width: 25px;

    font-size: 18px;

    margin-right: 7px;
  }

  .loan-card h4 {
    font-size: 16px;
  }

  .loan-card p {
    font-size: 12px;
  }


  /* =====================================================
     WHY CHOOSE
  ===================================================== */

  .why-section {
    padding: 30px 12px 20px;
  }

  .why-heading {
    margin-bottom: 16px;
  }

  .why-heading h2 {
    font-size: 20px;

    line-height: 1.4;

    margin: 0 0 6px;
  }

  .why-heading p {
    font-size: 15px;

    line-height: 1.5;

    margin: 0;
  }


  /* =====================================================
     BENEFITS
  ===================================================== */

  .benefits-grid {
    grid-template-columns: 1fr 1fr;

    gap: 8px;
  }

  .benefit-card {
    min-height: 112px;

    padding: 9px;
  }

  .benefit-icon {
    width: 40px;
    height: 35px;

    min-width: 35px;

    font-size: 14px;

    margin-right: 7px;
  }

  .benefit-card h4 {
    font-size: 15px;

    margin-bottom: 4px;
  }

  .benefit-card p {
    font-size: 12px;

    line-height: 1.45;
  }
}


/* =========================================================
   SMALL MOBILE
   400px AND BELOW
========================================================= */

@media (max-width: 400px) {

  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loans-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 80px;
  }

  .benefit-card h4 {
    font-size: 10px;

    margin-bottom: 4px;
  }

  .benefit-card p {
    font-size: 8px;

    line-height: 1.45;
  }


  /* Small mobile WHY spacing */

  .why-section {
    padding: 25px 12px 20px;
  }

  .why-heading h2 {
    font-size: 18px;

    line-height: 1.4;

    margin-bottom: 6px;
  }

  .why-heading p {
    font-size: 10px;
  }
}


/* =========================================================
   READY TO START
========================================================= */

.Ready-to-start {
  text-align: center;

  margin: 0;

  padding: 30px 30px;

  background-color: #84858d;

  background-size: 100%;

  background-image:
    url("https://images.freecreatives.com/wp-content/uploads/2016/04/Website-Backgrounds-For-Desktop.jpg");
}

.Ready-to-start h2 {
  font-size: 28px;

  color: #fefeff;
}

.Ready-to-start p {
  font-size: 18px;

  color: #f8f7fa;
}

.Ready-to-start .btn {
  display: inline-block;

  padding: 10px 10px;

  border: 2px solid #5b33ec;

  border-radius: 16px;

  margin: 10px;

  font-weight: bold;

  text-decoration: none;
}

.Ready-button .primary {
  background-color: white;

  color: #5b33ec;
}


/* =========================================================
   READY SECTION MOBILE
========================================================= */

@media (max-width: 768px) {

  .Ready-to-start {
    text-align: center;

    margin: 0;

    padding: 30px 30px;

    background-color: #3086e7;
  }

  .Ready-to-start h2 {
    font-size: 35px;
  }

  .Ready-to-start p {
    font-size: 18px;
  }

  .Ready-to-start .btn {
    display: inline-block;

    padding: 10px 10px;

    border: 2px solid #3086e7;

    border-radius: 16px;

    margin: 10px;

    font-weight: bold;

    text-decoration: none;
  }

  .Ready-button .primary {
    background-color: white;

    color: #3086e7;
  }
}


/* =========================================================
   FOOTER
========================================================= */

.Footer-container {
  background-color: #333;

  padding-bottom: 4rem;
}

.Footer {
  width: 100%;

  height: 40vh;

  color: #f8f9ff;

  display: flex;

  flex-wrap: nowrap;

  padding-right: 100px;
  padding-left: 30px;
  padding-top: 20px;
}

.Footer-heading {
  display: flex;

  flex-direction: column;

  padding-top: 20px;
}

ul {
  list-style-type: none;

  margin-bottom: 10px;
}

.Footer-1 span {
  color: #3086e7;
}

.subscribe-btn {
  background-color: #3086e7;

  color: white;

  border: none;

  padding: 8px 16px;

  border-radius: 4px;

  cursor: pointer;

  font-weight: bold;

  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #3086e7;
}

.Footer-1 p {
  width: 80%;
}

.para {
  font-size: 12px;
}

.btnsecondary {
  color: white;

  border: 2px solid #3086e7;

  background-color: #3086e7;

  border-radius: 10px;

  padding: 3px 3px;
}


/* =========================================================
   FOOTER QUICK LINKS
========================================================= */

.Footer-2 {
  font-size: 16px;

  width: 30%;
}

.Footer-2 h3 {
  color: #3086e7;
}

.Footer-2 ul li {
  margin-bottom: 5px;
}

.Footer-2 ul li a {
  color: #fff;

  text-decoration: none;
}


/* =========================================================
   FOOTER SERVICES
========================================================= */

.Footer-3 {
  font-size: 14px;

  padding-left: 120px;

  width: 70%;
}

.Footer-3 ul li {
  margin-bottom: 5px;
}

.Footer-3 h3 {
  color: #3086e7;

  font-size: 20px;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.Footer-4 {
  padding-left: 30px;
}

.Footer-4 ul li {
  margin-bottom: 5px;
}

.Footer-4 h3 {
  color: #3086e7;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.Footer-bottom {
  height: 15%;

  text-align: center;

  font-size: 15px;
}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 768px) {

  .Footer {
    height: 30%;

    flex-direction: column;
  }

  .Footer-1 {
    width: 150%;
  }

  .Footer-2 {
    width: 120%;
  }

  .Footer-3 {
    width: 120%;

    padding-left: 3px;
  }

  .Footer-4 {
    padding-left: 3px;

    width: 140%;
  }

  .Footer-bottom {
    height: 15%;

    text-align: center;

    font-size: 10px;
  }
}
