/*--------------------------------------------------------------
# Custom Styles
--------------------------------------------------------------*/
/* General */
body {
  font-family: "Poppins", sans-serif;
  color: #2e2e2d;
}

a {
  color: #009974;
  text-decoration: none;
}

a:hover {
  color: #0d5747;
  text-decoration: none;
}

.head-text {
  color: #2e2e2d;
  line-height: 1;
  letter-spacing: 2px;
  font-size: 57px;
  padding: 20px 0;
}

.head-text-other {
  color: #2e2e2d;
  line-height: 1;
  letter-spacing: 2px;
  font-size: 36px;
  padding: 20px 0;
  text-transform: uppercase;
}

p.p-text {
  line-height: 1.9;
  font-weight: 400;
  font-size: 17px;
  color: #999;
}

.more-btn {
  padding: 15px 30px;
  font-size: 12px;
  border-width: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 50px;
  background-color: #0d5747;
  color: #fff;
}
.more-btn:hover {
  background-color: #2c624b;
  color: #fff;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #009974;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Header */
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
#header .logo img {
  max-height: 60px;
}
#header .logo.logo-color {
  display: none;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #fff;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}
#header.header-scrolled .logo.logo-white,
#header.header-inner-pages .logo.logo-white {
  display: none;
}
#header.header-scrolled .logo.logo-color,
#header.header-inner-pages .logo.logo-color {
  display: block;
}
#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus,
#header.header-inner-pages .navbar a,
#header.header-inner-pages .navbar a:focus {
  color: #000;
}
#header.header-scrolled .navbar a:after,
#header.header-scrolled .navbar a:focus:after,
#header.header-inner-pages .navbar a:after,
#header.header-inner-pages .navbar a:focus:after {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: -10px;
  left: calc(50% - 5px);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header.header-scrolled .navbar a:hover,
#header.header-scrolled .navbar a:focus:hover,
#header.header-inner-pages .navbar a:hover,
#header.header-inner-pages .navbar a:focus:hover {
  color: #009974;
}
#header.header-scrolled .navbar a:hover:after,
#header.header-scrolled .navbar a:focus:hover:after,
#header.header-inner-pages .navbar a:hover:after,
#header.header-inner-pages .navbar a:focus:hover:after {
  bottom: 0;
  background: #000;
}
#header.header-scrolled .navbar a.active,
#header.header-scrolled .navbar a:focus.active,
#header.header-inner-pages .navbar a.active,
#header.header-inner-pages .navbar a:focus.active {
  color: #000;
}
#header.header-scrolled .navbar .mobile-nav-toggle,
#header.header-inner-pages .navbar .mobile-nav-toggle {
  color: #0d5747;
}
#header.header-scrolled .navbar a.account,
#header.header-inner-pages .navbar a.account {
  border: 2px solid #000;
}
#header.header-scrolled .navbar .account:hover,
#header.header-scrolled .navbar .account:focus:hover,
#header.header-inner-pages .navbar .account:hover,
#header.header-inner-pages .navbar .account:focus:hover {
  color: #000;
}
#header.header-scrolled .navbar .account:hover:after,
#header.header-scrolled .navbar .account:focus:hover:after,
#header.header-inner-pages .navbar .account:hover:after,
#header.header-inner-pages .navbar .account:focus:hover:after {
  background: transparent;
}
#header.header-scrolled .navbar-mobile a,
#header.header-scrolled .navbar-mobile a:focus,
#header.header-inner-pages .navbar-mobile a,
#header.header-inner-pages .navbar-mobile a:focus {
  color: #000;
}
#header.header-scrolled .navbar-mobile a:hover,
#header.header-scrolled .navbar-mobile a:focus:hover,
#header.header-inner-pages .navbar-mobile a:hover,
#header.header-inner-pages .navbar-mobile a:focus:hover {
  color: #009974;
}
#header.header-scrolled .navbar-mobile a:hover:after,
#header.header-scrolled .navbar-mobile a:focus:hover:after,
#header.header-inner-pages .navbar-mobile a:hover:after,
#header.header-inner-pages .navbar-mobile a:focus:hover:after {
  bottom: 0;
  background: transparent;
}
#header.header-scrolled .navbar-mobile a.account,
#header.header-inner-pages .navbar-mobile a.account {
  border: 0;
}

#header.other-page {
  background: #fff;
}
#header.other-page .logo.logo-white {
  display: none;
}
#header.other-page .logo.logo-color {
  display: block;
}
#header.other-page .navbar ul li.nav-link.active a.nav-link {
  color: #009974;
}
#header.other-page .navbar a,
#header.other-page .navbar a:focus {
  color: #000;
}
#header.other-page .navbar a:after,
#header.other-page .navbar a:focus:after {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: -10px;
  left: calc(50% - 5px);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header.other-page .navbar a:hover,
#header.other-page .navbar a:focus:hover {
  color: #009974;
}
#header.other-page .navbar a:hover:after,
#header.other-page .navbar a:focus:hover:after {
  bottom: 0;
  background: #000;
}
#header.other-page .navbar a.active,
#header.other-page .navbar a:focus.active {
  color: #000;
}
#header.other-page .navbar .mobile-nav-toggle {
  color: #0d5747;
}
#header.other-page .navbar a.account {
  border: 2px solid #000;
}
#header.other-page .navbar .account:hover,
#header.other-page .navbar .account:focus:hover {
  color: #000;
}
#header.other-page .navbar .account:hover:after,
#header.other-page .navbar .account:focus:hover:after {
  background: transparent;
}
#header.other-page .navbar-mobile a,
#header.other-page .navbar-mobile a:focus {
  color: #000;
}
#header.other-page .navbar-mobile a:hover,
#header.other-page .navbar-mobile a:focus:hover {
  color: #009974;
}
#header.other-page .navbar-mobile a:hover:after,
#header.other-page .navbar-mobile a:focus:hover:after {
  bottom: 0;
  background: transparent;
}
#header.other-page .navbar-mobile a.account {
  border: 0;
}

/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar ul li {
  position: relative;
  padding-right: 4px;
}
.navbar .account,
.navbar .account:focus {
  padding: 6px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #0d5747;
  background-color: #fff;
  border: 2px solid #fff;
  font-size: 14px;
}
.navbar .account:hover,
.navbar .account:focus:hover {
  color: #fff;
}
.navbar .account:hover:after,
.navbar .account:focus:hover:after {
  background: transparent;
}
.navbar a,
.navbar a:focus {
  align-items: center;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  display: flex;
}
.navbar a:after,
.navbar a:focus:after {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: -10px;
  left: calc(50% - 5px);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.navbar a i,
.navbar a:focus i {
  font-size: 30px;
  line-height: 0;
  margin-right: 4px;
}
.navbar .active {
  color: #009974 !important;
}
.navbar a:hover,
.navbar .active:focus,
.navbar .li:hover > a {
  color: #fff;
}
.navbar a:hover:after,
.navbar .active:focus:after,
.navbar .li:hover > a:after {
  bottom: 0;
  background: #fff;
}
.navbar .dropdown .dropdown-menu {
  background-color: #009974 !important;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #009974;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(13, 87, 71, 0.59);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #2e2e2d;
  margin: 15px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #0d5747;
}

.navbar-mobile .account,
.navbar-mobile .account:focus {
  margin: 15px;
  color: #2e2e2d;
  padding: 10px 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #009974;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* Banner */
#banner {
  width: 100%;
  height: 62vh;
  background: url(../img/home-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#banner .container {
  padding-top: 72px;
}
#banner .container h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}
#banner .container h2 {
  color: #fff;
  font-size: 24px;
  width: 420px;
  text-align: right;
}
#banner .container h2 span {
  display: block;
  color: #04deac;
  line-height: 44px;
}

.other-banner {
  margin-top: 90px;
  width: 100%;
  height: 62vh;
}
.other-banner .vpm {
  font-size: 500px;
  color: rgba(255, 255, 255, 0.01);
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
  opacity: 0.5;
  line-height: 1.2;
  margin-top: -20% !important;
  width: 100%;
  position: absolute;
}
.other-banner h1 {
  font-size: 57px;
  color: #fff;
}
.other-banner h4 {
  font-size: 20px;
  color: #fff;
}

.about-page {
  background: url(../img/about-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.become-page {
  background: url(../img/becomea-partner-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lending-page {
  background: url(../img/lending-prog.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-page {
  background: url(../img/contct-banner-s1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing-page {
  background: #0d5747;
  height: 30vh;
}

@media (max-width: 1200px) {
  .other-banner .vpm {
    font-size: 115px;
    width: 90%;
  }
}
@media (max-width: 991px) {
  #banner {
    height: 100vh;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #banner h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #banner h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .other-banner .vpm {
    font-size: 115px;
    width: 90%;
  }
}
/* Arrow Text */
.arrow-text {
  background-color: #345849;
  padding: 70px 0;
}
.arrow-text h1 {
  color: #fff;
  font-size: 30px;
  text-align: left;
}
.arrow-text p {
  font-size: 17px;
  color: #fff;
  line-height: 2;
}
.arrow-text a.play-btn {
  position: relative;
  margin-bottom: 90px;
}
.arrow-text a.play-btn span::before {
  position: absolute;
  top: 5px;
  left: 29px;
  content: "";
  width: 50px;
  height: 50px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  opacity: 0;
  animation: sdb03 3s infinite;
  box-sizing: border-box;
}
@keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.arrow-text a.play-btn i {
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  top: 35px;
  left: 25px;
  position: relative;
}

/* Company Overview */
.company-overview {
  padding: 70px 0 0 0;
  background-color: #fff;
}

/* Benefit */
.benefit {
  padding: 70px 0 0 0;
  background-color: #fff;
}
.benefit h1 {
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: #0d5747;
}
.benefit h2 {
  font-size: 17px;
  color: #009974;
  font-weight: 700;
}
.benefit p.p-text span {
  color: #009974;
}
.benefit img {
  width: 80px;
  height: auto;
}
.benefit .title {
  color: #2e2e2d;
  padding: 20px 0;
  font-size: 23px;
  line-height: 1.2;
}

/* Leadership */
.leadership {
  padding: 70px 0 0 0;
  background-color: #fff;
}
.leadership h1 {
  color: #0d5747;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 500;
}
.leadership p {
  line-height: 1.5;
  font-weight: 500;
  font-size: 16px;
  color: #0d5747;
}
.leadership .carousel {
  margin: 20px 0;
  display: flex;
}
.leadership .carousel h1 {
  font-size: 26px;
  color: #0a0a0a;
  letter-spacing: 0px;
  font-weight: 600;
}
.leadership .carousel h2 {
  color: #0d5747;
  line-height: 1.04;
  letter-spacing: 0.05px;
  font-weight: 500;
  font-size: 24px;
  padding: 10px 0;
}
.leadership .carousel p.p-text {
  line-height: 1.9;
  font-weight: 400;
  font-size: 17px;
  color: #999;
}
.leadership .carousel img {
  width: 100%;
}
.leadership .carousel .carousel-control-next,
.leadership .carousel .carousel-control-prev {
  width: 40px;
  height: 40px;
  line-height: 15px;
  border-radius: 50%;
  padding: 0;
  background: #446556;
  text-align: center;
  border: 0;
  transition: opacity 0.15s ease;
  position: relative;
  top: 80%;
  bottom: unset;
  z-index: unset;
  display: unset;
  opacity: 1;
}
.leadership .carousel .carousel-control-prev {
  margin-bottom: 10px;
}
.leadership .accordion .accordion-item .accordion-header button {
  color: #000;
  font-size: 22px;
}
.leadership .accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
}
.leadership .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #c2dfd3;
  color: #000;
}
.leadership .accordion .accordion-item .accordion-body {
  color: #999;
}
.leadership .accordion .accordion-item .accordion-body h1 {
  font-size: 22px;
  padding: 10px 0;
}
.leadership .accordion .accordion-item .accordion-body p {
  font-size: 17px;
  color: #999;
  text-align: justify;
}
.leadership .accordion .accordion-item .accordion-body li {
  font-size: 17px;
  text-align: justify;
}
.leadership .accordion .accordion-item .accordion-body img {
  width: 100%;
  height: auto;
}

/* Get Touch */
.get-touch {
  padding: 15px;
  background-image: url("../img/get-touch.png");
}
.get-touch h1 {
  font-size: 24px;
  color: #fff;
}
.get-touch p {
  padding: 10px 0;
  line-height: 2;
  letter-spacing: 2px;
  color: #a3b5ae;
  font-size: 24px;
  margin-bottom: 0;
}
.get-touch i {
  font-size: 54px;
  color: #fff;
}

/* Footer */
footer {
  background-color: #f9f9f9;
  padding: 50px 0 10px 0;
  margin-top: 20px;
}
footer .footer-top {
  border-bottom: 1px solid #e2e2e2;
}
footer .footer-top .logo img {
  width: 150px;
  height: auto;
}
footer .footer-top .logo p {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.5;
}
footer .footer-top ul.footer-menu {
  list-style: none;
  padding-left: 0;
}
footer .footer-top ul.footer-menu li {
  padding: 2px;
}
footer .footer-top ul.footer-menu li a {
  font-size: 14px;
  color: #335848;
}
footer .footer-top ul.footer-menu li a:hover {
  color: #0d5747;
}
footer .footer-top .address h2 {
  font-size: 16px;
  color: #335848;
}
footer .footer-top .address address {
  margin-bottom: 2px;
  color: #000;
  font-size: 14px;
}
footer .footer-top .address a {
  color: #335848;
}
footer .footer-top .mail h2 {
  font-size: 16px;
  color: #335848;
}
footer .footer-top .mail p {
  color: #000;
  font-size: 14px;
}
footer .footer-top .subscribe-form {
  display: flex;
}
footer .footer-top .subscribe-form input {
  padding: 3px 10px 3px 26px;
  width: calc(100% - 54px);
  height: 45px;
  border: 0;
  border-radius: 0;
  background: #fff;
  font-size: 15px;
}
footer .footer-top .subscribe-form input:focus {
  color: #111;
  border: 0;
  box-shadow: 0;
  outline: none;
}
footer .footer-top .subscribe-form button {
  top: 0;
  right: 0;
  padding: 0;
  height: 45px;
  color: #fff;
  width: 80px;
  font-size: 10px;
  border-radius: 0;
  background-color: #345849;
  border-color: #345849;
}
footer .footer-bottom {
  padding-top: 20px;
  text-align: center;
}
footer .footer-bottom p {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}
footer .footer-bottom .link a {
  color: #335848;
}
footer .footer-bottom .link span {
  padding: 0 15px;
}

/* Other Page */
.our-values {
  padding: 70px 0 0 0;
  background-color: #fff;
}
.our-values .flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}
.our-values .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.our-values .flip-card .flip-card-inner .flip-card-front,
.our-values .flip-card .flip-card-inner .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
}
.our-values .flip-card .flip-card-inner .flip-card-front {
  background: #fff;
  color: black;
  z-index: 2;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our-values .flip-card .flip-card-inner .flip-card-front h1 {
  color: #000;
  font-size: 20px;
}
.our-values .flip-card .flip-card-inner .flip-card-back {
  background: #0d5747;
  color: white;
  transform: rotateY(180deg);
  z-index: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our-values .flip-card .flip-card-inner .flip-card-back h1 {
  color: #fff;
  font-size: 20px;
  padding-bottom: 20px;
}
.our-values .flip-card .flip-card-inner .flip-card-back p {
  font-size: 14px;
  color: #c7c6c6;
}
.our-values .flip-card:focus {
  outline: 0;
}
.our-values .flip-card:hover .flip-card-inner, .our-values .flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}

.about-us {
  padding: 70px 0 0 0;
  background-color: #fff;
}
.about-us p {
  text-align: justify;
}

.vista-point {
  padding: 70px 0 0 0;
  background-color: #fff;
}
.vista-point h3 {
  font-size: 17px;
  text-align: justify;
  line-height: 1.5;
  color: #000;
}
.vista-point p.p-text {
  text-align: justify;
}

.correspondent {
  padding: 70px 0 0 0;
  background-color: #fff;
}
.correspondent ul {
  margin-top: 15px;
}
.correspondent ul li {
  line-height: 1.6;
  color: #999;
  padding-bottom: 20px;
}

.green-text {
  padding: 70px 0 0 0;
}
.green-text .box {
  background-color: #0d5747;
  padding: 35px 25px;
}
.green-text .box h2 {
  font-size: 36px;
  color: #fff;
}
.green-text .box h3 {
  font-size: 24px;
  color: #969696;
  padding: 20px 0;
}
.green-text .box p {
  font-size: 16px;
  color: #fff;
  min-height: 288px;
  margin-bottom: 40px;
}
.green-text .box p span {
  color: #04deac;
}
.green-text .box ul li {
  font-size: 16px;
  color: #fff;
  padding: 4px 0;
}

@media (max-width: 768px) {
  .green-text .box p {
    min-height: auto;
  }
}
.address {
  padding: 20px 0;
}
.address .icon {
  margin-right: 15px;
}
.address .icon i {
  font-size: 42px;
  color: #0d5747;
}
.address .text p {
  color: #999;
  list-style: none;
  font-size: 16px;
  line-height: 20px;
}
.address .text p a {
  color: #999;
}

.contact-form {
  padding: 20px 0;
}
.contact-form form {
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.12);
}
.contact-form form .form-control {
  padding: 12px;
}
.contact-form form .form-control:focus {
  box-shadow: none;
  border-color: #0d5747;
}

/* Pricing */
.Pricing .container-fluid {
  padding-right: 100px;
  padding-left: 100px;
}
.Pricing .nextPricer-container .cal-header {
  font-size: 14px;
}
.Pricing .nextPricer-container .bg-blue-bg {
  background-color: #F6FAFE;
}
.Pricing .nextPricer-container .bg-white-color {
  background-color: #ffffff;
}
.Pricing .nextPricer-container .pricingrequired {
  font-weight: normal;
  padding-left: 2px;
  color: #04deac;
}
.Pricing .nextPricer-container .input-field {
  display: block;
  width: 100%;
  padding: 4px 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #6e6c6c;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #00c4b3;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.Pricing .nextPricer-container .content-box {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px 3px;
  width: 100%;
  height: auto;
  padding: 10px 10px 10px 10px;
  font-size: 12px;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px #e2eaf2;
  border-radius: 15px;
  margin-bottom: 20px;
}
.Pricing .nextPricer-container .content-title {
  color: #2acfc1;
  width: 100%;
  margin-bottom: 6px;
  margin-top: -6px;
  font-size: 17px;
  font-weight: 700;
}
.Pricing .nextPricer-container .switch-control span {
  font-size: 12px;
  padding: 4px 10px 0 0;
}
.Pricing .nextPricer-container .switch-control .switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 27px;
}
.Pricing .nextPricer-container .switch-control .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.Pricing .nextPricer-container .switch-control .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.Pricing .nextPricer-container .switch-control .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 6px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
.Pricing .nextPricer-container .switch-control input:checked + .slider {
  background-color: #009974;
}
.Pricing .nextPricer-container .switch-control input:checked + .slider:before {
  transform: translateX(26px);
}
.Pricing .nextPricer-container .switch-control input:focus + .slider {
  box-shadow: 0 0 1px #009974;
}
.Pricing .nextPricer-container .switch-control .slider.round {
  border-radius: 26px;
}
.Pricing .nextPricer-container .switch-control .slider.round:before {
  border-radius: 50%;
}
.Pricing .nextPricer-container table tr td.price-loan-1 {
  width: 25%;
}
.Pricing .nextPricer-container table tr td.price-loan-2 {
  width: 25%;
}
.Pricing .nextPricer-container table tr td.price-loan-3 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.price-loan-4 {
  width: 35%;
}
.Pricing .nextPricer-container table.nextUs-table-no-border {
  border-collapse: collapse;
  width: 100%;
  font-size: 10px;
  color: #ababab;
  border: none;
}
.Pricing .nextPricer-container table.nextUs-table-no-border tr td {
  padding: 4px 6px;
}
.Pricing .nextPricer-container table.nextUs-table-border {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  color: #444444;
  font-weight: bold;
  border: 1px solid #99C1D8;
}
.Pricing .nextPricer-container table.nextUs-table-border tr {
  border: none;
  background-color: #E5F3FB;
}
.Pricing .nextPricer-container table.nextUs-table-border tr td {
  padding: 2px 4px;
}
.Pricing .nextPricer-container table.nextUs-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  border: 1px solid #99C1D8;
}
.Pricing .nextPricer-container table.nextUs-table tr td {
  padding: 2px 6px;
}
.Pricing .nextPricer-container .text-red-color {
  color: #FC534F;
  font-size: 14px;
}
.Pricing .nextPricer-container .text-blue-primary {
  font-size: 9pt;
  color: #1e1545;
}
.Pricing .nextPricer-container .bg-b {
  background-color: #e5f3fb;
}
.Pricing .nextPricer-container .table-border {
  border: 1px solid #99C1D8;
}
.Pricing .nextPricer-container .table-border-right {
  border-right: 1px solid #99C1D8;
}
.Pricing .nextPricer-container .table-border-bottom {
  border-bottom: 1px solid #99C1D8;
}
.Pricing .nextPricer-container .table-border-top {
  border-top: 1px solid #99C1D8;
}
.Pricing .nextPricer-container table tr td.price-loan-1 {
  width: 20%;
}
.Pricing .nextPricer-container table tr td.price-loan-2 {
  width: 30%;
}
.Pricing .nextPricer-container table tr td.price-loan-3 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.price-loan-4 {
  width: 25%;
}
.Pricing .nextPricer-container table tr td.pl-information-1 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.pl-information-2 {
  width: 65%;
}
.Pricing .nextPricer-container table tr td.pl-information-3 {
  width: 20%;
}
.Pricing .nextPricer-container table tr td.dscr-information-1 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.dscr-information-2 {
  width: 65%;
}
.Pricing .nextPricer-container table tr td.dscr-information-3 {
  width: 20%;
}
.Pricing .nextPricer-container table tr td.asset1-information-1 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.asset1-information-2 {
  width: 65%;
}
.Pricing .nextPricer-container table tr td.asset1-information-3 {
  width: 20%;
}
.Pricing .nextPricer-container table tr td.asset2-information-1 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.asset2-information-2 {
  width: 49%;
}
.Pricing .nextPricer-container table tr td.asset2-information-3 {
  width: 12%;
}
.Pricing .nextPricer-container table tr td.asset2-information-4 {
  width: 12%;
}
.Pricing .nextPricer-container table tr td.asset2-information-5 {
  width: 12%;
}
.Pricing .nextPricer-container table tr td.bank-statement-1 {
  width: 7%;
}
.Pricing .nextPricer-container table tr td.bank-statement-2 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.bank-statement-3 {
  width: 14%;
}
.Pricing .nextPricer-container table tr td.bank-statement-4 {
  width: 14%;
}
.Pricing .nextPricer-container table tr td.bank-statement-5 {
  width: 14%;
}
.Pricing .nextPricer-container table tr td.bank-statement-6 {
  width: 14%;
}
.Pricing .nextPricer-container table tr td.bank-statement-7 {
  width: 13%;
}
.Pricing .nextPricer-container table tr td.bank-statement-8 {
  width: 9%;
}
.Pricing .nextPricer-container table tr td.bank-adj-1 {
  width: 50%;
}
.Pricing .nextPricer-container table tr td.bank-adj-2 {
  width: 20%;
}
.Pricing .nextPricer-container table tr td.bank-adj-3 {
  width: 30%;
}
.Pricing .nextPricer-container table tr td.bank-info-1 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.bank-info-2 {
  width: 65%;
}
.Pricing .nextPricer-container table tr td.bank-info-3 {
  width: 20%;
}
.Pricing .nextPricer-container table tr td.bank-assets-1 {
  width: 15%;
}
.Pricing .nextPricer-container table tr td.bank-assets-2 {
  width: 49%;
}
.Pricing .nextPricer-container table tr td.bank-assets-3 {
  width: 14%;
}
.Pricing .nextPricer-container table tr td.bank-assets-4 {
  width: 10%;
}
.Pricing .nextPricer-container table tr td.bank-assets-5 {
  width: 12%;
}
.Pricing .nextPricer-container .input-lable {
  display: block;
  width: 100%;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #364750;
  background-color: transparent;
  background-clip: padding-box;
  border: 0;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.Pricing .nextPricer-container .input-field {
  display: block;
  width: 100%;
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 0;
  color: #6e6c6c;
  background-color: #ffd;
  background-clip: padding-box;
  border: 1px solid #00c4b3;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.Pricing .nextPricer-container .side-button-group .text {
  font-size: 12px;
  padding-bottom: 4px;
  color: #009974;
}
.Pricing .nextPricer-container .side-button-group button {
  margin-bottom: 10px;
  min-width: 150px;
}
.Pricing .nextPricer-container .side-button-group input {
  margin-bottom: 10px;
  min-width: 150px;
}
.Pricing .nextPricer-container .side-button-group .dropdown .dropdown-menu {
  width: 70%;
}
.Pricing .nextPricer-container .side-button-group .dropdown .dropdown-menu a.dropdown-item {
  font-size: 12px;
}
.Pricing .nextPricer-container .btn-nextUs {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.Pricing .nextPricer-container .btn-blue {
  color: #fff;
  background-color: #009974;
  border: 1px solid #0a0a0a;
}
.Pricing .nextPricer-container .btn-blue:hover {
  background-color: #0d5747;
}
.Pricing .nextPricer-container .btn-transparent {
  color: #0a0a0a;
  background-color: transparent;
  border: 1px solid #0a0a0a;
}
.Pricing .nextPricer-container .btn-transparent:hover {
  background-color: #2acfc1;
}
.Pricing .nextPricer-container .btn-yellow {
  color: #0a0a0a;
  background-color: #bcd5cf;
  border: 1px solid #0a0a0a;
}
.Pricing .nextPricer-container .btn-yellow:hover {
  background-color: #adc7c1;
}
.Pricing .nextPricer-container .btn-bluelight {
  color: #0a0a0a;
  background-color: #cfe1dd;
  border: 1px solid #0a0a0a;
}
.Pricing .nextPricer-container .btn-bluelight:hover {
  background-color: #009974;
}
.Pricing .nextPricer-container .pricer-btn-cal {
  min-width: 10rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  border: 1px solid #0d5747;
  background-color: #009974;
  font-size: 16px;
  border-radius: 6px;
}
.Pricing .nextPricer-container .q-btn-nextUs {
  min-width: 10rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  color: #0d5747;
  border: 1px solid #0d5747;
  background-color: #bcd5cf;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 6px;
}
.Pricing .nextPricer-container .dropdown-btn {
  top: 100%;
  z-index: 1000;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  color: #0d5747;
  list-style: none;
  background-clip: padding-box;
  border: 1px solid #0d5747;
}
.Pricing .nextPricer-container .form-control.lock-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 600;
  line-height: 0;
  color: #495057;
  background-color: #ffd;
  background-clip: padding-box;
  border: 1px solid #00c4b3;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.Pricing .nextPricer-container .divSecond {
  margin-top: 5%;
  background: #eafbfa;
  padding: 2px;
  box-shadow: 4px 4px 6px #ccc;
  border: 1px solid #ccc;
  font-weight: 600;
}
.Pricing .nextPricer-container .divSecond .header {
  color: #000;
  font-size: 20px;
  text-align: center;
}
.Pricing .nextPricer-container .divSecond table {
  width: 100%;
}
.Pricing .nextPricer-container .divSecond table tr td {
  padding: 8px 10px;
  color: #000;
}
.Pricing .nextPricer-container .divSecond input {
  width: 115px;
}
.Pricing .nextPricer-container .divSecond .input-field-w {
  display: block;
  width: 100%;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 0;
  color: #6e6c6c;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #00c4b3;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Login Page */
.login-page {
  margin-top: 90px;
  padding: 30px 0;
}
.login-page .head h2 {
  color: #2e2e2d;
  font-weight: bold;
  font-size: 22px;
  padding-bottom: 10px;
}
.login-page .head p {
  color: #2e2e2d;
  font-size: 14px;
  font-weight: 500;
}
.login-page .box {
  width: 100%;
  height: auto;
  padding: 40px;
  font-size: 12px;
  background-color: #ffffff;
  border: 0px solid #E2EAF2;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 15px 2px;
}
.login-page .box img.signup-img {
  border-radius: 10px;
}
.login-page .box form input.form-control {
  padding: 12px;
}
.login-page .box form input.form-control:focus {
  box-shadow: none;
  border-color: #0d5747;
}
.login-page .box form a.forgot {
  color: #009974;
  font-size: 14px;
}
.login-page .box form .sign-up {
  padding: 10px 0;
  font-size: 14px;
}
.login-page .box form .sign-term {
  font-size: 14px;
}
.login-page .box form .sign-term ul {
  padding-left: 10;
}
.login-page .box form .sign-term ul li {
  padding: 1px 0;
}/*# sourceMappingURL=style.css.map */