@import url(https://fonts.googleapis.com/css?family=Catamaran);
@import url(banner.css);
@import url(selector.css);
@import url(intro.css);

html, body {
  overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Catamaran', sans-serif;
	position: relative;
}

.contenedor {
	width: 99%;
	margin: auto;
}

/* PIE DE PAGINA */
footer {
	background: #2f3b53;
}

footer .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 10px;
	padding-bottom: 0px;
}

.sociales {
	width: 100%;
	font-size: 28px;
	text-align: center;
}

.sociales a {
	margin: 0px 10px;
	color: #fff;
	text-decoration: none;
}

#derechos {
	margin-top: 0px;
	display: flex;
	flex: auto;
}
#derechos .copy {
	font-size: 12px;
	color: #fff;
	flex: auto;
	padding-left: 20px;
}
#derechos img {
	margin-left: 10px;
	max-height: 32px;
}
#intro {
	background-color: #fff;
	margin-bottom: 0px;
	padding: 11px 0;
	padding-top: 18px;
}
#intro .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #fff;
}

/* Media Querys MEDIANO */
@media screen and (min-width: 768px) {

	.contenedor {
		width: 100%;
	}

}

/* Media Querys COMPLETO */
@media (min-width: 1120px) {
	.contenedor {
		width: 1120px;
	}

}
/************* ESTA ES LA PARTE DEL CONTACTO ****************************/
@media (min-width: 480px) {
#intro .contenedor #contact {
	width: 700px;
	height: 580px;
	margin-left: auto;
	margin-right: auto;
	/*background-color: #fff;*/
}
#intro .contenedor h1{
	font-size: 18px;
	color: #2f3b53;
	clear:both;
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom:0px;
}
#intro .contenedor h2{
	font-size: 14px;
	color: #2f3b53;
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	line-height: 18px;
}
#intro .contenedor #contact form {
	width: 700px;
	margin: 0px;
	padding-top: 18px;
	background-color: #f2f2f2;
	border-radius: 4px;
	border: 1px solid #b1bfc6;
	margin-bottom:10px;
}

#intro .contenedor #contact form ol {
	list-style-type: none;
	margin-left: 0px;
}
#intro .contenedor #contact form ol li {
	list-style-type: none;
}
#intro .contenedor #contact form ol li #label {
	font-size: 10px;
	color: #414141;
	width: 320px;
	text-align: left;
	margin-top: 8px;
	margin-left: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
}
#intro .contenedor #contact form ol li #campo {
	font-size: 10px;
	color: #414141;
	width: 320px;
	text-align: left;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#intro .contenedor #contact form ol li #campo input {
	font-size: 10px;
	color: #666;
	border: 1px solid #0064b2;
	padding: 5px;
	margin-left: 5px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: solid 1px #dcdcdc;
	transition: box-shadow 0.3s, border 0.3s;
}
#intro .contenedor #contact form ol li #campo input:focus {
	border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}
#intro .contenedor #contact #campo textarea {
	font-size: 10px;
	color: #666;
	border: 1px solid #5f574f;
	margin-bottom: 15px;
	margin-left: 5px;
	padding: 3px;
	-webkit-border-radius: 3px; border-radius: 3px;
	border: solid 1px #dcdcdc;
	transition: box-shadow 0.3s, border 0.3s;
}
#intro .contenedor #contact #campo textarea:focus {
	border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}
#intro .contenedor #contact form #mas {
	width: 320px;
	height: 50px;
	margin-top: 1px;
	margin-left: 5px;
}
#intro .contenedor #contact #myform ol li #pmas {
	font-size: 10px;
	color: #414141;
}
#intro .contenedor #contact #final {
	font-size: 11px;
	color: #414141;
}

#intro .contenedor #contact form #mandar {
	margin-top: 10px;
	border: 1px solid #1C5180;
	padding: 8px;
	margin-left: 190px;
	color: #FFF;
	background-color: #0064b2;
	float: left;
	font-weight: bold;
	-webkit-border-radius: 3px; border-radius: 3px;
}
/**/
input#btnsubmit2{
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
padding:5px 25px; /*add some padding to the inside of the button*/
background:#cc0088; /*the colour of the button*/
border:1px solid #919090; /*required or the default border for the browser will appear*/
/*give the button curved corners, alter the size as required*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 5px;
/*give the button a drop shadow*/
-webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
box-shadow: 0 0 4px rgba(0,0,0, .75);
/*style the text*/
color:#f3f3f3;
font-size:0.8em;
margin-left:50px;
margin-bottom:20px;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
input#btnsubmit2:hover, input#btnsubmit2:focus{
background-color :#b1005b; /*make the background a little darker*/
/*reduce the drop shadow size to give a pushed button effect*/
-webkit-box-shadow: 0 0 1px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 1px rgba(0,0,0, .75);
box-shadow: 0 0 1px rgba(0,0,0, .75);
}
/**/
}
@media (min-width: 1024px) {
#opciones .contenedor {
	width: 105%;
	/*background-color: #34b5d0;*/
}
#intro .contenedor h1{
	font-size: 26px;
	color: #2f3b53;
	clear:both;
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom:0px;
}
#intro .contenedor h2{
	font-size: 14px;
	color: #2f3b53;
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	line-height: 18px;
}
#intro .contenedor #contact {
	width: 700px;
	height: 100% !important;
	height: 1%;
	margin-left: auto;
	margin-right: auto;
	/*background-color: #34b5d0;*/
}
#intro .contenedor #contact form {
	width: 80%;
	margin: 0px;
	padding-top: 18px;
	background-color: #f2f2f2;
	border-radius: 4px;
	border: 1px solid #b1bfc6;
	margin-bottom:10px;
}

#intro .contenedor #contact form ol {
	list-style-type: none;
	margin-left: 0px;
}
#intro .contenedor #contact form ol li {
	list-style-type: none;
}
#intro .contenedor #contact form ol li #label {
	font-size: 14px;
	color: #414141;
	width: 80%;
	text-align: left;
	margin-top: 8px;
	margin-left: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
}
#intro .contenedor #contact form ol li #campo {
	font-size: 14px;
	color: #414141;
	width: 80%;
	text-align: left;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#intro .contenedor #contact form ol li #campo input {
	font-size: 14px;
	color: #666;
	border: 1px solid #0064b2;
	padding: 5px;
	margin-left: 5px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: solid 1px #dcdcdc;
	transition: box-shadow 0.3s, border 0.3s;
}
#intro .contenedor #contact form ol li #campo input:focus {
	border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}
#intro .contenedor #contact #campo textarea {
	font-size: 14px;
	color: #666;
	border: 1px solid #5f574f;
	margin-bottom: 15px;
	margin-left: 5px;
	padding: 3px;
	-webkit-border-radius: 3px; border-radius: 3px;
	border: solid 1px #dcdcdc;
	transition: box-shadow 0.3s, border 0.3s;
}
#intro .contenedor #contact #campo textarea:focus {
	border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}
#intro .contenedor #contact form #mas {
	width: 320px;
	height: 50px;
	margin-top: 1px;
	margin-left: 5px;
}
#intro .contenedor #contact #myform ol li #pmas {
	font-size: 13px;
	color: #414141;
}

#intro .contenedor #contact form #mandar {
	margin-top: 10px;
	border: 1px solid #1C5180;
	padding: 8px;
	margin-left: 190px;
	color: #FFF;
	background-color: #0064b2;
	float: left;
	font-weight: bold;
	-webkit-border-radius: 3px; border-radius: 3px;
}
#intro .contenedor #contact #final {
	font-size: 15px;
	color: #414141;
}
/**/
input#btnsubmit2{
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
padding:5px 25px; /*add some padding to the inside of the button*/
background:#cc0088; /*the colour of the button*/
border:1px solid #919090; /*required or the default border for the browser will appear*/
/*give the button curved corners, alter the size as required*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 5px;
/*give the button a drop shadow*/
-webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
box-shadow: 0 0 4px rgba(0,0,0, .75);
/*style the text*/
color:#f3f3f3;
font-size:1em;
margin-left:50px;
margin-bottom:20px;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
input#btnsubmit2:hover, input#btnsubmit2:focus{
background-color :#b1005b; /*make the background a little darker*/
/*reduce the drop shadow size to give a pushed button effect*/
-webkit-box-shadow: 0 0 1px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 1px rgba(0,0,0, .75);
box-shadow: 0 0 1px rgba(0,0,0, .75);
/**/
}

/* SQUARED FOUR */
.squaredFour {
	width: 20px;
	/*margin: 20px auto;*/
	margin: 0px;
	position: relative;
}

.squaredFour label {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	border-radius: 4px;

	-webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	background: #fcfff4;

	background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 );
}

.squaredFour label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 9px;
	height: 5px;
	background: transparent;
	top: 4px;
	left: 4px;
	border: 3px solid #333;
	border-top: none;
	border-right: none;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.squaredFour label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.5;
}

.squaredFour input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.squaredFour p {
	font-size: 13px;
	color: #414141;
	width: 500px;
	margin-left: 30px;
	position: relative;
	top: -26px;
}

/*radio button*/
input[type=radio   ]:not(old){
  width     : 2em;
  margin    : 0;
  padding   : 0;
  font-size : 1em;
  opacity   : 0;
}

input[type=radio   ]:not(old) + label{
  display      : inline-block;
  margin-left  : -2em;
  line-height  : 1.5em;
  /*font-size: 12px;*/
}

input[type=radio   ]:not(old) + label > span{
  display          : inline-block;
  width            : 0.875em;
  height           : 0.875em;
  margin           : 0.25em 0.5em 0.25em 0.25em;
  border           : 0.0625em solid rgb(192,192,192);
  border-radius    : 0.25em;
  background       : rgb(224,224,224);
  background-image :    -moz-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image :     -ms-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image :      -o-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image : -webkit-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image :         linear-gradient(rgb(240,240,240),rgb(224,224,224));
  vertical-align   : bottom;
}

input[type=radio   ]:not(old):checked + label > span{
  background-image :    -moz-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image :     -ms-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image :      -o-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image : -webkit-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image :         linear-gradient(rgb(224,224,224),rgb(240,240,240));
}

input[type=radio]:not(old):checked +  label > span > span{
  display          : block;
  width            : 0.5em;
  height           : 0.5em;
  margin           : 0.125em;
  border           : 0.0625em solid rgb(115,153,77);
  border-radius    : 0.125em;
  background       : rgb(153,204,102);
  background-image :    -moz-linear-gradient(rgb(179,217,140),rgb(153,204,102));
  background-image :     -ms-linear-gradient(rgb(179,217,140),rgb(153,204,102));
  background-image :      -o-linear-gradient(rgb(179,217,140),rgb(153,204,102));
  background-image : -webkit-linear-gradient(rgb(179,217,140),rgb(153,204,102));
  background-image :         linear-gradient(rgb(179,217,140),rgb(153,204,102));
}
