* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryFont: "Poppins", sans-serif;
  --primaryColor: #c58940;
}

body {
  font-size: 16px;
  font-family: var(--primaryFont);
}

main {
  width: 100%;
  height: 100vh;
}

.main__content {
  width: 100%;
  display: flex;
}

.location img,
.phone img,
.mail img {
  width: 20px;
}

.left__section {
  width: 40%;
  background-color: #fffbeb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left__content {
  width: 60%;
  margin: 0 auto;
}

.left__content p {
  font-size: 1em;
  color: var(--primaryColor);
  font-weight: 600;
}

.left__content h6 {
  font-size: 0.8em;
  color: black;
  font-weight: 400;
  text-align: justify;
  line-height: 170%;
  margin-top: 15px;
  margin-bottom: 20px;
}

.location,
.phone {
  margin-bottom: 20px;
}

.location h2,
.phone h2,
.mail h2 {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.location p,
.phone p,
.mail p {
  font-size: 0.8em;
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
}

.socials img {
  width: 15px;
}

.right__section {
  background: url(assets/background-image.jpg);
  background-position: center;
  background-size: cover;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right__content {
  width: 60%;
  padding: 10px 20px;
  border-radius: 10px;
}

.form__header {
  display: none;
}

label {
  font-size: 0.8em;
  color: white;
  margin-bottom: 10px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 0.7em;
  border-radius: 3px;
  border: none;
  font-family: var(--primaryFont);
}

input:focus,
textarea:focus {
  outline: none;
}

.btn {
  width: 100%;
  padding: 10px;
  background-color: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8em;
  font-family: var(--primaryFont);
  font-weight: 500;
  cursor: pointer;
}
