/*  ------------------ Green Header --------------------- */

.breadcrumb-section {
  position: relative;
  width: 100%;
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.greenColor-wrapper {
  width: 100%;
  display: flex;
  position: absolute;
  height: 100%;
  z-index: 1;
  top: 0;
  inset-inline-end: 0;
  justify-content: flex-end;
}

.greenColor {
  width: 40%;
  height: 150px;
  position: relative;
  /* background-color: #4da05b; */
}

.active-title {
  font-weight: 400;
  color: #545454;
  font-size: 16px;
}

/* gray color */
.gray1,
.gray2,
.gray3 {
  position: absolute;
  height: 100%;
  background-color: #d8d8d8;
}

.gray1 {
  width: 8px;
  inset-inline-end: calc(39vw - 38px);
}

.gray2 {
  width: 16px;
  inset-inline-end: calc(39vw - 23px);
}

.gray3 {
  width: 22px;
  inset-inline-end: calc(39vw - 0px);
}

/* Green Header Title */
.greenTitle-wrapper{
  width: 100%;
  display: flex;
  height: 100%;
  z-index: 2;
  align-items: center;
}
.greenTitle {
  width: 100%;
  max-width: 1350px;
  margin: 20px auto;
}

.bread-crumb-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  margin-bottom: 5px;
}

.greenTitle div p {
  color: #787878;
  font-weight: 400;
  font-size: 15px;
  line-height: 156%;
  text-align: start;
}

.greenTitle div p span {
  font-weight: 500;
  line-height: 156%;
  text-align: start;
  margin: auto 5px;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  font-weight: 400;
  font-size: 15px;
  color: #787878;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li a {
  color: #545454;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}

.breadcrumb li a:hover {
  text-decoration: none;
}

.breadcrumb li span {
  margin: 0 5px;
  user-select: none;
}

.breadcrumb li.active-title {
  color: #545454;
  font-weight: 500;
  font-size: 15px;
  cursor: default;
  user-select: none;
}

/* Mobile screen */
@media (max-width: 767px) {

  .gray1,
  .gray2,
  .gray3 {
    display: none;
  }


  .greenColor {
    width: 40vw;
  }

  .greenTitle {
    margin: 20px auto;
  }

  .bread-crumb-title {
    font-weight: 600;
    font-size: 15px;
  }

  .greenTitle div p {
    font-size: 10px;
  }
}

/* Tablet Screen */
@media (min-width: 768px) and (max-width: 1024px) {

.gray1 {
  width: 8px;
  inset-inline-end: calc(38vw - 38px);
}

.gray2 {
  width: 16px;
  inset-inline-end: calc(38vw - 23px);
}

.gray3 {
  width: 22px;
  inset-inline-end: calc(38vw - 0px);
}

  .greenTitle {
    margin: 20px auto;
  }

  .bread-crumb-title {
    font-weight: 600;
    font-size: 20px;
  }

  .greenTitle div p {
    font-size: 15px;
  }
}

/* Small Laptop Screen */
@media (min-width: 1025px) and (max-width: 1280px) {
  .greenTitle div p {
    font-size: 20px;
    text-align: start;
  }
}

@media (min-width: 1281px) and (max-width: 1400px) {
  .greenTitle div p {
    font-size: 20px;
  }
}
@media (max-width:768px) {
      .gray1,
  .gray2,
  .gray3 {
    display: none;
  }
}


/*------------------------- Lending Cards ---------------------------- */

.lendingCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 30px;
    margin-bottom: 64px;
    gap: 20px;
}

.lending-services h2 {
    margin-bottom: 45px;
}

.services-paragraph {
    margin-bottom: 40px;
}

.lendingContent {
    width: 100%;
    border-width: 1px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: black;
    border-radius: 20px;
    height: 100%;
}

.lending-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 178%;
    text-align: center;
}

.lending-desc {
    font-weight: 300;
    font-size: 15px;
    line-height: 178%;
    text-align: center;
    margin-bottom: 30px;
}

.lendingContent img {
    max-width: 100%;
    height: auto;
}

/* responsive */

@media (min-width:768px) and (max-width:1024px ) {
    .lendingCards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile Screen */
@media (max-width: 767px) {
    .lendingCards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .lending-services h2 {
        font-weight: 600;
        font-size: 20px;
        text-align: center;
    }


    .lendingCards {
        flex-direction: column;
        align-items: center;
    }




    .lendingText p {
        margin-bottom: 58px;
    }
}

.services-paragraph.inner-desc {
    text-align: start !important;
    font-size: 17px;
    line-height: 178%;
}

/* Tablet Screen */
@media (min-width: 768px) and (max-width: 1024px) {
    .lending-services h2 {
        font-weight: 600;
        font-size: 20px;
        text-align: center;
    }


}

/* Small Laptop Screen */
@media (min-width: 1025px) and (max-width: 1280px) {
    .lending-services h2 {
        font-weight: 600;
        font-size: 20px;
        text-align: center;
    }


}

@media (max-width: 1024px) {
    .lendingCards {
        justify-content: center;
    }
}
@media (max-width:480px ) {
    .lendingCards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ------------------------ Cash ------------------------------------- */

.lending-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cash-lending-services h2 {
    margin-bottom: 30px;
}

.form h2 {
    margin: 10px auto;
}

.pdf-Container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.pdf-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0.5px solid rgba(66, 73, 82, 0.106);
    border-radius: 15px;
    padding: 10px;
    flex-grow: 1;
}

.pdf-right,
.pdf-left {
    display: flex;
    align-items: center;
}

.pdf-right img {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.pdf-right p {
    font-weight: 700;
    font-size: 15px;
    line-height: 156%;
    text-align: right;
}

.pdf-left {
    gap: 5px;
}

.pdf-left img {
    border: 1px solid transparent;
    border-radius: 50%;
    transition: 0.4s;
}

.pdf-left a:hover img {
    border-color: #4da05b;
}

/* Mobile Screens */
@media (max-width: 767px) {
    .cash-lending-services h2 {
        font-weight: 600;
        font-size: 20px;
        text-align: center;
    }

    .cash-lending-services p {
        margin: auto 10px;
        font-size: 15px;
        text-align: center;
    }

    .form h2 {
        font-size: 20px;
        text-align: center;
    }

    .pdf-form {
        width: 100%;
    }

    .pdf-Container {
        justify-content: center;
    }

    .pdf-right img {
        width: 38px;
        height: 38px;
        margin: 20px 0 20px 15px;
    }
}

/* Tablet Screens */
@media (min-width: 768px) and (max-width: 1024px) {
    .cash-lending-services h2 {
        font-weight: 700;
        font-size: 20px;
        text-align: center;
    }

    .cash-lending-services p {
        margin: auto 10px;
        font-size: 15px;
        text-align: center;
    }

    .form h2 {
        font-size: 20px;
        text-align: center;
    }

    .pdf-form {
        width: 100%;
    }

    .pdf-Container {
        justify-content: center;
    }
    
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .cash-lending-services h2 {
        font-weight: 700;
        font-size: 20px;
        margin-right: 20px;
    }

    .cash-lending-services p {
        margin: auto 10px;
        font-size: 15px;
        margin-right: 20px;
    }

    .form h2 {
        font-size: 20px;
        margin-right: 20px;
    }

    .pdf-Container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
        margin: auto 10px;
    }

    .pdf-form {
        width: 100%;
    }
}

/* ------------- Service ----------------- */
.share {
    width: 100%;
}

.share,
.share-section {
    margin: 50px auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-section h2,
.share-section h4 {
    font-size: 16px;
}

.social-list {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-inline-end: 10px;
}

.social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #4da05b;
    text-decoration: none;
    cursor: pointer;
}

.social-list li svg {
    fill: #fff;
}

.left-arrow {
    width: 31px;
    height: 31px;
    fill: #4da05b;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(66, 73, 82, 0.106);
    border-radius: 50%;
}

.left-arrow:hover {
    border: 1px solid #4da05b;
    border-radius: 50%;
}

section#lendingServicesSection{
    flex:1;
}

@media (max-width: 767px) {
    .inner-desc {
        font-size: 15px;
    }
}
@media (max-width: 576px) {
    .inner-title, .inner-desc {
        text-align: start !important;
    }
}

/* News Card */
.news-cards-content {
    width: 100%;
    padding: 18px;
    margin: 0;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.news-cards-image {
    border-radius: 15px;
    width: 100%;
}

.news-card-text {
    margin: auto;
    margin-top: 10px;
}

.news-card-title {
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.date {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #8c8c8c;
}

.newsPara {
    font-weight: 400;
    font-size: 15px;
    margin-top: 5px;
    line-height: 178%;
    padding-bottom: 20px;
}

.newsPara span {
    color: #4da05b;
    font-weight: 300;
    font-size: 15px;
    word-break: break-word;
    white-space: nowrap;
}


/* Mobile: 1 card */
@media (max-width: 767px) {
    .newsCards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .news-cards-content {
        width: 100%;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .news-card-text {
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .newsPara {
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 160%;
    }

    .newsPara span {
        display: inline;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: nowrap;
    }
}

/* Tablet: 2 cards */
@media (min-width: 768px) and (max-width: 1024px) {
    .newsCards {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin: 0 auto;
        margin-top: 60px;
    }

    .news-cards-content {
        width: 100%;
        margin-bottom: 10px;
    }

    .news-card-text {
        width: 100%;
        max-width: 372px;
        margin: auto;
    }
}