/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-theme/
 Description:  Child theme for Hello Elementor theme
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Add your custom CSS below */

.primary-btn span.elementor-button-content-wrapper svg {
    width: 15px;
    height: 15px;
}
.primary-btn .elementor-button:hover span.elementor-button-content-wrapper svg path {
    fill: #fff;
}
.white-box {
    padding: 11.5px 23px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}
.copyright-text p {
    margin-bottom: 0;
}
.animated-vertical img {
     display: inline-block;
    animation: moveY 1.5s linear infinite alternate;
}
.animated-horizontal img {
     display: inline-block;
    animation: moveX 1.5s linear infinite alternate;
}
.form-field p {
	margin: 0;
}
.form-field label {
    font-size: 15px;
    margin-bottom: 5px;
    color: rgb(0 0 0 / 80%);
    font-family: 'Poppins';
}
.form-field {
    margin-bottom: 20px;
}
.form-field input, .form-field textarea {
    background: #f5f5f5;
    border: 1px solid rgb(0 0 0 / 20%) !important;
    font-size: 15px;
}
.contact-form {
    margin-top: 40px;
}
.form-field input:focus, .form-field textarea:focus {
    border-color: #000;
    outline: none;
}
.form-field textarea {
    height: 150px;
}
.submit-btn p {
    margin: 0;
}
.submit-btn input {
    background: #22C95F;
    border: 1px solid #22C95F;
    color: #000;
    font-size: 19px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 7px;
    line-height: normal;
}
.submit-btn input:hover, .submit-btn input:focus {
    background: #000;
    color: #fff;
    border-color: #000;
}
@keyframes moveY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px); /* adjust as needed */
  }
}

@keyframes moveX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px); /* adjust as needed */
  }
}

/* media rule start */

@media(max-width:767px){
.pum-theme-478 .pum-container, .pum-theme-lightbox .pum-container {
    max-width: 100% !important;
    width: 94% !important;
    left: 3% !important;
    margin: 0px !important;

}
.pum-theme-478 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
    right: 0;
    top: 0;
    box-shadow: none;
}
}