/*
Theme Name: Landing Darwin
Author: Diego Enciso
Description: Tema personalizado para landing administrable con ACF
Version: 1.0
*/
.bg-contact{
    background-color: #ff0062; 
}

.btn:hover{
    background-color: #ff0062 !important; 
}

.bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }

  .bubbles-bg span {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -100px;
    border-radius: 50%;
    animation: rise 6s infinite ease-in;
  }

  .bubbles-bg span:nth-child(1) {
    left: 20%;
    animation-duration: 18s;
  }
  .bubbles-bg span:nth-child(2) {
    left: 40%;
    width: 25px;
    height: 25px;
    animation-duration: 6s;
  }
  .bubbles-bg span:nth-child(3) {
    left: 60%;
    width: 15px;
    height: 15px;
    animation-duration: 3s;
  } 
  .bubbles-bg span:nth-child(4) {
    left: 80%;
    width: 20px;
    height: 20px;
    animation-duration: 16s;
  }
  .bubbles-bg span:nth-child(5) { 
    left: 10%;
    width: 10px;
    height: 10px;
    animation-duration: 10s;
  }
  .bubbles-bg span:nth-child(6) {
    left: 100%;
    width: 18px;
    height: 18px;
    animation-duration: 2s;
  }
  .bubbles-bg span:nth-child(7) {
    left: 20%;
    width: 21px;
    height: 21px;
    animation-duration: 12s;
  }
  .bubbles-bg span:nth-child(8) {
    left: 30%;
    width: 27px;
    height: 27px;
    animation-duration: 3s;
  }

  @keyframes rise {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-1000px);
      opacity: 0;
    }
  }
