body{
	font-family: Recta-Regular!important;
}

/* Head */
.main-container {
    width: 100%;
    max-width: 600px;
	min-height: 659px;
    margin: auto;
	box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.17);
}
header {
    width: auto;	
    padding: 24px 30px;
    position: relative;
}
.head-inner {
    display: flex;
    vertical-align: middle;
}
.container-inner {
    padding: 30px;
}
h1 {
    height: auto;
    color: #000000;
    font-size: 38px;
    font-weight: 400;
    line-height: 1em;
    margin: auto;
    padding-bottom: 10px;
    padding-top: 15px;
    position: relative;
    width: 100%;
}
hr {
    width: 100%;
    background: #000a12;
    margin: auto;
    height: 1px;
    border: none;
}
p {
    color: #000a12;
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    line-height: 1.2em;
}
.inner-text {
    padding: 18px 0px 11px 0px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], select {
    width: 100%;
    height: 37px;
    font-size: 18px;
    line-height: 1em;
    border: 1px solid #000a12;
    margin-bottom: 20px;
    margin-top: 5px;
    padding: 0px 10px;
    font-family: Recta-Regular !important;
    box-sizing: border-box;
}
select{
	width:100%;
	background: url(../images/dropdown.png) no-repeat right;
	background-position: 97% center;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
	padding: 0 7px;
  font-family: Recta-Regular !important;

}

input[type="submit"] {
    height: 38px;
    margin-top: 10px;
    border: 1px solid rgb(79, 193, 224);
    background-color: rgb(79, 193, 224);
    color: #fff;
    width: 100%;
    text-align: left;
    background-image: url(../images/btn-submit-arrow.png);
    background-repeat: no-repeat;
    background-position: 98% 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: Recta-Regular !important;
    line-height: 40px;
}

.buttonclass {
    height: 38px;
    border: 1px solid #000a12;
    background-color: #000a12;
    color: #fff;
    width: 100%;
    text-decoration: none;
    padding: 9px 20px;
    text-align: left;
    background-repeat: no-repeat;
    background-position: 98% 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: Recta-Regular !important;
    line-height: 40px;
}
::-webkit-input-placeholder { /* Edge */
  color: #a7a9ac;
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
}
:-ms-input-placeholder { /* Internet Explorer */
  color: #a7a9ac;
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
}
::placeholder {
  color: #a7a9ac;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
}
.emailBox {
  padding-bottom: 20px;
}
.messageBox {
  padding-bottom: 20px;
}
label {
  line-height: 22px;
}

/* checkbox */
.container {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -5px;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border: 1px solid #000a12;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ffffff;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #ffffff;
  border: 1px solid #000a12;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #000a12;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

select:focus {
  background: url(../images/dropdown-up.png) no-repeat right;
  background-position: 97% center;
  font-family: Recta-Regular !important;
}



