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

/* ========================= Contact Form Only ========================= */

.contact-form {
    background: #FDF8F8;
    padding: 30px 40px;
    border-radius: 15px;
}

.contact-form .group-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin: 0 0 20px;
}

.contact-form .group-row.form-footer-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
}

.contact-form .group-row.form-footer-btn p {
  margin-bottom: 0;
}

.contact-form .group-row .form-group {
  flex: 1;
}

.contact-form .group-row .form-group p {
  margin-bottom: 0;
}

.contact-form .group-row .form-group .form-label {
    font-family: "Montserrat", Sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 30px;
    color: #282828;
    margin: 0 0 5px;
    display: block;
}

.contact-form .group-row .form-group .form-control {
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  padding: 9px 20px;
  border: 1px solid #C8C8C8;
  color: #886752;
  border-radius: 10px;
  box-shadow: none;
  outline: none;
  width: 100%;
}

.contact-form .group-row .form-group textarea.form-control {
  min-height: 173px;
}

span.required-red {
  color: #3D44E3;
}


/* Submit Button Styling */
.contact-form .primary-btn {
  background-color: #DF6E8A;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
	min-width: 240px;
}

.group-row h3 {
    font-family: "Atteron", Sans-serif;
    font-size: 33px;
    font-weight: 500;
    line-height: 44px;
    color: #DF6E8A
}

/* ========================= Responsive ========================= */

@media screen and (max-width: 1399px) {
  .contact-form .group-row {
    gap: 20px;
  }

  .contact-form .group-row .form-group .form-control,
  .contact-form .group-row .form-group .form-label {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 991px) {
  .contact-form .group-row .form-group .form-control,
  .contact-form .group-row .form-group .form-label {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 600px) {
  .contact-form {
    padding: 20px;
  }

  .contact-form .group-row {
    flex-direction: column;
  }

  .contact-form .group-row .form-group {
    width: 100%;
  }
}



/* Placeholder small font */
.contact-form .form-control::placeholder {
    font-size: 16px;
    color: #A0A0A0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

/* For older browsers */
.contact-form .form-control::-webkit-input-placeholder {
    font-size: 16px;
    color: #A0A0A0;
}
.contact-form .form-control:-ms-input-placeholder {
    font-size: 16px;
    color: #A0A0A0;
}
.contact-form .form-control::-ms-input-placeholder {
    font-size: 16px;
    color: #A0A0A0;
}

