.banner-verde {
    background: #9dd300;
    padding: 10px;
    transform: rotate(-10deg);
    border-radius: 120px;
}

.banner-text {
    transform: rotate(10deg);
    margin: 40px 40px 0;
}

.button2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #183153;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
  }
  
  .button2:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #9dd300;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
  }
  
  .button2:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .button2 span {
    text-align: center;
    text-decoration: none;
    width: 90%;

    color: #fff;
    font-size: 1.125em;
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
  
  .button2:hover span {
    color: #183153;
    animation: scaleUp 0.3s ease-in-out;
  }
  
  @keyframes scaleUp {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(0.95);
    }
  
    100% {
      transform: scale(1);
    }
  }
  


  .button3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background:  #9dd300;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
  }
  
  .button3:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #183153;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
  }
  
  .button3:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .button3 span {
    text-align: center;
    text-decoration: none;
    width: 90%;

    color: #183153;
    font-size: 1.125em;
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
  
  .button3:hover span {
    color: #9dd300;
    animation: scaleUp 0.3s ease-in-out;
  }
  
  @keyframes scaleUp {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(0.95);
    }
  
    100% {
      transform: scale(1);
    }
  }







  .wallet {
    --bg-color: #9dd300;
    --bg-color-light: #f0e7ff;
    --text-color-hover: #fff;
    --box-shadow-color: rgba(178, 252, 194, 0.48);
  }
  
  .cardw {
    width: 220px;
    height: 321px;
    background: rgba(0, 0, 0, 0.2);
    border-top-right-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
  }
  
  .cardw:hover {
    transform: translateY(-1px) scale(1.005) translateZ(0);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.11),
      0 5px 26px var(--box-shadow-color);
  }
  
  .cardw:hover .overlay {
    transform: scale(4) translateZ(0);
  }
  
  .cardw:hover .circle {
    border-color: var(--bg-color-light);
    background: var(--bg-color);
  }
  
  .cardw:hover .circle:after {
    background: var(--bg-color-light);
  }
  
  .cardw:hover p {
    color: var(--text-color-hover);
  }
  
  .cardw p {
    font-size: 17px;
    font-weight: bolder;
    color: var(--bg-color);
    margin-top: 30px;
    z-index: 1000;
    transition: color 0.3s ease-out;
  }
  
  .circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
  }
  
  .circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transition: opacity 0.3s ease-out;
  }
  
  .circle svg {
    z-index: 10000;
    transform: translateZ(0);
  }
  
  .overlay {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: var(--bg-color);
    top: 70px;
    left: 50px;
    z-index: 0;
    transition: transform 0.3s ease-out;
  }



/* carrusel */

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;

  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--mdb-body-bg));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--mdb-body-bg));
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
