@import url("styles.css");

main {
  background-color: var(--darkgrey);
  padding-bottom: 4vh;
}

nav a:nth-child(3) {
  color: var(--orange);
}


.category_headline {
  margin: 0px 0px;
  padding: 60px 0px 30px 0px;
}

.contact_container h1 {
  font-family: Eurostile_Bold, sans-serif;
  font-weight: 100;
  text-align: center;
  color: var(--orange);
  padding-bottom: 30px;
  font-size: 1.8rem;

}

p {
  font-family: Eurostile_Normal;
  font-weight: 400;
  padding: 0px 10px 20px 10px;
  line-height: 1.6;
  text-align: center;
}

.contact_container * {
  box-sizing: border-box;
  font-family: "", sans-serif;

  /* colors */
  --color-blue: #2552d0;
  --color-light-blue: #3266e3;
  --color-gray: #e5e7eb;
  --color-dark-gray: #9da3ae;
  --color-pink: #edadd2;

}

.contact_container {
  --c-width: 50%;
  --c-max-width: 700px;

  width: var(--c-width);
  max-width: var(--c-max-width);
  display: block;
  margin: 7vh auto 70px auto;
  background-color: var(--grey);
  padding: 40px 60px 60px 60px;
  border-radius: 5px;
  border: 1px solid var(--lightgrey);
 
}

.contact_form {
  background: #00000000;

}

.contact_form label {
  display: block;
  padding: 20px 0 2px 0;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;

}

.contact_form input,
.contact_form textarea {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 6px;
  background-color: var(--white_desat);
  border: none;
  border: 4px solid var(--white_desat);
  outline: none;
  border-radius: 5px;
  color: var(--darkgrey);
  font-family: Eurostile_Normal;
}

.contact_form input:focus,
.contact_form textarea:focus {
  background-color: var(--white_desat_bright);
  color: var(--darkgrey);
}


.contact_form button {
  display: block;
  margin-top: 40px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  border-color: transparent;
  background-color: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  font-family: Eurostile_Normal, sans-serif;
  border-radius: 4px;
  cursor: pointer;

  transition: 300ms all;
}

.contact_form button:hover {
  background-color: var(--light-orange);
}

.formcarry-alert {
  padding: 12px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
  display: none;
}

.formcarry-alert.visible {
  display: block;
}

.formcarry-alert.success {
  background: #69cf9d;
}

.formcarry-alert.error {
  background: #de524c;
}



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

 	.contact_container {

	  width: 93%;
	  max-width: var(--c-max-width);
	  margin: 7vh auto 70px auto;
    padding: 40px 30px 60px 30px;

	}
 
}