.elementor-9 .elementor-element.elementor-element-29715b5c {
    --display: flex;
    --min-height: 0px;
    --flex-direction: row;
    --container-widget-width: calc((1 - var(--container-widget-flex-grow))* 100%);
    --container-widget-height: 100%;
    --container-widget-flex-grow: 1;
    --container-widget-align-self: stretch;
    --align-items: center;
    --flex-wrap: nowrap;
    --background-transition: 0.3s;
    --padding-block-start: none;
    --padding-block-end: none;
    --padding-inline-start: 85px;
    --padding-inline-end: 85px;
}

.form-container_123e4567-e89b-12d3-a456-426614174000 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  border-radius: 8px;
}

.form-row_123e4567-e89b-12d3-a456-426614174000 {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.form-row_123e4567-e89b-12d3-a456-426614174000 label {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-input_123e4567-e89b-12d3-a456-426614174000 {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-button_123e4567-e89b-12d3-a456-426614174000 {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-button_123e4567-e89b-12d3-a456-426614174000:hover {
  background-color: #0056b3;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

/* CONTACT FORM STYLES */
.contact-form {
		max-width: 500px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		gap: 15px;
}

.contact-form label {
		display: flex;
		flex-direction: column;
		color: #2B73A8;
		font-weight: bold;
		font-size: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
		padding: 10px;
		font-size: 1rem;
		border: 1px solid #ccc;
		border-radius: 4px;
		margin-top: 5px;
}

.contact-form textarea {
		resize: vertical;
		min-height: 100px;
}

.contact-form button {
		padding: 12px;
		background-color: #2B73A8;
		color: white;
		font-weight: bold;
		font-size: 1rem;
		border: none;
		border-radius: 4px;
		cursor: pointer;
		transition: background-color 0.3s ease;
}

.contact-form button:hover {
		background-color: #0056b3;
}
.contact-form .required {
  color: red;
  font-weight: normal;
  margin-left: 4px;
}

.contact-form .error {
  color: red;
  font-weight: normal;
  font-size: 0.85rem;
  margin-top: 5px;
}

.contact-form .success {
  margin-top: 20px;
  color: green;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}