@charset "utf-8";
/* CSS Document */
/* # =================================================================
   # Forms
   # ================================================================= */
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 96%;
  padding: 10px 2%;
  border: none;
  border-radius: 5px;
  outline: none;
	background-color: #f4f8ff;
}
textarea {
  resize: vertical;
}
select {
  width: 100%;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  outline: none;
	background-color: #f4f8ff;
}

.pull-down {
	width: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.pull-down::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.pull-down select {
    appearance: none;
    color: #333333;
}


input {
  border-radius: 0;
	outline: none;
	border: none;
	background-color: transparent;
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"] {
  width: auto; /* Firefox 36+ */
}

[type="search"] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"], /* Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */


/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

[type="search"] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}



.contact-form {
	max-width: 900px;
	width: 90%;
	margin: 0 auto 10% auto;
}
.contact-form-text {
	line-height: 200%;
}

.form-box {
  width: 100%;
	margin: 10% 0 0 0;
}
.form-box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.form-box dt, .form-box dd {
  padding-bottom: 30px;
}
.form-box dt {
  width: 40%;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}
.form-box dt.message {
  padding-top: 10px;
  vertical-align: top;
}
.form-box dd {
  width: 60%;
}

.required {
	font-size: 0.8rem;
	color: #fff;
	display: inline-block;
	background-color: #008ddb;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0 0 0 10px;
}

.checkbox {
	text-align: center;
	margin: 5% 0 10% 0;
}


.btn-wrapper {
  text-align: center;
	min-width: 220px;
  padding: 10px;
	margin: 30px auto 0 15%;
}



@media screen and (max-width: 768px){
.form-box {
    display: block;
  }
.form-box dl {
	display: block;
	margin: 5% 0 ;
}
  .form-box dt, .form-box dd {
    display: block;
    width: 100%;
  }
  .form-box dt {
    padding-bottom: 1em;
  }
  .form-box dt.message {
    padding-top: 0;
  }
  .form-box dd {
    padding-bottom: 1em;
  }
	
}
