/* RESPONSIVE
===========================
*/
/* Animations */
@keyframes movePlant {
  0% {
    transform: skew(0, 0) rotate(0) translate(0, 0); }
  10% {
    transform: skew(1deg, 1deg) rotate(-5deg) translate(-30px, 5px); }
  20% {
    transform: skew(0, 0) rotate(0) translate(0, 0); }
  100% {
    transform: skew(0, 0) rotate(0) translate(0, 0); } }

@keyframes movePlant2 {
  0% {
    transform: skew(0, 0) rotate(0) translate(0, 0); }
  10% {
    transform: skew(-2deg, 1deg) rotate(5deg) translate(-2px, 2px); }
  20% {
    transform: skew(0, 0) rotate(0) translate(0, 0); }
  100% {
    transform: skew(0, 0) rotate(0) translate(0, 0); } }

@keyframes movePlant3 {
  0% {
    transform: skew(0, 0) rotate(0) translate(0, 0); }
  10% {
    transform: skew(2deg, -1deg) rotate(5deg) translate(5px, 8px); }
  20% {
    transform: skew(0, 0) rotate(0) translate(0, 0); }
  100% {
    transform: skew(0, 0) rotate(0) translate(0, 0); } }

@keyframes moveCreeper {
  0% {
    transform: skew(0, 0) translate(0, 0); }
  50% {
    transform: skew(14deg, 0) translate(10px, 0); }
  100% {
    transform: skew(0, 0) rotate(0) translate(0, 0); } }

@keyframes moveLeaf {
  0% {
    opacity: 0; }
  1% {
    transform: rotate(0) translate(0, 0);
    opacity: 1; }
  30% {
    transform: rotate(-30deg) translate(-2000px, 50px);
    opacity: 1; }
  31% {
    opacity: 0; }
  100% {
    transform: skew(0, 0) rotate(0) translate(0, 0);
    opacity: 0; } }

@keyframes moveLeaf2 {
  0% {
    opacity: 0; }
  1% {
    transform: rotate(0) translate(0, 0);
    opacity: 1; }
  30% {
    transform: rotate(15deg) translate(-2000px, 400px);
    opacity: 1; }
  31% {
    opacity: 0; }
  100% {
    transform: skew(0, 0) rotate(0) translate(0, 0);
    opacity: 0; } }

@keyframes moveParticles {
  0% {
    top: 0;
    left: 0; }
  100% {
    top: 35%;
    left: 35%; } }

@keyframes light {
  0% {
    opacity: 1; }
  30% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@keyframes moveMonkey {
  0% {
    transform: rotate(0) translate(0, 0);
    top: 35px; }
  50% {
    transform: rotate(-8deg) translate(80px, 20px);
    top: 35px; }
  100% {
    transform: rotate(0) translate(0, 0);
    top: 35px; } }

@keyframes moveMonkeyArm {
  0% {
    transform: rotate(0) translate(0, 0); }
  50% {
    transform: rotate(5deg) translate(-5px, -8px); }
  100% {
    transform: rotate(0) translate(0, 0); } }

@keyframes moveBanana {
  0% {
    transform: translate(0, 0) rotate(350deg); }
  100% {
    transform: translate(0, 900px); } }

@keyframes moveBanana2 {
  0% {
    transform: translate(0, 0) rotate(180deg); }
  100% {
    transform: translate(0, 1100px); } }

@keyframes showTransitionOverlay {
  0% {
    height: 0px; }
  100% {
    height: 100%; } }

.text-primary {
  color: #084253 !important; }

.bg-primary {
  background-color: #FFDD14 !important; }

.bg-grey-light {
  background-color: #F8F8F8; }

.bg-dark {
  background-color: #78818A !important; }

html {
  font-size: 16px; }

body {
  font-family: azo-sans-web, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #8686A6; }

h1, h2 {
  font-family: peachy-keen-jf, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #084253; }

h3, h4, h5, h6 {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #084253; }

h1 {
  font-size: 2rem; }
  @media (min-width: 1200px) {
    h1 {
      font-size: 2.5rem; } }

h2 {
  font-size: 1.25rem; }
  @media (min-width: 992px) {
    h2 {
      font-size: 1.5rem; } }

h3 {
  font-size: 1rem; }

ion-icon {
  --ionicon-stroke-width: 50px; }

p {
  margin-bottom: 1rem; }

.lead {
  font-size: 1.125rem; }
  @media (min-width: 768px) {
    .lead {
      font-size: 1.25rem; } }

strong {
  font-weight: 700;
  font-style: normal; }

.uppercase {
  text-transform: uppercase; }

html, body {
  height: 100%; }
  html.noscroll, body.noscroll {
    overflow: hidden; }

body {
  padding-top: 84px; }

.btn-wrapper {
  border: 1px solid transparent;
  display: inline-flex;
  width: auto;
  border-radius: 5rem;
  position: relative;
  justify-content: center;
  align-items: center; }
  .btn-wrapper .btn-hover {
    content: "";
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    display: block;
    background-color: transparent;
    position: absolute;
    top: -1px;
    left: -1px;
    border: 1px solid transparent;
    opacity: 1;
    border-radius: 5rem;
    z-index: 1; }
  .btn-wrapper:hover .btn-hover {
    width: calc(150% + 2px);
    height: calc(150% + 2px);
    top: -25%;
    left: -25%;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease; }
  .btn-wrapper.btn-wrapper-primary {
    border-color: #FFDD14; }
    .btn-wrapper.btn-wrapper-primary .btn-hover {
      border-color: #FFDD14; }
  .btn-wrapper.btn-wrapper-secondary {
    border-color: #084253; }
    .btn-wrapper.btn-wrapper-secondary .btn-hover {
      border-color: #084253; }

.btn {
  padding: 1rem 4rem;
  border-radius: 3rem;
  font-family: peachy-keen-jf, sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin: .1875rem;
  position: relative;
  z-index: 2;
  width: 100%; }

.btn-primary {
  background-color: #FFDD14;
  background: linear-gradient(to bottom, #ffe447 0, #ffc600 100%);
  border-color: #FFDD14;
  color: #084253;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.75) inset, 0 2px 10px 0 rgba(0, 0, 0, 0.15); }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active {
    color: #084253;
    background-color: #ffe447;
    border-color: #ffe447;
    box-shadow: none !important; }
  .btn-primary:after {
    border-color: #FFDD14;
    background-color: #FFDD14; }

.btn-primary-outline {
  background-color: transparent;
  border-color: #FFDD14;
  color: #FFDD14; }
  .btn-primary-outline:hover, .btn-primary-outline:focus, .btn-primary-outline:active, .btn-primary-outline:not(:disabled):not(.disabled):active {
    color: #e0c000;
    background-color: transparent;
    border-color: #e0c000;
    box-shadow: none !important; }

.btn-secondary {
  background-color: #0c6782;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  background: linear-gradient(to bottom, #0c6782 0, #084253 100%);
  border-color: #084253;
  color: #FFDD14; }
  .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:not(:disabled):not(.disabled):active {
    color: #FFDD14;
    background-color: #0c6782;
    border-color: #0c6782;
    box-shadow: none !important; }
  .btn-secondary:after {
    border-color: #084253;
    background-color: #084253; }

.btn-icon {
  display: flex;
  align-items: center; }
  .btn-icon ion-icon {
    font-size: 1.5rem;
    margin-left: 4px; }

.btn-full {
  width: 100%; }

.form-control {
  color: #084253; }

label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #084253; }

#navigationMain {
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100; }
  #navigationMain .collapse {
    justify-content: flex-end; }
    #navigationMain .collapse ul.navbar-nav li.active > .nav-link:after {
      content: "";
      width: 100%;
      height: 3px;
      display: block;
      background-color: #4CBF52; }
    #navigationMain .collapse ul.navbar-nav li:last-child .nav-link {
      padding-right: 0; }

#mobileMenu {
  z-index: 101;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0; }
  #mobileMenu .close {
    height: 0;
    width: 0;
    z-index: 101; }
  #mobileMenu:after, #mobileMenu:before {
    content: '';
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 100%;
    display: block;
    position: absolute;
    top: 1.675rem;
    right: 1.125rem;
    transform: translate(0, 0);
    position: absolute;
    z-index: 99;
    opacity: 0; }
  #mobileMenu:after {
    background-color: #084253; }
  #mobileMenu:before {
    background-color: #0c6782b8; }
  #mobileMenu ion-icon {
    position: absolute;
    z-index: 100;
    top: 1.5rem;
    right: 0.825rem;
    font-size: 2.5rem;
    color: #fff;
    transform: rotate(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease; }
  #mobileMenu ul#mobileMenuNav {
    z-index: 100;
    position: relative;
    text-align: right;
    justify-content: center;
    margin: 0 1rem 0 0;
    height: 0px;
    overflow: hidden;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    list-style: none; }
    #mobileMenu ul#mobileMenuNav li a {
      display: block;
      padding: .5rem 0;
      color: #fff;
      font-family: peachy-keen-jf, sans-serif;
      font-size: 1.125rem;
      opacity: 0;
      position: relative;
      left: -100px;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -webkit-transition: all 900ms ease;
      -moz-transition: all 900ms ease;
      -o-transition: all 900ms ease;
      transition: all 900ms ease; }
  #mobileMenu.visible {
    display: block;
    transform: translateX(0); }
    #mobileMenu.visible:before, #mobileMenu.visible:after {
      width: 200vw;
      height: 200vw;
      opacity: 1;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -webkit-transition: all 600ms ease;
      -moz-transition: all 600ms ease;
      -o-transition: all 600ms ease;
      transition: all 600ms ease; }
    #mobileMenu.visible:after {
      transform: translate(50%, -50%); }
    #mobileMenu.visible:before {
      transform: translate(50%, -48%); }
    #mobileMenu.visible .close {
      display: block;
      height: 45px;
      width: 45px; }
    #mobileMenu.visible ion-icon {
      transform: rotate(90deg); }
    #mobileMenu.visible ul#mobileMenuNav {
      transform: translateX(0);
      height: 100vw;
      overflow: visible; }
      #mobileMenu.visible ul#mobileMenuNav li a {
        left: 0;
        opacity: 1; }
      #mobileMenu.visible ul#mobileMenuNav li:nth-child(1) a {
        transition-delay: 100ms; }
      #mobileMenu.visible ul#mobileMenuNav li:nth-child(2) a {
        transition-delay: 200ms; }
      #mobileMenu.visible ul#mobileMenuNav li:nth-child(3) a {
        transition-delay: 300ms; }
      #mobileMenu.visible ul#mobileMenuNav li:nth-child(4) a {
        transition-delay: 400ms; }
      #mobileMenu.visible ul#mobileMenuNav li:nth-child(5) a {
        transition-delay: 500ms; }

#overlay {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #0c678280;
  z-index: 99; }

.navbar-light .navbar-nav .nav-link {
  color: #084253;
  font-weight: 700; }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:active, .navbar-light .navbar-nav .nav-link:not(:disabled):not(.disabled):active {
    color: #084253; }
  .navbar-light .navbar-nav .nav-link:after {
    content: "";
    width: 0%;
    height: 3px;
    display: block;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease; }
  .navbar-light .navbar-nav .nav-link:hover:after {
    content: "";
    width: 100%;
    background-color: #4CBF52; }

.navbar-light .navbar-nav .active > .nav-link {
  color: #084253; }

.navbar-light .navbar-toggler {
  border: 0;
  padding: .25rem;
  border-radius: 50%;
  position: absolute;
  z-index: 100;
  top: 1.675rem;
  right: 1.125rem; }
  .navbar-light .navbar-toggler.active {
    z-index: 99;
    display: none; }
  .navbar-light .navbar-toggler:hover {
    background-color: #0c678280; }
  .navbar-light .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(8,66,83)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }
    .navbar-light .navbar-toggler .navbar-toggler-icon svg path {
      stroke: #084253; }

footer {
  position: relative;
  background-color: #F8F8F8;
  padding: 2rem; }
  footer #footer-plant {
    display: none; }
  footer #footer-info {
    margin-bottom: 2rem; }
    footer #footer-info address {
      margin: 0;
      text-align: center; }
      footer #footer-info address a {
        font-weight: 700;
        color: #084253; }
      footer #footer-info address .phone {
        font-size: 1.5rem;
        color: #FFBE2B; }
  footer #footer-menu ul {
    list-style: none;
    margin: 0;
    text-align: center; }
    footer #footer-menu ul li:not(:last-child) {
      margin-right: 1rem; }
    footer #footer-menu ul li a {
      color: #084253;
      font-size: 0.875rem;
      font-weight: 700; }
      footer #footer-menu ul li a:hover, footer #footer-menu ul li a:focus, footer #footer-menu ul li a:active, footer #footer-menu ul li a:not(:disabled):not(.disabled):active {
        color: #0a546a; }
  @media (min-width: 768px) {
    footer {
      padding: 0; }
      footer #footer-info {
        padding: 2rem 0;
        margin-bottom: 0; }
      footer #footer-menu ul {
        text-align: right; } }
  @media (min-width: 992px) {
    footer #footer-plant {
      display: block;
      position: absolute;
      bottom: 0;
      width: 240px; } }

.widget-formLoan {
  display: flex;
  position: relative;
  z-index: 2;
  color: #084253;
  flex-direction: column;
  margin-bottom: 2rem; }
  .widget-formLoan .formLoan-slider, .widget-formLoan .formLoan-results {
    background-color: #FFDD14;
    flex-grow: 1;
    flex-basis: 33%; }
  .widget-formLoan .formLoan-slider {
    padding: 1rem 2rem;
    border-bottom: 1px solid #FFBE2B; }
  .widget-formLoan .formLoan-results {
    display: flex; }
    .widget-formLoan .formLoan-results .form-group {
      padding: 1rem 2rem;
      margin-bottom: 0;
      flex-grow: 1;
      flex-basis: 50%; }
      .widget-formLoan .formLoan-results .form-group:nth-of-type(1) {
        border-right: 1px solid #FFBE2B; }
      .widget-formLoan .formLoan-results .form-group label {
        margin-bottom: 0; }
  .widget-formLoan .formLoan-total {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.375rem; }
  .widget-formLoan .btn-wrapper {
    margin: 1rem auto; }
  @media (min-width: 768px) {
    .widget-formLoan {
      flex-direction: row;
      flex-wrap: wrap; }
      .widget-formLoan .formLoan-slider {
        padding: 1rem 1.5rem;
        flex-basis: 50%; }
      .widget-formLoan .formLoan-results {
        flex-basis: 100%; }
        .widget-formLoan .formLoan-results .form-group {
          padding: 1rem 1.5rem; } }
  @media (min-width: 992px) {
    .widget-formLoan {
      flex-wrap: nowrap;
      margin-bottom: 0; }
      .widget-formLoan .formLoan-slider, .widget-formLoan .formLoan-results {
        flex-basis: auto; }
      .widget-formLoan .formLoan-slider {
        border-bottom: 0; }
        .widget-formLoan .formLoan-slider:nth-of-type(2) {
          border-right: 1px solid #FFBE2B; }
      .widget-formLoan .btn-wrapper {
        position: absolute;
        bottom: -50px;
        right: 30px; }
      .widget-formLoan:before {
        content: "";
        width: 101%;
        height: 100%;
        background-color: #FFBE2B;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: -0.5%;
        z-index: -1;
        transform: rotate(1deg); } }

.widget-steps .step-wrapper {
  text-align: center;
  padding: 1rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }
  .widget-steps .step-wrapper .step-number {
    font-family: peachy-keen-jf, sans-serif;
    color: #FFBE2B;
    font-size: 1.5rem; }
  .widget-steps .step-wrapper .step-img {
    margin-bottom: 1rem; }
    .widget-steps .step-wrapper .step-img img {
      height: 50px; }
  .widget-steps .step-wrapper#step1 {
    background-image: url(../img/bg-step1.png); }
  .widget-steps .step-wrapper#step2 {
    background-image: url(../img/bg-step2.png); }
  .widget-steps .step-wrapper#step3 {
    background-image: url(../img/bg-step3.png); }
  .widget-steps .step-wrapper .step-title h3 {
    font-family: peachy-keen-jf, sans-serif; }

@media (min-width: 992px) {
  .widget-steps .step-wrapper {
    padding: 2rem 0; }
    .widget-steps .step-wrapper .step-number {
      font-size: 2rem; }
    .widget-steps .step-wrapper .step-img img {
      height: auto; } }

#deco-plant {
  display: none; }
  @media (min-width: 992px) {
    #deco-plant {
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      transform: translate(30%, -50%);
      z-index: 0; } }

.accordion .card .card-header {
  margin-bottom: 0; }
  .accordion .card .card-header p {
    margin-bottom: 0;
    font-weight: 700; }
    .accordion .card .card-header p ion-icon {
      float: right;
      position: relative;
      top: 5px;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease; }
    .accordion .card .card-header p.collapsed ion-icon {
      transform: rotate(180deg); }
  .accordion .card .card-header:hover {
    cursor: pointer; }

.accordion .card-body {
  font-size: 0.875rem; }

.card {
  border: 0;
  border-radius: 1rem; }

.card-header {
  background-color: #FFDD14;
  border-bottom-color: #FFBE2B; }
  .card-header:first-child {
    border-radius: 0; }

.contact-card {
  background-color: #084253;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 2rem; }
  .contact-card h2 {
    color: #fff;
    font-size: 1rem; }
  .contact-card address {
    margin-bottom: 0; }
  .contact-card a {
    color: #fff; }
  .contact-card img {
    margin-right: 2rem;
    width: 40px; }
  @media (min-width: 992px) {
    .contact-card {
      padding: 2rem; }
      .contact-card img {
        width: 60px; } }

.card-bright {
  background-color: #FFF8CD;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative; }
  .card-bright:before {
    content: '';
    width: 10px;
    height: 80%;
    transform: translateX(-50%);
    background-color: #FFDD14;
    position: absolute;
    top: 10%;
    bottom: 0;
    left: 0;
    border-radius: 10px; }
  .card-bright .card-content {
    padding: 1.5rem;
    color: #084253;
    font-size: 0.75rem; }
    .card-bright .card-content h3 {
      font-size: 0.875rem; }
  @media (min-width: 768px) {
    .card-bright .card-content {
      padding: 2rem; } }

.bananaSpinner {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  text-align: center;
  position: relative; }
  .bananaSpinner .bananaSpinnerBg {
    background-color: #fff;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 0; }
  .bananaSpinner .bananaSpinnerBanana {
    width: 100px;
    margin-top: 50px;
    z-index: 1;
    position: relative; }
  .bananaSpinner h2 {
    color: #FFDD14;
    z-index: 1;
    position: relative; }

.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.rangeslider,
input[type='range'] {
  margin-top: 10px;
  margin-bottom: 30px; }

.rangeslider {
  background: #FFF8CD;
  position: relative; }

.rangeslider--horizontal {
  height: 7px;
  width: 100%; }

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4; }

.rangeslider__fill {
  background: #4CBF52;
  position: absolute; }

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%; }

.rangeslider__handle {
  background: #4CBF52;
  border: 0;
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  border-radius: 22px;
  min-width: 80px;
  line-height: 30px;
  text-align: center;
  font-weight: 700; }
  .rangeslider__handle:after {
    background: 0; }

.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y; }

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x; }

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9); }

.rangeslider-dots ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  padding: 1px 4px;
  margin: 0; }
  .rangeslider-dots ul li {
    width: 5px;
    height: 5px;
    background-color: #FFBE2B;
    border-radius: 50%; }

.divider {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: none; }

#hero-animation {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.decorative-object {
  position: absolute; }

.decorative-object01 {
  width: 100px;
  bottom: 0;
  right: 550px;
  animation-name: movePlant;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-delay: 1s; }

.decorative-object02 {
  width: 100px;
  bottom: 0;
  left: 85px;
  animation-name: movePlant;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-delay: 2s; }

.decorative-object03 {
  width: 100px;
  bottom: 0;
  left: 160px;
  animation-name: movePlant3;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-delay: 2s; }

.decorative-object04-leaf1 {
  top: 0;
  right: 0;
  animation-name: moveLeaf;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  opacity: 0; }

.decorative-object04-leaf2 {
  top: 0;
  right: 0;
  animation-name: moveLeaf2;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
  opacity: 0; }

.decorative-object04-leaf3 {
  top: 0;
  right: 0;
  animation-name: moveLeaf;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-delay: 5s;
  opacity: 0; }

.decorative-object05-particles {
  width: 100%;
  opacity: 0.7;
  animation-name: moveParticles;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-timing-function: linear; }

.decorative-object06-plants {
  bottom: 0;
  right: 0;
  width: 100%; }

.decorative-object07 {
  width: 130px;
  bottom: -130px;
  left: -80px;
  animation-name: movePlant2;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-delay: 1s; }

.decorative-object08 {
  width: 150px;
  bottom: -110px;
  left: -80px;
  animation-name: movePlant2;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-delay: 1s; }

.decorative-object09 {
  top: 0;
  left: 420px;
  animation-name: light;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-delay: 1s; }

.decorative-object10 {
  top: 0;
  left: 160px;
  animation-name: light;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: 1s; }

.decorative-object11 {
  bottom: 20px;
  left: 7px;
  animation-name: light;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-delay: 2s; }

.decorative-object12-plants {
  width: 150px;
  bottom: 0;
  width: 100%; }

.decorative-object13-plants {
  width: 150px;
  bottom: 0;
  left: 0; }

.decorative-object14 {
  width: 150px;
  bottom: -110px;
  right: 560px;
  animation-name: movePlant;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-delay: 4s; }

.decorative-object15 {
  width: 150px;
  bottom: -100px;
  right: -120px;
  animation-name: movePlant2;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-delay: 5s; }

.decorative-object16 {
  width: 110px;
  bottom: -100px;
  right: 200px;
  animation-name: movePlant2;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-delay: 5s; }

.decorative-object17 {
  width: 150px;
  bottom: -150px;
  right: 200px; }

.decorative-object18 {
  width: 70px;
  bottom: -105px;
  right: 200px;
  animation-name: movePlant;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-delay: 2s; }

.decorative-object20, .decorative-object19 {
  display: none; }

.decorative-object21 {
  top: -150px;
  left: 150px;
  animation-name: moveBanana2;
  animation-duration: 2500ms;
  animation-delay: 1s; }

.decorative-object22 {
  top: -150px;
  right: 300px;
  animation-name: moveBanana;
  animation-duration: 2100ms;
  animation-delay: 0s; }

.decorative-object23 {
  top: -150px;
  right: 750px;
  animation-name: moveBanana;
  animation-duration: 2400ms;
  animation-delay: 0s; }

.decorative-object24 {
  top: -150px;
  right: 50px;
  animation-name: moveBanana2;
  animation-duration: 3000ms;
  animation-delay: 0s; }

.decorative-object25 {
  top: -150px;
  left: 10px;
  animation-name: moveBanana;
  animation-duration: 2800ms;
  animation-delay: 0s; }

.decorative-object26 {
  top: -150px;
  left: 175px;
  animation-name: moveBanana2;
  animation-duration: 2500ms;
  animation-delay: 0s; }

.decorative-object27 {
  top: -150px;
  right: 354px;
  animation-name: moveBanana;
  animation-duration: 3100ms;
  animation-delay: 1s; }

.decorative-object28 {
  top: -150px;
  right: 454px;
  animation-name: moveBanana;
  animation-duration: 2100ms;
  animation-delay: 3500ms; }

.decorative-object29 {
  top: -150px;
  left: 125px;
  animation-name: moveBanana2;
  animation-duration: 2400ms;
  animation-delay: 500ms; }

.decorative-object30 {
  top: -150px;
  left: 156px;
  animation-name: moveBanana;
  animation-duration: 1890ms;
  animation-delay: 1s; }

.decorative-object31 {
  top: -150px;
  left: 150px;
  animation-name: moveBanana2;
  animation-duration: 2450ms;
  animation-delay: 2500ms; }

.decorative-object32 {
  top: -150px;
  right: 680px;
  animation-name: moveBanana;
  animation-duration: 2100ms;
  animation-delay: 300ms; }

.decorative-object33 {
  top: -150px;
  right: 724px;
  animation-name: moveBanana;
  animation-duration: 2300ms;
  animation-delay: 1500ms; }

.decorative-object34 {
  top: -150px;
  left: 0;
  animation-name: moveBanana2;
  animation-duration: 3400ms;
  animation-delay: 0s; }

.decorative-object35 {
  top: -150px;
  left: 10px;
  animation-name: moveBanana;
  animation-duration: 2800ms;
  animation-delay: 500ms; }

.decorative-object36 {
  top: -150px;
  right: 175px;
  animation-name: moveBanana2;
  animation-duration: 2500ms;
  animation-delay: 0s; }

.decorative-object37 {
  top: -150px;
  right: 186px;
  animation-name: moveBanana;
  animation-duration: 3100ms;
  animation-delay: 1s; }

.decorative-object38 {
  top: -150px;
  right: 124px;
  animation-name: moveBanana;
  animation-duration: 2100ms;
  animation-delay: 3s; }

.decorative-object-banana {
  display: none;
  animation-iteration-count: infinite; }
  .decorative-object-banana.visible {
    display: block; }

#canvas, #animation_container {
  top: 0;
  right: 0;
  position: absolute; }

#animation_container {
  display: none; }

@media (min-width: 992px) {
  .divider {
    display: block; }
  #animation_container {
    display: block;
    animation-name: moveMonkey;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: revert;
    animation-delay: 0s; }
  .decorative-object01, .decorative-object02, .decorative-object03, .decorative-object04, .decorative-object06-plants, .decorative-object07, .decorative-object08,
  .decorative-object09, .decorative-object10, .decorative-object11, .decorative-object12-plants, .decorative-object13-plants, .decorative-object14, .decorative-object15, .decorative-object16,
  .decorative-object17, .decorative-object18, .decorative-object19, .decorative-object20 {
    width: auto; }
  .decorative-object19 {
    top: 0;
    right: 0;
    animation-name: moveCreeper;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: revert;
    animation-delay: 1s;
    display: block; }
  .decorative-object20 {
    top: 0;
    right: -100px;
    animation-name: moveCreeper;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: revert;
    animation-delay: 0s;
    display: block; } }

#Accueil .jumbotron {
  position: relative;
  overflow: hidden;
  background-image: url("../img/hero-bg-alt.jpg");
  background-position: center center;
  background-size: cover;
  max-height: 690px; }
  #Accueil .jumbotron .container {
    z-index: 2;
    position: relative; }
  #Accueil .jumbotron h1 {
    color: #fff;
    text-shadow: 0px 0px 7px rgba(8, 66, 83, 0.6); }
  #Accueil .jumbotron p {
    color: #fff;
    text-shadow: 0px 0px 7px rgba(8, 66, 83, 0.6); }

#Accueil #Accueil-info {
  padding-bottom: 2rem; }
  #Accueil #Accueil-info .row .col-md {
    display: flex;
    flex-wrap: nowrap; }
    #Accueil #Accueil-info .row .col-md:not(:last-child) {
      margin-bottom: 2rem; }
  #Accueil #Accueil-info .info-img {
    margin-right: 15px;
    flex-basis: 20%; }
    #Accueil #Accueil-info .info-img img {
      max-width: 100%; }
  #Accueil #Accueil-info .info-txt {
    flex-basis: 80%; }
  #Accueil #Accueil-info .lead {
    margin-bottom: 2.5rem; }

#Accueil #Accueil-steps {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../img/bgJungle1.jpg");
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden; }
  #Accueil #Accueil-steps > .container {
    z-index: 1;
    position: relative; }
  #Accueil #Accueil-steps .lead {
    color: #084253;
    margin-bottom: 30px; }
  #Accueil #Accueil-steps .step-wrapper {
    margin-bottom: 2rem; }
  #Accueil #Accueil-steps .row {
    flex-direction: column; }
  #Accueil #Accueil-steps .btn-wrapper {
    margin-top: 30px !important; }

#Accueil #Accueil-legal {
  padding: 2rem 0; }
  #Accueil #Accueil-legal .row {
    flex-direction: column; }

@media (min-width: 768px) {
  #Accueil .jumbotron {
    background-image: url("../img/hero-bg.jpg"); }
  #Accueil #Accueil-steps .step-wrapper {
    margin-bottom: 0; }
  #Accueil #Accueil-steps .row {
    flex-direction: row; }
  #Accueil #Accueil-info .row .col-md {
    display: block; }
  #Accueil #Accueil-info img {
    margin-bottom: 1rem;
    height: 146px; } }

@media (min-width: 992px) {
  #Accueil .jumbotron {
    padding: 0;
    background-size: auto; }
    #Accueil .jumbotron .jumbotron-text-wrapper {
      padding: 16rem 2rem; }
  #Accueil .widget-formLoan {
    transform: translateY(-75%); }
  #Accueil #Accueil-steps {
    padding-top: 6rem;
    padding-bottom: 6rem; }
    #Accueil #Accueil-steps .decorative-object01 {
      right: auto;
      left: 180px; }
    #Accueil #Accueil-steps .decorative-object02 {
      left: auto;
      right: 180px; }
    #Accueil #Accueil-steps .decorative-object03 {
      left: auto;
      right: 50px; }
    #Accueil #Accueil-steps .decorative-object14 {
      left: auto;
      right: 30px; }
    #Accueil #Accueil-steps .decorative-object17 {
      left: auto;
      right: 10px; }
    #Accueil #Accueil-steps .decorative-object18 {
      left: auto;
      right: 100px;
      bottom: -150px; }
  #Accueil #Accueil-legal .row {
    flex-direction: row; } }

main {
  min-height: 200px; }
  main.default {
    background-color: #74C59C;
    background-image: url(../img/bgJungle3.jpg);
    background-position: center bottom;
    background-repeat: repeat-x;
    color: #084253;
    overflow: hidden; }
    main.default p {
      color: #084253; }
    main.default section {
      padding: 2rem 0;
      position: relative; }
      main.default section > .container {
        z-index: 1;
        position: relative; }
  @media (min-width: 992px) {
    main.default section {
      padding: 6rem; } }

#errorPage {
  text-align: center; }
  #errorPage .monkey {
    margin-bottom: 20px;
    max-width: 100%; }
  #errorPage h1 {
    color: #FFDD14;
    font-size: 3rem; }
  #errorPage h2 {
    font-size: 1.5rem;
    margin-bottom: 150px; }
  @media (min-width: 992px) {
    #errorPage .monkey {
      transform: translate(50px, 0); } }

#renew {
  color: #084253; }
  #renew main {
    background-image: url(../img/bgJungle2.jpg);
    background-position: center bottom;
    background-repeat: repeat-x;
    overflow: hidden;
    background-size: cover; }
  #renew #renew-content {
    padding: 2rem 0;
    position: relative; }
    #renew #renew-content > .container {
      z-index: 1;
      position: relative; }
  #renew h1, #renew p {
    z-index: 1;
    position: relative; }
  #renew p {
    margin-bottom: 2rem; }
  #renew form {
    z-index: 1;
    position: relative; }
    #renew form .form-action .btn-wrapper {
      width: 100%; }
  #renew #form-waves {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translate(-15%, -15%);
    z-index: 0; }
  #renew #form-monkey, #renew #form-monkey-arm {
    display: none; }
  @media (min-width: 768px) {
    #renew form .form-action {
      text-align: right; }
      #renew form .form-action .btn-wrapper {
        width: auto; } }
  @media (min-width: 992px) {
    #renew main {
      background-size: auto; }
    #renew #renew-content {
      padding: 6rem; }
    #renew #form-monkey {
      display: block;
      position: absolute;
      bottom: 0;
      right: 0;
      transform: translate(208px, -140px);
      z-index: 2; }
    #renew #form-monkey-arm {
      display: block;
      position: absolute;
      bottom: 155px;
      right: -20px;
      z-index: 2;
      animation-name: moveMonkeyArm;
      animation-duration: 1s;
      animation-iteration-count: infinite; } }

#contact .contact-cards .contact-card {
  margin-bottom: 1rem; }

#contact form .form-action .btn-wrapper {
  width: 100%; }

@media (min-width: 768px) {
  #contact form .form-action {
    text-align: right; }
    #contact form .form-action .btn-wrapper {
      width: auto; } }

@media (min-width: 992px) {
  #contact .contact-cards .contact-card {
    max-width: 360px; } }
