/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
Author: Your Name
Description: A child theme of Hello Elementor.
*/

@import url("../hello-elementor/style.css");



.balloon-float {
  animation: balloonAir 12s ease-in-out infinite;
  display: inline-block;
  will-change: transform;
}

@keyframes balloonAir {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(-10px, -20px) rotate(-1deg);
  }
  50% {
    transform: translate(10px, -30px) rotate(1deg);
  }
  75% {
    transform: translate(-15px, -15px) rotate(-0.5deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.bio-profile-section li.elementor-icon-list-item {
    padding: 10px 15px !important;
    background-color: #fdfdfd;
    border-radius: 15px;
    margin-bottom: 10px !important;
    border: 1px solid #e3e3e3;

}

.location-profile-section li.elementor-icon-list-item {
    padding: 10px 15px !important;
    border-radius: 15px;
    margin-bottom: 10px !important;
    border: 1px solid #e1e1e1;
}

.contact-section .wpcf7-form input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    font-family: "Proza Libre", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 15px 10px 20px;
    color: #ffffff;
    background-color: grey;
    cursor: not-allowed;
    pointer-events: none;
    transition: background-color 0.3s;
    border-color: grey;
}

.contact-section .wpcf7-form input.wpcf7-form-control.wpcf7-submit.active {
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--e-global-color-primary) 0%, #531212 100%);
    border-color: var(--e-global-color-primary);
    cursor: pointer;
    pointer-events: auto;
}

.contact-section .wpcf7-form input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: transparent;
    background-image: linear-gradient(180deg, #531212 0%, var(--e-global-color-primary) 100%);
}

.contact-section .wpcf7-form input.wpcf7-text,
.contact-section .wpcf7-form textarea.wpcf7-textarea {
    border: 1px solid #e3e3e3;
}

.custom-contact-field-submit-box p {
    text-align: center;
}

.custom-contact-field-submit-box p span.wpcf7-spinner {
    margin-top: 10px;
}

.custom-contact-field-file-box p {
    border: 1px solid #e3e3e3;
    padding: 20px;
    background-color: #ffffff;
}