/* MASTER.CSS */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html, *, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.5em;
  line-height: 1.0;
  font-weight: 400;
  font-family: "Lato", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222222;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 300;
  color: #000000;
  line-height: 1.2;
}
h1 { font-size: 4.0rem; }
h2 { font-size: 3.6rem; }
h3 { font-size: 3.0rem; }
h4 { font-size: 2.4rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.5rem; }
p {
  margin-top: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #d90202;
  text-decoration: none;
}
a:hover {
  color: #d90202;
  text-decoration: underline;
}
:focus { outline: none; }
::-moz-focus-inner { border: 0; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
  cursor: pointer;
  display: inline-block;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 16px;
	font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  height: 48px;
  line-height: 48px;
  padding: 0 25px;
  color: #ffffff;
  background-color: #d90202;
  /* border: 1px solid #d90202; */
	-webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 7px;
  letter-spacing: 1px;
}
.button:hover,
.button:focus {
  outline: 0;
	color: #d90202;
  background-color: #ffffff;
  text-decoration: none;
	/* border-color: #d18f4c; */
}


.button.chevron {
  position: relative;
  padding-right: 40px;
  /* overflow: hidden; */
}
.button.chevron::before,
.button.chevron::after {
  content: '';
  position: absolute;
  right: 20px;
  display: block;
  height: 8px;
  width: 8px;
  /* background-color: #ffffff; */
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in;
          transition: all 0.3s ease-in;
}
.button.chevron::before {
  top: 50%;
  -webkit-transform: translateY(-100%) skew(45deg, 0);
      -ms-transform: translateY(-100%) skew(45deg, 0);
          transform: translateY(-100%) skew(45deg, 0);
}
.button.chevron::after {
  bottom: 50%;
  -webkit-transform: translateY(100%) skew(-45deg, 0);
      -ms-transform: translateY(100%) skew(-45deg, 0);
          transform: translateY(100%) skew(-45deg, 0);
}
.button.chevron:hover::before,
.button.chevron:hover::after {
  background-color: #d90202;
  /* right: -20px; */
}
.button.skew {
  -webkit-transform: skew(-21deg);
          transform: skew(-21deg);
  -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
   -khtml-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
     -moz-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
      -ms-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
       -o-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
          transition: color 0.4s, border-color 0.4s, background-color 0.4s;
}
.button.skew > span {
  display: inline-block;
  -webkit-transform: skew(21deg);
          transform: skew(21deg);
}






.button_black {
  cursor: pointer;
  display: inline-block;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 16px;
	font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  height: 48px;
  line-height: 48px;
  padding: 0 25px;
  color: #333;
  background-color: #fff;
  border: 1px solid #000;
	-webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 2px;
  letter-spacing: 1px;
}
.button_black:hover,
.button_black:focus {
  outline: 0;
	color: #fff;
  background-color: #333;
  text-decoration: none;
	/* border-color: #d18f4c; */
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 40px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #f3f3f3;
  border: 1px solid #cccccc;
  box-shadow: none;
  box-sizing: border-box;
}
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #80c35d;
  outline: 0;
}
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
}
input:disabled {
  background-color: #ebebeb;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}
ol {
  list-style: decimal inside;
}
ol, ul {
  padding-left: 0;
  margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}
li {
  /* margin-bottom: 1rem; */
  line-height: 1.5;
}


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clearfix {
	*zoom: 1;
	zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	/* line-height: 0; */
}
.clearfix:after {
	clear: both;
}
.clear {
	content: "";
	display: table;
	clear: both;
}


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}
.wrapper {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	clear: both;
	box-sizing: border-box;
	padding: 0 10px;
}
img {
	max-width: 100%;
	height: auto;
}
figure {
	margin: 0;
}






.clearfix {	*zoom: 1;	zoom: 1; }
.clearfix:before, .clearfix:after {	display: table;	content: ""; }
.clearfix:after {	clear: both; }






/* MAPA */
#map {
	height: 570px;
	width: 100%;
	/* margin-bottom: 60px; */
}
#map, #map * {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
#firstHeading {
  font-size: 22px;
}











