/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
main{
	padding-bottom: 0px !important;
}

.jumbotron{
	background-color: #1AA1B7;
	border-radius: 0px;
	height: 100%;
	max-height: 100%;
	padding: 0px;
	margin-bottom: 0px;
}

.contacto{
	color: white;	
	max-width: calc(100vw - 40px);
}

.form{
	min-width: 340px;
	min-height: 500px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 0 40px -10px #000;
	padding: 20px 30px;
	max-width: calc(100vw - 60px);
	box-sizing: border-box;
	position: relative;
}

.form h2{
	color: #78788c;
}

.form input{
	width:100%;
	padding:10px;
	color: dimgrey;
	box-sizing:border-box;
	background:none;
	outline:none;
	resize:none;
	border:0;
	transition:all .3s;
	border-bottom:2px solid #bebed2
}

.form input:focus{
	border-bottom:2px solid #F2D022
}

.form textarea{
	width:100%;
	min-height: 60px;
	height: auto;
	padding-top:10px;
	box-sizing:border-box;
	background:none;
	outline:none;
	border:0;
	transition:all .3s;
	border-bottom:2px solid #bebed2
}

.form textarea:focus{
	border-bottom:2px solid #F2D022
}

.form p:before{
	content: attr(type);
	display: block;
	margin: 28px 0 0;
	font-size: 14px;
	color: #5a5a5a}

.form button{
	float: none;
	padding: 8px 60px;
	margin: 25px 0px 30px 0px;
	border: 1px solid #bebed2;
	border-radius: 0px;
	background: 0;
	color: #78788c;
	cursor: pointer;
	transition: all .3s;
	background-image: linear-gradient(#bebed2, #bebed2);
    background-position: 0% 100%;
    background-repeat: no-repeat;
	 background-size: 0% 100%;
	
}

.form button:hover{
	/*background: #78788c;*/
	color: #fff;
	background-image: linear-gradient(#bebed2, #bebed2);
	background-size: 100% 100%;
}

.form div{
	position: absolute;
	bottom: -15px;
	right: -20px;
	background: #F2D022;
	color: #fff;
	padding:16px 4px 16px 4px;
	border-radius:6px;
	font-size:13px;
	box-shadow:10px 10px 40px -14px #000
}

.form span{
	margin:0 30px 0 30px;
	padding: 0.5rem 0rem 0.5rem 0rem;
	font-size: 16px;
	border-radius: 0px;
	background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    transition: background-size .3s;
	
}
.form .groc span:hover{
	border-radius: 0px;
	background-size: 100% 3px;
}

.form a{
	color: white;
	text-decoration: none;
	border: none;
	
}
.form a:hover{
	color: white;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border: #1AA1B7 solid 1px;
	border-radius: 100%;
    background-color: #1AA1B7;
}

.custom-control-label {
	left: 1.6rem;
	font-size: 16px;
	padding-right: 2.5rem;
}

.custom-control-label a{
	color: #1AA1B7;
}

.custom-control-label a:hover{
	color: #1AA1B7;
	text-decoration: underline;
}

@media (max-width: 420px){
	.form{
	min-width: 50%;
	min-height: 500px;
	max-width: none;
	margin: 0px;
}
}