:root {
  --primary-color: #b38a4b;
  --secondary-color: #0f2353;
  --background-color: #f8f9fa;
  --text-color: #343a40;
  --border-color: #ced4da;
  --error-color: #9c2117;
  --success-color: #3D9E28;
}

.not-available{
	display: none !important;
}

.line_container{
	width: 100%;
	height: auto;
	display: flex;
	justify-self: flex-start;
}

.contact_page{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

/* Info */
.contact_container_info {
	width: 50%;
	background-color: var(--white);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center !important;
	font-family: 'Inter', sans-serif;
	color: var(--text-color-medium);
	line-height: 1.6;
}

.contact_container_info a {
	width: 100%;
	display: flex;
	margin-bottom: 20px;
}

.contact_container_info a:hover{
	color: blue;
}

.red_line_small {
	width: 50px;
	height: 3px;
	background-color: var(--blue);
	margin: 10px 0;
}

.contact_container_info a {
	color: var(--blue);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1em;
	margin-bottom: 10px;
	transition: color 0.3s ease;
	display: block;
}


.contact_container_info br {
	display: none;
}

.contact_container_info > div {
	margin-bottom: 5px;
}

.contact_container_info > a:nth-of-type(1) i { padding-right: 8px; }
.contact_container_info > a:nth-of-type(2) i { padding-right: 5px; }
.contact_container_info > a:nth-of-type(3) i { padding-right: 4px; }
.contact_container_info > a:nth-of-type(4) i { padding-right: 9px; }
.contact_container_info > a:nth-of-type(5) i { padding-right: 4px; }


.contact_container_info > h1 {
	width: 100% !important;
	font-size: 33px !important;
	color: black !important;
	display: block !important;
	margin-bottom: 10px !important;
	font-weight: bold;
}

.contact_container_info > h1:hover{
	color: var(--blue) !important;
	cursor: pointer;
}


/* form */
.contact_formcontainer{
	width: 50%;
	background-color: var(--white);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-family: 'Inter', sans-serif;
	color: var(--text-color-medium);
}

.contact_formcontainer > h5{
	font-size: 22px;
	color: var(--blue);
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
}

.contact_container{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	padding-bottom: 50px;
}

.contact {
  padding: 0 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  font-family: sans-serif;
  color: var(--text-color);
  min-width: 500px;
}

.contact .content_center {
  text-align: center;
  margin-bottom: 15px;
}

.contact .validation-error {
  color: var(--error-color);
  font-weight: bold;
}

.contact .validation-success {
  color: var(--success-color);
  font-weight: bold;
}

.contact li {
  list-style: none;
  margin-bottom: 15px;
}

.contact li.error input,
.contact li.error textarea {
  border-color: var(--error-color);
}

.contact input[type="text"],
.contact textarea {
  width: 100%;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  color: var(--text-color);
  outline: none;
}

.contact input[type="text"]::placeholder,
.contact textarea::placeholder {
  color: var(--secondary-color);
}

.contact input[type="text"]:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.contact textarea {
  resize: vertical;
}

.contact .button {
  background-color: var(--blue);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact .button:hover {
  background-color: var(--secondary-color);
}

@media (max-width: 600px) {
  .contact {
	min-width: 250px;
  }

  .contact input[type="text"],
  .contact textarea,
  .contact .button {
	font-size: 14px;
	padding: 8px;
  }

  .contact_formcontainer{
	margin: 0 auto;
	width: 100%;
  }

  .contact input[type="text"], .contact textarea{
	width: 100%;
	min-width: 0;
  }

  .contact{
	padding: 0;
  }
  
  .contact_container_info > h1 {
	  font-size: 25px !important;
  }
}

/* Queries all */
@media screen and (max-width: 1000px){
	.contact_page{
		flex-direction: column;
	}

	.contact_container_info{
		width: 100%;
		margin-bottom: 50px;
		max-width: 100%;
	}

	.contact_formcontainer{
		width: 100%;
	}
}