html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}
html, body {
  height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #555;
	background: url(images/bg2.svg) no-repeat top center #fff; 
	background-size: 100%;
	background-attachment: fixed;
}
.container, .container-fluid {
	width: 1160px;
	max-width: 100%;
	margin: 0 auto;
}
.clear, .clearfix {
	display: block;
	clear: both;
}
.height10 {
	height: 10px;
}
.height20 {
	height: 20px;
}
.height30 {
	height: 30px;
}
.height50 {
	height: 50px;
}
img {
	max-width: 100%;
	height: auto;
}
.transition {
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
a, a:hover, a:focus, a:active {
	text-decoration: none;
	color: #00AFDA;
}
.white {
	color: #fff;
}
.bg-white {
	background: #fff;
}
.blue {
	color: #00AFDA;
}
header {
	padding: 10px 0;
	background: #00AFDA;
	color: #fff;
}
h1 {
	font-weight: bold;
}
h3 {
	font-weight: bold;
	border-bottom: 2px solid #00AFDA;
	padding-bottom: 8px;
	margin-bottom: 30px;
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], select {
	width: 100%;
	margin-bottom: 18px;
	background: #fafafa;
	border: 1px solid #e0e0e0;
	padding: 8px 12px;
	height: 40px;
}
textarea {
	width: 100%;
	margin-bottom: 18px;
	background: #fafafa;
	border: 1px solid #e0e0e0;
	padding: 8px 12px;
	height: 100px;
}
hr {
	margin: 0 0 20px 0;
	padding: 0;
}
button {
	background: #00AFDA;
	color: #fff;
	border: none;
	width: 100%;
	padding: 10px 12px;
}
#response {
	margin-top: 20px;
}
.containercheckbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 300;
}

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

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

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

/* When the checkbox is checked, add a blue background */
.containercheckbox input:checked ~ .checkmark {
  /** background: url(images/check.png) no-repeat center center #2196F3; **/
  background: #2196F3;
}

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

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

/* Style the checkmark/indicator */
.containercheckbox .checkmark:after {
  left: 9px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  color: #fff;
}
.clearfix, .clear {
	clear: both;
}
.col-5 {
	display: inline-block;
	float: left;
	width: 25%;
	position: relative;
	padding: 0 15px;
}
.col-5 .fa {
	position: absolute;
	top: 12px;
	left: 30px;
}
.col-5 input {
	padding-left: 40px;
}
label.error {
	font-weight: normal;
	padding: 0;
	color: #c00;
	border-bottom: 1px dashed #c00;
	margin-top: -12px !important;
	display: block;
	font-size: 13px;
}
.enviado {
	font-size: 20px;
	text-align: center;
	padding: 80px 30px;
}
.enviado .fa {
	color: #00AFDA;
	font-size: 32px;
}


@media(max-width: 767px) {
	header {
		text-align: center;
	}
	header img {
		width: 130px;
	}
	h1 {
		font-size: 24px;
	}
	.col-5 {
		width: 50%;
	}
}