/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* =========================================================
   CONTACT FORM 7 - CUSTOM
   ========================================================= */

.contact-form {
    width: 100%;
    max-width: 665px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Xóa margin mặc định của p do Contact Form 7 sinh ra */
.contact-form p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Field */
.contact-form .contact-field {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   PHONE + EMAIL - 2 CỘT
   ========================================================= */

.contact-form .contact-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;

    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-form .contact-row .contact-field {
    width: 100%;
    min-width: 0;
    margin: 0 0 20px 0;
}

/* =========================================================
   CF7 WRAPPER
   ========================================================= */

.contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================================
   INPUT
   ========================================================= */

.contact-form input.contact-input {
    display: block;

    width: 100%;
    height: 40px;

    margin: 0;
    padding: 0 20px;

    box-sizing: border-box;

    background: #ffffff;

    border: none;
    border-radius: 0;

    outline: none;
    box-shadow: none;

    color: #111111;

    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

/* =========================================================
   TEXTAREA
   ========================================================= */

.contact-form textarea.contact-textarea {
    display: block;

    width: 100%;
    height: 60px;

    min-height: 60px;
    max-height: 90px;

    margin: 0;
    padding: 18px 20px;

    box-sizing: border-box;

    background: #ffffff;

    border: none;
    border-radius: 0;

    outline: none;
    box-shadow: none;

    color: #111111;

    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;

    resize: none;
}

/* =========================================================
   PLACEHOLDER
   ========================================================= */

.contact-form input.contact-input::placeholder,
.contact-form textarea.contact-textarea::placeholder {
    color: #111111;
    opacity: 1;
}

/* =========================================================
   FOCUS
   ========================================================= */

.contact-form input.contact-input:focus,
.contact-form textarea.contact-textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* =========================================================
   BUTTON
   ========================================================= */

.contact-form .contact-submit {
    width: 100%;
    margin: 8px 0 0 0;
    padding: 0;
	position: relative;
}

.contact-form input.contact-submit-btn {
    display: block;

    width: 100%;
    height: 50px;

    margin: 0;
    padding: 0 20px;

    box-sizing: border-box;

    background: #86BB5D;
    color: #ffffff;

    border: none;
    border-radius: 5px;

    font-family: inherit;
    font-size: 18px;
    font-weight: 700;

    text-align: center;

    cursor: pointer;
}

.contact-form input.contact-submit-btn:hover {
    background: #064d91;
    color: #ffffff;
}

/* =========================================================
   CF7
   ========================================================= */

.contact-form .wpcf7-not-valid {
    border: 1px solid #dc3232 !important;
}

.contact-form .wpcf7-not-valid-tip {
    display: none;
}

/* =========================================================
   SLIDER HOME
   ========================================================= */
.slider-home{
	max-height: 70vh;
}
/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .contact-form .contact-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .contact-form input.contact-input {
        height: 55px;
        padding: 0 16px;
        font-size: 15px;
    }

    .contact-form textarea.contact-textarea {
        height: 110px;
        min-height: 110px;
        max-height: 110px;
        padding: 16px;
        font-size: 15px;
    }

    .contact-form input.contact-submit-btn {
        height: 58px;
        line-height: 58px;
        font-size: 17px;
    }
}