@charset "UTF-8";

#contactform {
    width: 94%;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: auto;
    padding: 25px;
    max-width: 800px;
    border-radius: 8px;
    background-color: #fff;
    color: #444;
    text-align: left;
}
#contactform .robot {
    text-align: right;
    width: 304px;
    display: block;
    margin-left: auto;
    margin-bottom: 15px;
    margin-top: 20px;
}

#contactform p {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 10px;
    color: #FFFFFF;
}
#contactform h4 {
    font-size: 22px;
    color: #142a4b;
}
#contactform h5 {
    font-size: 20px;
    padding-top: 15px;
}
label {
    font-size: 17px;
    padding-bottom: 37px;
    padding-top: 6px;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #20539f;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}


input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[list], textarea {
    height: 36px;
    width: 100%;
    margin-top: 4px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 17px;
    color: #3C3C3C;
    border-style: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #E1E8FF;
}

/* Customize the label (the container) */
.chkb  {
    display: block;
    position: relative;
    padding-bottom: 6px;
    padding-top: 6px;
    padding-left: 35px;
    margin-top: 3px;
    margin-bottom: 3px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: rgba(51,51,51,1.00);
    font-size: 14px;
}

/* Hide the browser's default checkbox */
.chkb input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.chkb:hover input ~ .checkmark {
  background-color: #A9B5DF;
}

/* When the checkbox is checked, add a blue background */
.chkb input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chkb input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.chkb .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

textarea {
	width: 100%;
	height: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input.half1  {
	width: 49%;
	margin-right: 2%;
	float: left;
}
input.half2  {
	width: 49%;
	float: left;
}

input[type=submit], input[type=reset] {
    display: block;
    width: 30%;
    margin: 5px 0px 5px auto;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    border-width: 0px;
    padding: 15px;
    border-style: none;
    height: 20px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    color: #fff;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type=submit] {
    background-color: #4B9F46;
}

input[type=reset] {
    background-color: #646464;
}

input[type=submit]:hover {
    background-color: #141c28;
    color: #FFFFFF;
}

@media only screen and (max-width: 600px) {
	
#contactform {
    width: 100%;

}	
}

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


}
input[type=reset]:hover {
    background-color: #C3C3C3;
    color: #404041;
}
