/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* .test {
  width: 10rem;
  height: 10rem;
} */
body {
  /* min-width: 1300px; */
  font-family: "Open Sans", sans-serif;
  /* overflow-x: scroll; */
}

a {
  color: #319237;
  text-decoration: none;
}

a:hover {
  color: #319237;
  text-decoration: none;
}

input {
  border: 0;
  outline: none;
  border: none;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

.btn-public {
  width: 14.875rem;
  height: 3.75rem;
  border-radius: 1.875rem;
  background-color: #78BA28;
  font-size: 1.75rem;
  text-align: center;
  line-height: 3.75rem;
  color: #fff;
}

.container-w {
  width: 82.5rem;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container-w {
    width: 90%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #319237;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 1.875rem);
  left: calc(50% - 1.875rem);
  border: 0.375rem solid #319237;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 3.75rem;
  height: 3.75rem;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  /* right: 0.9375rem;
  bottom: 0.9375rem; */
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #319237;
  /* width: 2.5rem; */
  /* height: 2.5rem; */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #319237;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
  box-sizing: border-box;
}

.boxshadow {
  box-shadow: 0 2px 0.75rem 0 rgba(0,0,0,.1);
}

#header .logo {
  display: flex;
  justify-content: center;
  font-size: 1.875rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  /* letter-spacing: 2px; */
  /* text-transform: uppercase; */
}

#header .logo .logo-text {
  padding-top: 1rem;
  padding-left: 1rem;
}
#header .logo .logo-text .logo-text_1 {
  font-size: 1.625rem;
}
#header .logo .logo-text .logo-text_2 {
  font-size: 1.125rem;
}

#header .logo img {
  width: 5rem;
  height: 5rem;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0 0.625rem 1.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #319237;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #333;
  font-size: 1.75rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #333;
}

@media (max-width: 1200px) {
  #header .logo .logo-text {
    padding-top: 1rem;
    padding-left: 1rem;
  }
  /* #header .logo .logo-text .logo-text_1 {
    font-size: 1.25rem;
  }
  #header .logo .logo-text .logo-text_2 {
    font-size: 0.875rem;
  } */
  
  #header .logo img {
    width: 3.75rem;
    height: 3.75rem;
  }

  .navbar a {
    font-size: 0.875rem;
    padding: 0.625rem 0 0.625rem 1.25rem;
  }
}

@media (max-width: 991px) {
  #header .logo .logo-text {
    padding-top: 1rem;
    padding-left: 1rem;
  }
  /* #header .logo .logo-text .logo-text_1 {
    font-size: 1rem;
  } */
  /* #header .logo .logo-text .logo-text_2 {
    font-size: 0.75rem;
  } */
  
  #header .logo img {
    width: 3.75rem;
    height: 3.75rem;
  }

  .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(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 3.4375rem;
  right: 0.9375rem;
  bottom: 0.9375rem;
  left: 0.9375rem;
  padding: 0.625rem 0;
  border-radius: 0.625rem;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  color: #319237;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #319237;
}

.navbar-mobile .getstarted {
  margin: 0.9375rem;
  color: #319237;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0.625rem 1.25rem;
  padding: 0.625rem 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0 0 1.875rem rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 12.5rem;
}

.navbar-mobile .dropdown ul a {
  padding: 0.625rem 1.25rem;
}

.navbar-mobile .dropdown ul a i {
  font-size: 0.75rem;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #319237;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
}

#hero .banner {
  width: 100%;
  height: 43.125rem;
  padding-top: 8rem;
  background: url('../img/banner.png');
  background-size: 100% 100%;
}

#hero .banner .banner-row {
  display: flex;
  justify-content: center;
}

#hero .banner .banner-row .banner-row-l {
  position: relative;
  width: 60%;
  padding-top: 3.4375rem;
  padding-right: 0.625rem;
  text-align: right;
  font-size: 2.25rem;
  font-weight: 600;
  color: #1D7022;
}

#hero .banner .banner-row .banner-row-l a {
  position: absolute;
  left: 22.25rem;
  bottom: 5.625rem;
  width: 26.3125rem;
  height: 7.8125rem;
}
#hero .banner .banner-row .banner-row-l a img {
  width: 100%;
  height: 100%;
}

#hero .banner .banner-row .banner-row-r {
  width: 40%;
  padding-left: 0.625rem;
}

#hero .banner .banner-row .banner-row-r .banner-r-box {
  width: 40.3125rem;
  height: 31.125rem;
  color: #2C8F32;
  font-size: 1.875rem;
  background: url('../img/banner-r-bg.png') no-repeat;
}

#hero .banner .banner-row .banner-row-r .banner-r-box:nth-child(1) {
  text-align: center;
  padding: 4.375rem;
}

.content-solid {
  width: 25rem;
  height: 5rem;
  margin: 0 auto;
  position: relative;
}
  
.bar {
  width: 25rem;
  height: 0.75rem;
  border-radius: 0.625rem;
  border: 1px solid #8EC31F;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
}
.progress {
  width: 0;
  height: 0.75rem;
  border-radius: 0.625rem;
  background: #2C8F32;
}
.dot {
  width: 1.875rem;
  height: 1.875rem;
  background: url(../img/dot.png) no-repeat;
  background-size: 100% 100%;
  /* background: #666;
  border: 1px solid #2C8F32; */
  position: absolute;
  bottom: 0;
  top: -1px;
  margin: auto 0;
  border-radius: 50%;
  cursor: pointer;
}

.solid-foot-text {
  width: 120%;
  position: absolute;
  left: -10%;
  top: 4.375rem;
  display: flex;
  justify-content: space-between;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 3.75rem 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 1.875rem;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
  margin-top: 1.875rem;
  padding-bottom: 1.25rem;
  position: relative;
  color: #319237;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 11.25rem;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 3.75rem);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 2.5rem;
  height: 0.1875rem;
  background: #319237;
  bottom: 0;
  left: calc(50% - 1.25rem);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 1.625rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .about-top {
  font-size: 1.25rem;
  padding: 2rem;
}

.about .content .aabout-bottom {
  width: 35rem;
  height: 25rem;
}
.about .content .aabout-bottom img {
  width: 100%;
  height: 100%;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  transition: 0.3s;
  line-height: 1;
  color: #319237;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 0.375rem;
  border: 2px solid #319237;
}

.about .content .btn-learn-more:hover {
  background: #319237;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
  height: 225rem;
}

.skills .loan-step {
  width: 100%;
  height: 210.4375rem;
  background: url('../img/loanStep.png') no-repeat center 0;
  background-size: 80% 100%;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .productos {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.services .productos li {
  width: 23.5rem;
  height: 31.5rem;
  background: url('../img/productos/bg.png') no-repeat;
  background-size: 100% 100%;
}

.services .icon-box {
  padding: 3.625rem 1.875rem;
  transition: all ease-in-out 0.4s;
  text-align: center;
  color: #fff;
}

.services .icon-box .box-img {
  height: 5.625rem;
  text-align: center;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 3.75rem 0 3.125rem;
  font-size: 2rem;
}

.services .icon-box p {
  line-height: 1.5rem;
  font-size: 1.375rem;
}

.services .icon-box:hover {
  transform: translateY(-0.625rem);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  background-color: #f3f9e8;
}

.portfolio .port-image {
  width: 29.75rem;
  height: 36.5rem;
  margin: 0 auto;
  padding-left: 2.25rem;
}
.portfolio img {
  width: 100%;
  height: 100%;
}

.portfolio ul li {
  margin-bottom: 1.25rem;
  text-align: center;
}

.portfolio ul li div {
  margin: 0 auto;
}

.portfolio ul li .port-text {
  color: #319237;
  font-size: 2rem;
}

.portfolio ul li.down-arrow {
  width: 3.625rem;
  height: 3.625rem;
  margin: 0.625rem auto 3.75rem;
}

/*--------------------------------------------------------------
# cactus-cash
--------------------------------------------------------------*/
.cactus-cash ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cactus-cash ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 0.1875rem 1.25rem -2px rgba(0, 0, 0, 0.3);
  background: #fff;
  width: 21rem;
  height: 26.125rem;
  padding-top: 1rem;
  border: 0.25rem solid #78BA28;
  border-radius: 1.25rem;
}

.cactus-cash ul li .cactus-head {
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 auto;
}

.cactus-cash ul li .cactus-star {
  width: 14rem;
  height: 1.875rem;
  margin: 0 auto;
}

.cactus-cash ul li .text-top {
  margin-top: 0;
  font-size: 1.25rem;
  color: #5A5A5A;
}

.cactus-cash ul li .text-bottom {
  margin-bottom: 3.125rem;
  font-size: 1.125rem;
  color: #969696;
}

.cactus-cash ul li img {
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------------------
problem
--------------------------------------------------------------*/
.problem ul li {
  position: relative;
  padding-left: 4.375rem;
  margin-bottom: 3.125rem;
}

.problem ul li .line {
  position: absolute;
  left: 0;
  width: 50%;
  border-bottom: 2px solid #D2D2D2;
  margin-top: 0.3125rem;
}

.problem ul li .num {
  position: absolute;
  left: -0.625rem;
  bottom: 0;
  padding: 0 0.625rem;
  font-size: 3.125rem;
  font-weight: 600;
  color: #319237;
}

.problem ul li .q {
  font-size: 1.5rem;
  font-weight: 600;
  color: #575656;
}

.problem ul li .a {
  font-size: 1.25rem;
  color: #575656;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-row {
  display: flex;
  justify-content: center;
}

.contact .contact-row .row-top {
  text-align: right;
  padding-right: 2.5rem;
  width: 50%;
}
.contact .contact-row .row-top img {
  width: 35rem;
  height: 35rem;
}

.contact .contact-row .row-bottom {
  width: 50%;
  padding-left: 2.5rem;
}

.contact .contact-row .row-bottom .c-text {
  font-size: 1.875rem;
  color: #4B4B4B;
  /* margin-top:  */
}

.contact .contact-row .row-bottom .x-text {
  font-size: 1.625rem;
  color: #A1A1A1;
  margin-bottom: 2.5rem;
}

/*--------------------------------------------------------------
# More 
--------------------------------------------------------------*/
.more ul {
  display: flex;
  justify-content: space-between;
}
.more ul li {
  width: 14.5rem;
  height: 7.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}
.more ul li:nth-child(3) {
  width: 10.75rem;
  height: 9.25rem;
  padding: 0;
}
.more ul li img {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 0.875rem;
  background: #319237;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

#footer .copyright {
  width: 54%;
  padding-left: 3.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #151515;
}

#footer .credits {
  display: flex;
  justify-content: space-around;
  width: 46%;
  font-size: 1.25rem;
  color: #333333;
}

#footer .credits a {
  transition: 0.3s;
  color: #333;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 0.25rem;
  }
}

.feed-back {
  padding-top: 8rem;
}

.feed-back .feed-back-box {
  width: 80%;
  /* width: 68.75rem; */
  height: 41.25rem;
  margin: 0 auto;
  font-size: 1rem;
  border: 1px solid #eee;
}

@media (max-width: 1200px) {
  .feed-back .feed-back-box {
    width: 100%;
  }
}

.feed-back .feed-back-t {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 31.25rem;
  background-color: #fff;
}

.feed-back  .feed-back-select {
  width: 36%;
  padding: 3.125rem 4.375rem 0;
}

.feed-back .select-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}

.feed-back .feed-back-ipt {
  width: 64%;
}

.feed-back .feed-back-ipt textarea {
  width: 90%;
  height: 12.5rem;
  margin-top: 3.125rem;
  background-color: #f2f2f2;
  font-size: 1rem;
  border: 0;
  resize: none;
  outline: none;
  border: none;
}

.feed-back .upload-title {
  font-weight: bold;
  font-size: 1.625rem;
  margin: 1.25rem 0 0.625rem;
}

.feed-back .ipt-upload {
  position: relative;
}

.feed-back .upload-content {
  position: absolute;
  bottom: 1rem;
  left: 0.625rem;
  width: 4.375rem;
  height: 4.375rem;
  cursor: pointer;
}

.feed-back .upload-content img {
  width: 100%;
  height: 100%;
}

.feed-back .upload-content #img_file {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4.375rem;
  height: 4.375rem;
  opacity: 0;
  cursor: pointer;
}

.feed-back .feed-btn {
  position: relative;
  width: 100%;
}

.feed-back #feedbackBtn {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 17.5rem;
  height: 3.125rem;
  text-align: center;
  line-height: 3rem;
  /* font-size: 18px; */
  background-color: #fff;
  border: 1px solid #888;
  border-radius: 5px;
}
