@import url(./bootstrap.min.css);
/*@import url(./select2.min.css);*/
@import url(./owl.carousel.min.css);
@import url(./slick.css);
@import url(./aos.css);
@import url(./font.css);
@import url(./icon.css);
@import url(./font-awesome.min.css);
html,
body {
  width: 100%;
  height: 100%;
}
.wrapper {
  overflow: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--themetextColor);
  line-height: 1.7;
  font-stretch: normal;
  font-kerning: normal;
  margin: 0;
}

:root {
  --themetextColor: #1d1d1d;
  --themebgColor: #e6e6e6;
  --themeheadingColor: #0083ca;
  --themeFooterBgColor: #2e3339;
}

/* Comman Css Start */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  color: var(--themetextColor);
}

a:hover {
  color: var(--themeheadingColor);
}
.padder-30 {
  margin-top: 30px;
}
.container-1920 {
  width: 1250px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/* Comman Css End */

/* Header-Section Start */

.theme-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--themebgColor);
  z-index: 1;
  transition: 0.5s linear all;
}

.theme-header.is-sticky
  {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  animation: menu_sticky 0.5s ease-in-out;
  -webkit-animation: menu_sticky 0.5s ease-in-out;
  z-index: 9;
}
.sub-tab-section.is-sticky  {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 8;
  box-shadow: 0px 16px 17px 0px rgb(0 0 0 / 15%);
  background: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 0;
  animation: menu_sticky 0.5s ease-in-out;
  -webkit-animation: menu_sticky 0.5s ease-in-out;
}
/*================= Sticky Menu ===============*/

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.brand-logo {
  height: 50px;
}
.theme-header {
  background-color: #fff;
}
.theme-header .navbar-expand-lg .navbar-collapse {
  justify-content: space-between;
}
.post-link{
  background: #ffc107;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: all .3s;
  border: 1px solid #ffc107;
}
.post-link:hover{
background: transparent;
color: #ffc107 !important;
}
.navbar-expand-lg .navbar-nav.center-nav {
  margin: auto;
  align-items: center;
}

.theme-header .dropdown-toggle::after {
  display: none;
}
.theme-header .navbar-expand-lg .navbar-nav .h-link {
  display: flex;
  align-items: center;
  color: var(--themetextColor);
  font-size: 14px;
}
.theme-header .navbar-expand-lg .navbar-nav li {
  padding: 0px 15px;
}
.theme-header .navbar-expand-lg {
  padding: 20px;
}
.burger {
  position: relative;
  width: 22px;
  height: 14px;
  cursor: pointer;
  display: none;
}
.right-nav{
  align-items: center;
}
.burger:focus {
  outline: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: var(--themetextColor);
  -webkit-transition: all 0.2s, background 0s;
  -moz-transition: all 0.2s, background 0s;
  -ms-transition: all 0.2s, background 0s;
  -o-transition: all 0.2s, background 0s;
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:last-child {
  top: 12px;
}

.burger.show-x span:first-child {
  transform: rotate(45deg);
}

.burger.show-x span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.show-x span:last-child {
  transform: rotate(-45deg);
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
  top: 8px;
}
.theme-header .navbar-nav > li > .dropdown-menu {
  display: block;
  opacity: 0;
  transition: ease-out 0.3s;
  transform: translate(0%, -100%);
}

.theme-header .dropdown:hover .dropdown-menu {
 display: block;
}
.theme-header .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-header .dropdown:hover .h-link .material-icons,
.theme-header .dropdown:hover .search-btn .material-icons {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-header .navbar-expand-lg .navbar-nav .h-link:hover {
  color: var(--themeheadingColor);
  text-decoration: none;
}
.theme-header .product-dropdown:hover .search-btn svg{
  transform: rotate(180deg);
}
.theme-header .product-dropdown .search-btn svg{
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.search-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: var(--themeheadingColor);
  border: 1px solid var(--themeheadingColor);
  border-radius: 6px;
  transition: 0.5s all ease;
}
.product-dropdown .search-btn{
  border: 0px;
  color: var(--themetextColor);
  padding: 0;
}
.right-nav li .search-btn svg{
  margin-right: 7px;
}
.product-dropdown .search-btn svg{
  margin-left: 5px;
    font-size: 16px;
    opacity: .7;
}
.product-dropdown:hover .search-btn{
  color: var(--themeheadingColor) !important;
  background: transparent;
}
.search-btn:hover {
  background: var(--themeheadingColor);
  color: #e6e6e6 !important;
  text-decoration: none;
}
.search-btn .material-icons {
  font-size: 20px;
}
.theme-header .navbar-expand-lg .navbar-nav.center-nav li:last-child {
  padding-right: 0;
}
.theme-header .dropdown-item:focus,
.theme-header .dropdown-item:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: var(--themeheadingColor);
}
.theme-header .dropdown .dropdown-menu {
  border: 0;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}
/* Header-Section end */

.sub-tab-section{
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 12%), inset 0 -1px 0 0 #dadce0;
} 
.sub-tab-section .nav-tabs .nav-item.show .nav-link, 
.sub-tab-section .nav-tabs .nav-link.active {
  background-color: transparent;
  border-color: transparent;
  color: var(--themeheadingColor);
}
.sub-tab-section .nav-tabs .nav-link{
  padding: 12px 0px;
  font-size: 20px;
  font-weight: 600;
  color: var(--themetextColor);
  opacity: .7;
  transition: all .3s;
  border: 0;
}
.sub-tab-section .nav-tabs .nav-item {
  margin-bottom: 0px;
 
  position: relative;
}
.sub-tab-section .nav-tabs .nav-item:last-child{
  margin-left: 40px;
}
.sub-tab-section .nav-tabs .nav-item .nav-link::after{
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  background: var(--themeheadingColor);
   bottom: 4px;
  left: 0px;
  right: 0px;
  transition: all .3s;
}
.sub-tab-section .nav-tabs .nav-item .nav-link.active::after{
  width: 100%;
}
.sub-tab-section .nav-tabs .nav-item:hover .nav-link::after{
  width: 100%;
}
.sub-tab-section .nav-tabs .nav-item:hover .nav-link,
.sub-tab-section .nav-tabs .nav-item:focus .nav-link{
  opacity: 1;
  border: 0;
}

.sub-tab-section .nav-tabs {
  border-bottom: 0px;
}

/* Banner Section Css Start */
.banner-img{
  height: 560px;
  overflow: hidden;
}
.banner-section{
  position: relative;
}
.banner{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.banner-img::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.8) 17%, rgba(255,255,255,.1) 100%);
  top: 0;
  left: 0;
}
.banner-text {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.banner-text h1{
  font-size: 50px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}


.banner-text p{
    margin: 0px;
    color: #fff;
    font-size: 24px;
    line-height: 35px;
    font-weight: 300;
}
.banner-text span{
  margin-top: 20px;
    color: #fff;
    font-size: 24px;
    line-height: 35px;
    font-weight: 300;
}
.borrower-theme-btn{
  margin-top: 20px;
  margin-bottom: 20px;
}
.green-theme .green-btn{
  background: #45b269;
  border: 1px solid #45b269;
  color: #ffffff;
}
.green-theme .green-btn:hover{
  color: #45b269;
  border: 1px solid #ffffff;
  background: #ffffff;
}
.green-theme .green-btn-br{
  background: #fff;
  border: 1px solid #fff;
  color: #45b269;
}
.green-theme .green-btn-br:hover{
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
}
.blue-btn{
  color: #fff;
  background: var(--themeheadingColor);
  padding: 5px 20px;
  border-radius: 3px;
  font-size: 18px;
  transition: all .3s;
  border: 1px solid var(--themeheadingColor);
}
.blue-btn:hover{
  color: var(--themeheadingColor);
  border: 1px solid #ffffff;
  background: #fff;
  text-decoration: none;
}
.blue-br-btn{
  color: #fff;
  background: var(--themeheadingColor);
  padding: 5px 20px;
  border-radius: 3px;
  font-size: 18px;
  transition: all .3s;
  border: 1px solid var(--themeheadingColor);
}
.blue-br-btn:hover{
  color: var(--themeheadingColor);
  border: 1px solid var(--themeheadingColor);
  background: transparent;
  text-decoration: none;
}
.blue-section h3{
  margin-bottom: 0px;
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  margin-top: 26px;
}
.blue-img{
  height: 300px;
  overflow: hidden;
  position: relative;
  }
  .blue-img::after {
    content: '';
    position: absolute;
    top: 0;
    background: rgb(0,131,192,.8);
    width: 100%;
    left: 0;
    height: 100%;
  }
  .blue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .blue-text{
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }


.blue-section{
    padding:0px 0px 25px 0px;
  position: relative;
}
.green-theme .green-section{
  position: relative;
}
.blue-section .container{
  display: flex;
 flex-direction: column;
}
.white-box{
  background: #fff;
  border-radius: 8px;
  padding: 22px 0px;
  width: 100%;
  position: absolute;
  top: -40px;
}
.white-box p{
    text-align: center;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}
.white-btn{
  color: var(--themeheadingColor);
  background: #fff;
  padding: 5px 15px;
  border: 1px solid #fff;
  border-radius: 3px;
  font-size: 18px;
  transition: all .3s;
}
.green-theme .green-white-btn:hover{
  color:#fff;
}
.green-theme .green-white-btn{
  color:#45b269;
}
.white-btn:hover{
  color:#fff;
  border: 1px solid #fff;
  background: transparent;
  text-decoration: none;
}
.view-img{
  width: 100%;
  height: 62px;
  overflow: hidden;
}
.slide-img{
  object-fit: contain;
  height: 100%;
}
.company-logo .owl-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.company-logo .owl-dots .owl-dot{
  width: 15px;
  height: 15px;
  border: 2px solid var(--themeheadingColor);
  border-radius: 50%;
  margin: 0px 5px;
  outline: 0;
}
.green-theme .company-logo .owl-dots .owl-dot{
  border: 2px solid #45b269;
}
.company-logo .owl-dots .owl-dot.active{
  background: var(--themeheadingColor);
}
.green-theme .company-logo .owl-dots .owl-dot.active{
  background: #45b269;
}

.company-logo{
  margin-top: 25px;
}
/* Banner Section Css Start */

/* Process Section Css Start  */

.process-section{
margin-top: 70px;
}
.zero-process h1{
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 40px;
  color: var(--themetextColor);
}
.zero-process p{
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 30px;
  color: #6D7278;
}

.count{
  width: 45px;
  height: 45px;
  border: 2px solid #6D7278;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
    left: -60px;
    background: #fff;
}
.h-line{
position: relative;
}
.count span{
font-size: 18px;
color: #6D7278;
font-weight: bold;
}
.count-process{
  position: relative;
}
.count-div{
  margin-top: 30px;
}
.count-text h4{
font-size:23px;
font-weight: bold;
color: var(--themeheadingColor);
margin-bottom: 12px;
}

.count-div::after{
  content: '';
  position: absolute;
  width: 3px;
  height: 70%;
  background: #6D7278;
  top: 0;
  left: -39px;
  z-index: -1;
}
.process-mobile{
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.view-mobile{
  width: 100%;
  height: 100%;
}

/* Process Section Css End  */

/* Finance Section Css Start */
.finance-section{
  padding: 50px 0px;
  margin-top: 70px;
  position: relative;
}
.f-card{
  background: #fff;
  border-radius: 8px;
 padding: 15px;
 height: 350px;
 box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
}
.f-card-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.quote-round{
  width: 50px;
  height: 50px;
  border-radius: 50%;
 background: #e9e9e9;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 0px 5px rgb(0 0 0 / 22%);
 position: relative;
 padding: 10px;
}
.quote-img{
  height: 100%;
}
.rating{
  display: flex;
  align-items: center;
}
.rating li{
margin: 0px 4px;
}
.star-img{
  height: 15px;
}
.user-info h4{
  font-size: 18px;
  font-weight: 700;
  color: #6d7278;
  margin-bottom: 0px;
  white-space: nowrap;
}
.user-info{
  margin-left: 12px;
}
.user-info span{
  font-size: 15px;
  font-weight: 400;
  color: #6d7278;
}
.f-card-contain p{
  margin-bottom: 0px;
  margin-top: 15px;
  font-size: 15px;
  color: var(--themetextColor);
}
.ln-finance-slider .owl-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.ln-finance-slider .owl-dots .owl-dot{
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0px 5px;
  outline: 0;
  }

.ln-finance-slider .owl-dots .owl-dot.active{
  background: #fff;
}
.finance-heading h1{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.finance-img{
height: 500px;
overflow: hidden;
position: relative;
}
.finance-img::after {
  content: '';
  position: absolute;
  top: 0;
  background: rgb(0,131,192,.8);
  width: 100%;
  left: 0;
  height: 100%;
}
.finance-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.finance-text{
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Finance Section Css End */

/* Gray Crad Section Css Start */
/* .gray-card-section{
  margin-top: 70px;
  background: var(--themeheadingColor);
  padding: 50px 0px;
} */
.gray-card-section{
  position: relative;
  margin-top: 70px;
}
.bottom-band-img{
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
}
.bottom-band-img::after{
  content: '';
  position: absolute;
  top: 0;
  background: rgb(0,131,192,.8);
width: 100%;
left: 0;
height: 100%;
}
.green-theme .bottom-band-img::after{
  background: rgb(69,178,105,.8);
}
.bottom-band-text{
  top:0px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
}
.absolute{
  position: absolute;
}
.bottom-band-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-para{
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.gray-card-btn{
  display: flex;
  justify-content: center;
}
.usefull-info{
  background: var(--themeheadingColor);
  padding: 30px 0px;
}
.step-by-step-tab ul{
  flex-direction: column;
  border: 0;
}

.step-tab{
  width: 60px;
  height: 60px;
  border: 2px solid #6d7278;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: #6d7278;
  position: absolute;
  background: #fff;
  z-index: 1;
}
.step-by-step-tab{
  position: relative;
}
.step-tab-details{
  padding-left: 75px;
}
.step-tab-details h4{
  font-size: 20px;
  font-weight: bold;
  color: var(--themeheadingColor);
  margin-bottom: 15px;
}
.step-tab-details p{
  font-size: 17px;
  margin: 0;
  color: #6d7278;
}
.step-by-step-tab .nav-tabs .nav-link{
  border: 0;
  padding: 0;
}
.step-by-step-tab .nav-tabs .nav-item{
  margin: 20px 0px;
  margin: 50px 0px;
}
.step-by-step-tab .nav-tabs .nav-item:first-child{
  margin: 0px;
}
.step-by-step-tab .nav-tabs .nav-item:last-child{
  margin: 0px;
}
.three-step-section {
margin-top: 70px;
}
.step-by-step-tab .nav-tabs .nav-item .nav-link.active.show:focus .step-tab-heading .step-tab{
  background: var(--themeheadingColor);
  color: #fff;
}
.step-by-step-tab .nav-tabs .nav-item .nav-link.active .step-tab-heading .step-tab{
  background: var(--themeheadingColor);
  color: #fff;
  transition: all .5s;
  border: 2px solid var(--themeheadingColor);
}
.top-bottom-br{
  position: relative;
}
.top-bottom-br::after{
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: #6d7278;
  top: 55px;
  bottom: 0;
  left: 30px;
}
.check-round{
  width: 31px;
  height: 31px;
  border: 2px solid var(--themeheadingColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.check-round svg{
  color: var(--themeheadingColor);
}
.step-listing li p{
  font-size: 18px;
  font-weight: 500;
  color: #6d7278;
  padding-left: 42px;
  padding-left: 42px;
  margin-bottom: 25px;
}
.step-listing li:last-child p{
margin: 0;
}
.step-listing li{
  position: relative;
}
.box{
   padding: 20px;
    border: 1px solid #6d7278;
    position: relative;
    height: 450px;
}
.step1-line::after{
  content: '';
  position: absolute;
  width: 50px;
  height: 1px;
  background:#6d7278;
  left: -51px;
  top: 20px;
}
.step1-line::before{
  content: '';
  position: absolute;
  height: 25px;
  width: 1px;
  background: #6d7278;
  left: -51px;
  top: 8px;
}
.step2-line::after{
  content: '';
  position: absolute;
  width: 50px;
  height: 1px;
  background: #6d7278;
  left: -51px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
.step2-line::before{
  content: '';
    position: absolute;
    height: 25px;
    width: 1px;
    background: #6d7278;
    left: -51px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}
.step3-line::after{
  content: '';
  position: absolute;
  width: 50px;
  height: 1px;
  background: #6d7278;
  left: -51px;
  bottom: 20px;
}
.step3-line::before{
  content: '';
  position: absolute;
  height: 25px;
  width: 1px;
  background: #6d7278;
  left: -51px;
  bottom: 8px;
}
.padder-left-60{
  padding-left: 60px;
}
.step-heading h1{
  font-size: 30px;
  margin-bottom: 42px;
  font-weight: 600;
  line-height: 40px;
  color: var(--themetextColor);
  text-align: center;
}
.step-btn{
margin-top: 50px;
}
/* Gray Crad Section Css Start */

/* Type Of Loan section Css Start */
.loan-type-img{
  height: 800px;
  overflow: hidden;
  position: relative;
  }
  .loan-type-img::after {
    content: '';
    position: absolute;
    top: 0;
    background: rgb(0,131,192,.8);
    width: 100%;
    left: 0;
    height: 100%;
  }
  .loan-type-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .loan-text{
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

.loan-type-section{
  margin-top: 70px;
  position: relative;
}
.loan-type-heading{
  text-align: center;
}
.loan-type-heading h1{
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 40px;
  color:#fff;
  text-align: center;
}
.loan-type-heading p{
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color:#fff;
  text-align: center;
  margin-bottom: 0px;
}
.loan-type-section .nav-tabs{
  border: 0px;
  background: #fff;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  margin-top: 30px;
}
.loan-type-section .nav-tabs .nav-item.show .nav-link, 
.loan-type-section .nav-tabs .nav-link.active{
  border: 0;
  background: #d8d8d8;
  color: var(--themeheadingColor);
  border-radius:6px;
}
.loan-type-section .nav-tabs .nav-link:focus, 
.loan-type-section .nav-tabs .nav-link:hover{
  border: 0;
}
.loan-type-section  .nav-tabs .nav-item{
  margin-bottom: 0px;
}
.loan-type-section .nav-tabs .nav-link{
  border: 0;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 27px;
}
.large-text{
  font-weight: bold;
  font-size: 20px;
  color: var(--themeheadingColor);
  margin-bottom: 3px;
}
.loan-box{
  padding: 30px;
  background: #fff;
  border-radius: 25px;
  margin-top: 20px;
}
.loan-info p{
color: #6d7278;
font-size: 17px;
font-weight: 400;
}
.loan-listing li{
  display: flex;
  align-items: flex-start;
  color: #6d7278;
font-size: 17px;
font-weight: 400;
margin: 12px 0px;
}
.loan-listing li .thumb svg{
  color: var(--themeheadingColor);
}
.loan-listing li .thumb {
  margin-right: 8px;
}
.loan-listing li:first-child{
  margin: 0;
}
.loan-right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
/* Type Of Loan section Css End */

/* faqs section Css Start */
.faqs-top-link{
  padding: 15px 0px;
  margin-bottom: 40px;
  background: #f5f5f5;
}
.faqs-top-link ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0px;
}
.faqs-top-link .nav-tabs .nav-item.show .nav-link, 
.faqs-top-link .nav-tabs .nav-link.active{
  background: transparent;
  border: 0px;
  color:var(--themeheadingColor);
}
.green-theme .faqs-top-link .nav-tabs .nav-item.show .nav-link, 
.green-theme .faqs-top-link .nav-tabs .nav-link.active{
  color:#45b269;
}
.faqs-top-link .nav-tabs .nav-link:focus, 
.faqs-top-link .nav-tabs .nav-link:hover{
  border: 0px;
}
.green-theme .faqs-top-link ul li a{
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  color:#6d7278;
  border: 0px;
}
.green-theme .faqs-top-link ul li a:hover,
.green-theme .faqs-top-link ul li a:focus{
  color:#45b269;
}
.faqs-top-link ul li a{
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  color:#6d7278;
  border: 0px !important;
}
.faqs-top-link ul li a:hover,
.faqs-top-link ul li a:focus{
  color:var(--themeheadingColor);
}
.faqs-section .card-header{
  background: transparent;
  border: 0px;
  padding: 25px 20px;
}
.faqs-section .card{
  border: 0px;
}

.faqs-section .btn-header-link{
  color: #6d7278;
  font-size: 20px;
  font-weight: bold;
  padding: 0px;
  width: 100%;
  text-align: inherit;
}
.faqs-section .btn-header-link:focus{
  box-shadow: none;
  color: var(--themeheadingColor);
}
.borrow-card-body p{
  color: #6d7278;
  font-size: 18px;
  font-weight: 500;
}
.faqs-section .card-body{
  padding: 5px 20px;
}
.btn-header-link  .plus-minus{
  width: 28px;
  height: 28px;
  border: 3px solid var(--themeheadingColor);
  border-radius: 50%;
 overflow: hidden;
 display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -26px;
}
.btn-header-link .plus-minus .plus
{
height: 16px;
}
.btn-header-link .plus-minus .minus{
  width: 16px;
}

.btn-header-link[aria-expanded="false"] .plus-minus .minus{
  display: none;
}
.btn-header-link[aria-expanded="true"] .plus-minus .minus{
  display: block;
}
.btn-header-link[aria-expanded="true"] .plus-minus .plus{
  display: none;
}
.faq-heading h1{
font-size: 30px;
margin-bottom: 25px;
font-weight: 600;
line-height: 40px;
color: var(--themetextColor);
text-align: center;
}
.borrow-card-body .inner-faq-text-bold{
  font-size: 18px;
  font-weight: bold;
  color: var(--themetextColor);
}
.faq-listing li{
  position: relative;
  color: #6d7278;
  margin: 8px 0px;
  font-weight: 500;
  font-size: 18px;
  padding-left: 20px;
}
.faq-listing{
  padding-left: 20px;
}
.faq-listing.blue-listing{
padding-left: 0px;
}
.faq-listing.blue-listing li:after{
  margin: 0;
  top: 10px;
}
.faq-listing.blue-listing li {
  padding-left: 25px;
}
.faq-listing li:after{
  content: '';
  position: absolute;
 font-size: 18px;
 width: 12px;
 height: 12px;
 border-radius: 50%;
 left: 0px;
 top: 0px;
 border: 1px solid #6d7278;
 bottom: 0px;
 margin: auto;
}
.table-div caption{
  caption-side: top;
  text-align: center;
  color: var(--themetextColor);
  font-weight: bold;
  font-size: 18px;
}
.table-div .table{
  border: 1px solid #dee2e6;
  width: 88%;
  margin: auto;
}
.table-div .table thead{
  background: var(--themeheadingColor);
}
.table-div .table thead tr th{
  color: #fff;
  border-right: 1px solid #dee2e6;
  font-size: 16px;
  font-weight: bold;
}
.table-div .table tbody tr th,
.table-div .table tbody tr td{
  border-right: 1px solid #dee2e6;
  font-size: 16px;
}
.table-div{
margin-bottom: 30px;
}
.faq-middle-text{
  font-size: 24px;
  color: var(--themeheadingColor);
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin: 8px 0px;
}
.green-theme .faq-middle-text{
  font-size: 24px;
  color: #45b269;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin: 8px 0px;
}
.blue-faq-link{
  color: var(--themeheadingColor);
}
.green-faq-link{
  color: #45b269;
}
/* faqs section Css End */
.green-band-section{
  position: relative;
}
.band-img{
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.green-theme .band-img::after {
  background: rgb(69,178,105,.8);
  content: '';
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
}
.band-img-text {
  top: 0px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
}
.band-img-text h2{
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
}
.band-img-text p{
  font-size: 20px;
  font-weight: 500;
  color: #fff;
 margin-bottom: 0px;
}

.green-band-section{
  margin-top: 70px;
}
.inner-text{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.green-inner-text{
  flex-direction: row;
  justify-content: space-around;
}
/* Origination Section Css Start */

.round-icon{
  width: 60px;
  height: 60px;
  background: #e7ffef;
  box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ans-round-icon{
  width: 60px;
  height: 60px;
  background: #e7ffef;
  box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 10px;
}
.ans-info{
  padding-left: 80px;
}
.o-icon{
width: 100%;
height: 40px;
}
.origination-listing li{
display: flex;
align-items: center;
margin: 30px 0px;
}
.origination-listing li .icon-disc{
  margin-left: 15px;
}
.origination-listing li .icon-disc p{
  margin: 0;
  font-size: 18px;
  color: #6d7278;
}
.origination-section{
  margin-top: 70px;
}
.origination-heading h1 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 40px;
  color: var(--themetextColor);
  text-align: center;
}
.ans-box{
  padding: 20px;
  background: #f5f5f5;
  width: calc(100% - 110px);
  position: relative;
}
.ans-box::after{
  content: '';
  position:absolute;
  width: 3px;
  height: 100%;
  background: #45b269;
  left: 0;
  top: 0;
}
.ans-icon{
width: 100%;
height: 100%;
}
.ans-info p{
font-size: 17px;
color: #6d7278;
}
.ans-info span{
  font-size: 16px;
color: #6d7278;
}
/* Origination Section Css End */

/* Green Theme Css Start */
.green-theme .count-text h4{
  color: #45b269;
}
.count-text p{
  color: #6D7278;
}
.green-theme .count{
  border: 2px solid #45b269;
}
.green-theme .count span {
  color: #45b269;
}
.green-theme .count-div::after{
  background: #45b269;
}
.green-theme .finance-section{
  background: #45b269;
}
.green-theme .step-by-step-tab .nav-tabs .nav-item .nav-link.active .step-tab-heading .step-tab{
  background: #45b269 !important;
}
.green-theme .step-tab{
  border: 2px solid #45b269;
  color: #45b269;
}
.green-theme .top-bottom-br::after{
  background: #45b269;
}
.green-theme .step-tab-details h4{
  color: #45b269;
}
.green-theme .box {
  background: #effff4;
  border: 1px solid #45b269;
}
.green-theme .check-round{
  border: 2px solid #45b269;
}
.green-theme .check-round svg{
  color: #45b269;
}
.green-theme .step1-line::before,
.green-theme .step2-line::before,
.green-theme .step3-line::before{
  background: #45b269;
}
.green-theme .step1-line::after,
.green-theme .step2-line::after,
.green-theme .step3-line::after{
  background: #45b269;
}
.green-theme .loan-type-section{
  background: #45b269;
}
.green-theme .loan-type-section .nav-tabs .nav-item.show .nav-link, 
.green-theme .loan-type-section .nav-tabs .nav-link.active{
  background: #45b269;
}
.green-theme a:hover{
  color: #45b269;
}
.green-theme .large-text{
  color: #45b269;
}
.green-theme .loan-listing li .thumb svg{
  color: #45b269;
}
.green-theme .faqs-section .btn-header-link{
  color: #6d7278;
}
.green-theme .faqs-section .btn-header-link:focus{
  color: #45b269;
}
.green-theme .btn-header-link .plus-minus{
  border: 3px solid #45b269;
}
.green-theme .gray-card-section {
  margin-top: 70px;
  background: #45b269;
}
.green-img{
  height: 230px;
  overflow: hidden;
  position: relative;
  }
  .green-img::after {
    content: '';
    position: absolute;
    top: 0;
    background: rgb(69,178,105,.8);
    width: 100%;
    left: 0;
    height: 100%;
  }
  .green-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .green-text{
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
/* Green Theme Css End */
/* Footer Section Css Start */
.inner-footer .col-2{
  display: flex;
  justify-content: end;
}
.footer-section {
  border-top: 5px solid #1fac4b;
}
.footer-list li a svg{
margin-right: 5px;
}
.footer-list li a.facebook svg,
.footer-list li a.twitter svg,
.footer-list li a.youtube svg{
  margin-right: 0px;
}
.top-footer {
  background-color: var(--themeFooterBgColor);
  padding: 30px 15px;
}
.col4{
  max-width: 16%;
}
.footer-large-text {
  color: #757575;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-list li a {
  color: #eeeded;
  font-size: 16px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.device-img li a img {
  margin: 5px 0 0;
}
.bottom-footer {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  color:#FFF;
  background: var(--themeFooterBgColor);
}
.bottom-footer  span{
  font-size: 18px;
  color: #757575;
}

.footer-list li:hover a {
  color: var(--themeheadingColor);
}
.footer-list li:hover a.none-hover{
  color: #fff;
}
.footer-list li a.none-hover{
text-decoration: none;
}
.footer-list li:hover .material-icons {
  color: var(--themeheadingColor);
}
.footer-list li {
  display: flex;
  align-items: center;
  margin: 10px 0px;
}
.footer-list li .material-icons {
  color: white;
}
.footer-list .social-link {
  display: flex;
  align-items: center;
}
.social-link li a.twitter {
  margin: 0px 10px;
}
.social-link li a:hover svg {
  color: white;
}
.social-link li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
}
.social-link li a svg {
  color: var(--themetextColor);
  font-size: 15px;
}
.social-link li a:hover.facebook {
  background: #3b5998;
}
.social-link li a:hover.twitter {
  background: #00aced;
}
.social-link li a:hover.youtube {
  background: #bb0000;
}
/* Footer Section Css End */


#top-to-bottom {
  display: inline-block;
  background-color: #ffc107;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-to-bottom svg{
  font-size: 25px;
  color: #fff; 
}
#top-to-bottom:hover {
  cursor: pointer;
  background-color: #1fac4b;
}
#top-to-bottom:active {
  background-color: #555;
}
#top-to-bottom.show {
  opacity: 1;
  visibility: visible;
}
.whats-up-btn{
  width: 50px;
  height: 50px;
  background: #25d366;
  position: fixed;
  bottom: 0px;
  right: 30px;
  top: 0;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(270deg);
  z-index: 99999;
  transition: all .3s;
  box-shadow: 0 0px 5px rgb(0 0 0 / 20%)
}
.whats-up-btn:hover{
  background: #fff;
  
}
.green-theme .text{
  text-align: left;
}
.whats-up-btn:hover svg{
  color: #25d366;
}
.whats-up-btn svg{
  color: #fff;
  font-size: 25px;
}
/* Responsive Css Start */
@media screen and (max-width: 1100px) {

  .theme-header .navbar-expand-lg .navbar-nav.center-nav {
    flex-direction: column;
  }
  .theme-header .navbar-expand-lg .navbar-nav li {
    padding: 10px 0px;
}

  .theme-header .burger {
    display: block;
  }
  .burger.show-x .bar:first-of-type {
    transform: translate(-50%, 50%) rotate(225deg);
  }
  .burger.show-x .bar:last-of-type {
    transform: translate(-50%, -150%) rotate(-225deg);
  }
  .theme-header .navbar-collapse {
    background-color: #fff;
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
    flex-direction: column;
    text-align: center;
    position: fixed;
    top: 80px;
    right: 0;
    transform: translateX(-120%);
    width: 100%;
    transition: transform 0.3s ease-in;
    z-index: 100;
    height: 100%;
    border-top: solid 1px #ddd;
  }
  .theme-header .navbar-collapse.show {
    transform: translateX(0);
    padding-top: 30px;
  }
  
}
@media screen and (min-width: 200px) and (max-width: 767px) {
  .blue-section{
    padding: 0;
  }
  .finance-section {
    padding: 0px;
  }
  .f-card {
    height: 300px;
  }
  .sub-tab-section.is-sticky {
    top: 90px !important;
  }
  .brand-logo {
    height: 40px;
  }

  .footer-list {
    margin-bottom: 20px;
  }
  .footer-list:last-child {
    margin-bottom: 0;
  }
  .footer-large-text {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .bottom-footer {
    text-align: center;
  }
  .container-1920 {
    width: 100%;
  }
  .theme-header .navbar-nav > li > .dropdown-menu.show {
    display: block;
  }
  .theme-header .navbar-nav > li > .dropdown-menu {
    display: none;
  }
  .navbar-nav.right-nav {
    align-items: center;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    justify-content: center;
  }
  .top-footer {
    background-color: var(--themeFooterBgColor);
    padding: 30px;
  }
  .inner-footer .col{
    flex-basis: auto;
      flex-grow: 0;
    max-width: inherit;
    margin: 10px 0px;
  }
  .banner-img {
    height: 430px;
  }
  .banner-text h1 {
    font-size: 40px;
  }
  .white-box {
    padding: 22px 22px;
    width: 94%;
  }
  .white-box p {
    font-size: 17px;
  }
  .blue-section h3 br{
    display: none;
  }
  .blue-section h3 {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-top: 14px;
  }
  .borrower-theme-btn {
    margin-bottom: 0px;
  }
  .process-mobile {
    margin-top: 30px;
  }
  .step1-line::before,
  .step1-line::after,
  .step2-line::before,
  .step2-line::after,
  .step3-line::before,
  .step3-line::after
  {
    width: 0px;
  }
  .padder-left-60 {
    padding-left: 15px;
  }
  .box {
    margin-top: 30px;
    height: auto;
  }
  .step-listing li p {
    font-size: 16px;
  }
  .faqs-top-link ul {
    flex-direction: column;
  }
  .faqs-section .card-header {
       padding: 15px 0px 15px 35px;
 }
 .faqs-section .btn-header-link {
  font-size: 18px;
  white-space: inherit;
 }
 .btn-header-link .plus-minus {
  left: 0px;
 }
 .card-para {
  margin: 20px 0px;
  text-align: center;
 }
 .gray-card-section .row .col-md-12{
  display: flex;
  justify-content: center;
 }
 .ans-box {
  width: calc(100% - 0px);
 }
 .bottom-band-img {
  height: 250px;
 }
 .gray-card-section .bottom-band-text .row {
  padding: 20px 0px;
 }
 .loan-type-img {
  height: 1500px;
 }
 .whats-up-btn {
  top: inherit;
  bottom: 0px;
  right: 10px;
  bottom: 105px;
 }
 #top-to-bottom {
  right: 15px;
 }
 .green-inner-text{
  flex-direction: column;
 }
 .band-img-text h2 {
  text-align: center;
 }
 .band-img-text p{
   text-align: center;
 }
 .faq-listing li:after {
  top: 10px;
  margin: 0px;
}
.loan-right {
  align-items: flex-start;
}
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .loan-right {
    align-items: flex-start;
  }
  .faq-listing li:after {
    top: 10px;
    margin: 0px;
  }
  .inner-footer .col{
    flex-basis: auto;
      flex-grow: 0;
    max-width: inherit;
    margin: 10px 0px;
  }
  
  .container-1920 {
    width: 100%;
  }
  .theme-header .navbar-nav > li > .dropdown-menu.show {
    display: block;
  }
  .theme-header .navbar-nav > li > .dropdown-menu {
    display: none;
  }
  .theme-header .navbar-expand-lg .navbar-nav li {
    padding: 10px 20px;
  }
  .navbar-nav.right-nav {
    align-items: center;
  }

  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    justify-content: center;
  }
  .top-footer {
    background-color: var(--themeFooterBgColor);
    padding: 30px;
  }
  .theme-header .navbar-collapse {
    top: 90px;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    font-size: 20px;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link .material-icons,
  .search-btn .material-icons {
    font-size: 30px;
  }
  .theme-header .dropdown-item {
    font-size: 20px;
  }
}

@media screen and (min-width: 1061px) and (max-width: 1370px) {
.bottom-footer .row{
    margin-left: 40px;
    }
  .container-1920 {
    width: 100%;
    padding: 0px 30px;
  }
  .theme-header .navbar-expand-lg {
    padding-left: 0px;
    padding-right: 0px;
  }
  .inner-footer {
    margin-left: 40px;
  }
  .footer-list li a {
    font-size: 13px;
  }
  .footer-large-text {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .bottom-footer span {
    font-size: 16px;
  }
  .zero-process h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .zero-process p {
      font-size: 17px;
      line-height: 26px;
  }
  .count-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .h-line.mt-5{
    margin-top: 1.5rem !important;
  }
  .process-mobile {
    height: 470px;
  }
  .count-div::after {
    height: 71%;
  }
  .count-div.mt-5.mb-5{
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .star-img {
    height: 12px;
 }
 .f-card {
  height: 310px;
 }
 .user-info h4 {
  font-size: 17px;
 }
 .step-listing{
   width: 85%;
 }
 .white-box p {
  font-size: 24px;
 }
 .step1-line::after,
 .step2-line::after,
 .step3-line::after {
  width: 80px;
  left: -80px;
 }
 .step1-line::before
  {
  height: 30px;
  left: -80px;
  top: 6px;
 }
 .step2-line::before {
  height: 30px;
  left: -80px;
  top: 0px;
 }
 .step3-line::before {
  height: 30px;
  left: -80px;
  bottom: 5px;
 }
 .card-para {
  font-size: 19px;
 }
 .faqs-section {
  margin-top: 0px;
}
}

/* Responsive Css Start */
