/* 
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 */

.light {
	color:#C9A98A;
}

.testimonial {
    font-size: 100px;
    color: #CDADA1C4;
    display: inline-block;
    position: relative;
    top: 45px;
}

.testimonial2 {
    font-size: 100px;
    color: #CDADA1C4;
    display: inline-block;
    position: relative;
    top: 45px;
}

.bold {
	font-weight:bold;
}

.custom-contact-form {
    max-width: 700px;
}

.custom-contact-form .two-cols {
    display: flex;
    gap: 40px;
}

.custom-contact-form .form-group {
    width: 100%;
    margin-bottom: 25px;
}

.custom-contact-form label {
    display: block;
    font-size: 20px;
    color: #2d2d2d;
    margin-bottom: 2px;
    font-weight: 400;
}

.custom-contact-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #9d7f73;
    background: transparent;
    padding: 10px 0;
    font-size: 18px;
    color: #2d2d2d;
    outline: none;
    box-shadow: none;
}

.custom-contact-form input:focus {
    border-bottom: 1px solid #7f6155;
}

.custom-contact-form .form-submit {
    margin-top: 20px;
}

.custom-contact-form input[type="submit"] {
    width: auto;
    min-width: 170px;
    height: 56px;
    border: 1px solid #d8b7ab;
    border-radius: 40px;
    background: transparent;
    color: #d8b7ab;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 35px;
}

.custom-contact-form input[type="submit"]:hover {
    background: #d8b7ab;
    color: #fff;
}

.custom-contact-form .wpcf7-spinner {
    display: block;
    margin-top: 15px;
}


.move-right-hover{
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.move-right-hover:hover{
    transform: translateX(15px);
}


@media (max-width: 768px) {

    .custom-contact-form .two-cols {
        flex-direction: column;
        gap: 0;
    }

}