/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.cf7-contact-form {
    width: 100%;
}

.cf7-field {
    margin-bottom: 12px;
}

.wpcf7-not-valid-tip {
	font-size: 12px;
	margin-top: 3px;
}

.wpcf7-spinner {
	display: none;
}

.cf7-field br {
    display: none;
}

.cf7-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #111;
}

.cf7-field input,
.cf7-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dfe5ed;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 12px;
    padding: 0 10px;
    outline: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.cf7-field input {
    height: 29px;
}

.cf7-field textarea {
    height: 67px;
    padding: 9px 10px;
    resize: vertical;
}

.cf7-field input::placeholder,
.cf7-field textarea::placeholder {
    color: #9aa3b2;
    opacity: 1;
}

.cf7-field input:focus,
.cf7-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.08);
}

.cf7-submit {
    margin-top: 14px;
}

.cf7-submit input[type="submit"] {
    width: 100%;
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    background: #155eef;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cf7-submit input[type="submit"]:hover {
    background: #0d4fd6;
}

.main-footer{
	display:none !important;
}

/* Animations */
/* Hover Zoom effect */
.zoom-effect {
	transition: all .5s ease-in-out;
}

.zoom-effect:hover {
	transform: translateY(-3px);
    border-color: #5FA8FF;
    box-shadow: 0 16px 30px -20px rgba(46, 124, 246, 0.5);
}