
  /* contact */
input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
  .btn-circle.btn-xl {
    width: 40px;
    height: 40px;
    padding: 13px 18px;
    border-radius: 60px;
    font-size: 40px;
    top: 50%;
    text-align: center;
}
.btn-circle.btn-xl1 {
    width: 40px;
    height: 40px;
    padding: 13px 18px;
    border-radius: 60px;
    font-size: 40px;
    top: 50%;
    text-align: center;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

  
  .animated-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.2s ease-out;
  }
  
  .animated-section.animated {
    opacity: 1;
    transform: translateY(0);
  }  
  
  #content-desktop {
    display: block;
  }
  
  #content-mobile {
    display: none;
  }
  @media screen and (max-width: 768px) {
  
  #content-desktop {
      display: none;
  }
  
  #content-mobile {
      display: block;
  }
  
  }

.whatsapp-link {
    animation-name: whatsapp-animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  
  @keyframes whatsapp-animation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  