/* -------------------------------------------------------------- 

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1.5;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

table, td, th {
  vertical-align: middle;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

/* Remove annoying border on linked images. */
a img {
  border: none;
}

@font-face {
  font-family: "Belchite";
  src: url("/fonts/MacklinSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Belchite";
  src: url("/fonts/MacklinSans-LightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Belchite";
  src: url("/fonts/MacklinSans-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Belchite";
  src: url("/fonts/MacklinSans-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Belchite";
  src: url("/fonts/MacklinSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*-------------------*/
/*  Fonts  */
/*-------------------*/
/* colors */
/* break points responsive */
html {
  scroll-padding-top: 136px;
}

a {
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
a.disable {
  opacity: 0.5;
  pointer-events: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.5em;
  background-color: #fff;
  color: #DA5045;
  text-decoration: none;
  font-size: 1.2em;
  white-space: nowrap;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .btn:hover {
    background-color: #DA5045;
    color: #fff;
  }
}

.big-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.5em;
  background-color: transparent;
  color: #000;
  border: 1px solid;
  border-radius: 9999px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2em;
  white-space: nowrap;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .big-button:hover {
    background-color: #DA5045;
    color: #fff;
  }
}
@media only screen and (max-width: 600px) {
  .big-button {
    font-size: 0.8em;
  }
}

body {
  font-family: "Belchite", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #585053;
}
@media only screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  background-color: #fff;
}
@media only screen and (max-width: 600px) {
  header {
    padding: 10px 20px;
    justify-content: center;
    position: static;
  }
}
header .logo img {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 600px) {
  header .logo img {
    width: 80px;
  }
}
@media only screen and (max-width: 600px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: flex;
  gap: 2em;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  text-decoration: none;
  color: #585053;
}
header nav ul li a:not(:hover).dest {
  color: #DA5045;
}
header nav ul li a:hover {
  color: #000;
}
@media only screen and (max-width: 600px) {
  header .redes {
    display: none;
  }
}
header .redes ul {
  display: flex;
  gap: 1em;
}
header .redes ul li {
  list-style: none;
  font-size: 1.5em;
}
header .redes ul li a {
  color: #585053;
}
header .redes ul li a:hover {
  color: #000;
}

.intro .image {
  position: relative;
}
.intro .image:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: linear-gradient(0deg, rgb(218, 80, 69) 0%, rgb(218, 80, 69) 10%, rgba(218, 80, 69, 0) 100%);
}
.intro .text {
  background-color: #DA5045;
  color: #fff;
  text-align: center;
  padding: 50px 30px;
  font-style: italic;
}
@media only screen and (max-width: 600px) {
  .intro .text {
    padding: 30px 20px;
  }
}
.intro .text .title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: -0.1em;
}
@media only screen and (max-width: 600px) {
  .intro .text .title {
    line-height: 90%;
    margin-bottom: 0.3em;
  }
}
.intro .text p {
  font-size: 1.2em;
}
@media only screen and (max-width: 600px) {
  .intro .text p {
    margin-bottom: 0.6em;
  }
}
.intro .text h2 {
  font-size: 2.8em;
  font-weight: 200;
  line-height: 100%;
}
.intro .text h2 strong {
  font-weight: bold;
}

.locations {
  padding: 90px 30px;
  background-color: #F0EBE5;
}
@media only screen and (max-width: 600px) {
  .locations {
    padding: 30px 20px;
  }
}
.locations > .title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.programa {
  padding: 90px;
}
@media only screen and (max-width: 600px) {
  .programa {
    padding: 30px 20px;
  }
}
.programa > .title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.programa table {
  border-collapse: collapse;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f0f0e6;
}
.programa table td {
  border: 1px solid #000;
  padding: 0.5em 1em;
  vertical-align: top;
}
.programa table td:first-child {
  font-size: 0.8em;
  white-space: nowrap;
  color: #33A482;
  font-weight: bold;
}
.programa table td span {
  color: #DA5045;
  font-weight: bold;
}
.programa table td p {
  line-height: 110%;
  font-weight: lighter;
}
.programa table td p strong {
  font-weight: bold;
}
.programa table td p a {
  color: #000;
}
.programa table td p + p {
  margin-top: 0.5em;
}

.inscription {
  color: #DA5045;
  text-align: center;
  padding: 80px 30px;
  border-bottom: 1px solid #DA5045;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .inscription {
    padding: 50px 20px;
  }
}
.inscription .title {
  font-size: 2em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 600px) {
  .inscription .title {
    line-height: 100%;
  }
}
.inscription .inscription-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  justify-content: center;
}
.inscription .inscription-list > div {
  width: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inscription .inscription-list > div .image {
  width: 102px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inscription .inscription-list > div img {
  display: inline-block;
  max-width: 80px;
  max-height: 80px;
  margin-bottom: 10px;
}
.inscription .inscription-list > div p {
  line-height: 100%;
}
.inscription .big-button {
  position: absolute;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.inscription .big-button.inv {
  background: #DA5045;
  color: #F0EBE5;
}
@media only screen and (min-width: 900px) {
  .inscription .big-button.inv:hover {
    background-color: #fff;
    color: #DA5045;
  }
}

.rutas {
  background-color: #F0EBE5;
  padding-top: 120px;
}
@media only screen and (max-width: 600px) {
  .rutas {
    padding-top: 60px;
  }
}
.rutas .ruta {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
@media only screen and (max-width: 600px) {
  .rutas .ruta {
    display: block;
  }
}
.rutas .ruta + .ruta {
  border-top: 1px solid #DA5045;
}
.rutas .ruta > div {
  padding: 50px 30px;
}
@media only screen and (max-width: 600px) {
  .rutas .ruta .image {
    padding: 20px;
  }
}
.rutas .ruta .text {
  color: #DA5045;
  padding-right: 120px;
}
@media only screen and (max-width: 600px) {
  .rutas .ruta .text {
    padding: 0 20px 30px;
  }
}
.rutas .ruta .text .title {
  font-size: 3em;
  font-weight: bold;
  border-bottom: 1px solid #DA5045;
}
.rutas .ruta .text .info {
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .rutas .ruta .text .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.rutas .ruta .text .info span {
  display: block;
  margin-bottom: -10px;
}
.rutas .ruta .text .info p {
  font-size: 2.2em;
}
.rutas .ruta .text .info p strong {
  font-weight: 600;
}
.rutas .ruta .text .avitu {
  color: #33A482;
  margin-bottom: 20px;
}
.rutas .ruta .text .avitu span {
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: 1px;
}
.rutas .ruta .text .avitu p {
  font-size: 1.5em;
  line-height: 120%;
  text-wrap: balance;
}
.rutas .ruta .text .buttons {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 600px) {
  .rutas .ruta .text .buttons {
    flex-direction: column;
    gap: 10px;
  }
}
.rutas .ruta .text .buttons a {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .rutas .ruta .text .buttons a {
    width: auto;
  }
}

.ban-dorsal {
  background: url(/img/bckg-ban-dorsal.webp) no-repeat center center;
  background-size: cover;
  padding: 50px 30px;
  text-align: center;
}
.ban-dorsal p {
  font-size: 2em;
  color: #fff;
  margin-top: 15px;
}
@media only screen and (max-width: 600px) {
  .ban-dorsal p {
    line-height: 110%;
  }
}
.ban-dorsal .big-button {
  border-color: #33A482;
  color: #fff;
  background-color: #33A482;
}
@media only screen and (min-width: 900px) {
  .ban-dorsal .big-button:hover {
    background-color: #000;
    color: #F0EBE5;
    border-color: #000;
  }
}

.acompanantes {
  text-align: center;
  padding: 50px 30px;
  background-color: #F0EBE5;
}
.acompanantes .text {
  max-width: 860px;
  margin: 0 auto;
}
.acompanantes .text .subtitle {
  font-size: 2em;
  color: #DA5045;
  line-height: 100%;
  margin-bottom: 0.5em;
}
.acompanantes .text .big-button {
  margin-top: 1em;
}

.caravanas {
  text-align: center;
  padding: 50px 30px;
  background: url(/img/caravanas.webp) no-repeat center center;
  background-size: cover;
}
.caravanas .text {
  max-width: 860px;
  margin: 0 auto;
}
.caravanas .text .subtitle {
  font-size: 2em;
  color: #DA5045;
  line-height: 100%;
  margin-bottom: 0.5em;
}
.caravanas .text .big-button {
  margin-top: 1em;
}

.colaborate {
  text-align: center;
  padding: 50px 30px;
}
.colaborate .text {
  max-width: 860px;
  margin: 0 auto;
}
.colaborate .text .subtitle {
  font-size: 2em;
  color: #DA5045;
  line-height: 100%;
  margin-bottom: 0.5em;
}
.colaborate .text .big-button {
  margin-top: 1em;
}

.posts {
  background-color: #F0EBE5;
  padding: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 600px) {
  .posts {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }
}
.posts article .text {
  margin-top: 20px;
}
.posts article .text h3 {
  font-size: 2em;
  font-weight: bold;
  color: #DA5045;
}
.posts article .text p {
  line-height: 120%;
}
.posts article .text p a:not(:hover) {
  color: #DA5045;
}
.posts article:first-child .text h3 {
  color: #33A482;
}
.posts article:first-child .text p a:not(:hover) {
  color: #33A482;
}

.clasificacion {
  text-align: center;
  padding: 250px 30px 50px;
  background: url("/img/clasificacion.jpg") center top no-repeat #f0f0e6;
  background-size: 100% auto;
}
.fotos {
  text-align: center;
  padding: 50px 30px;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .fotos {
    padding: 50px 0 0px;
  }
}
.fotos .title {
  font-size: 2em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 600px) {
  .fotos .title {
    margin-bottom: 0;
  }
}
.fotos .big-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
}
.fotos .big-button:not(:hover) {
  background-color: #fff;
}
@media only screen and (max-width: 600px) {
  .fotos .big-button {
    position: static;
    transform: none;
    margin-top: 10px;
    margin-bottom: 30px;
  }
}
.fotos .tns-outer .tns-controls,
.fotos .tns-outer .tns-nav {
  display: none;
}
.fotos .tns-outer > button {
  display: none;
}

footer .seo {
  background-color: #585053;
  color: #F0EBE5;
  padding: 40px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-size: 0.75em;
  line-height: 130%;
  font-weight: lighter;
}
@media only screen and (max-width: 600px) {
  footer .seo {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }
}
footer .seo > div:first-child {
  font-size: 1.5em;
  line-height: 130%;
}
footer .financian {
  padding: 30px;
}
@media only screen and (max-width: 600px) {
  footer .financian {
    padding: 10px;
  }
}
footer .financian > div {
  text-align: center;
}
footer .financian > div .title {
  margin-bottom: 10px;
}
footer .financian > div .list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-inline: auto;
}
@media only screen and (max-width: 600px) {
  footer .financian > div .list {
    gap: 10px;
    margin-bottom: 30px;
  }
}
footer .financian > div .list img {
  max-width: 100%;
}
footer .legal {
  background-color: #585053;
  text-align: center;
  padding: 10px 30px;
  font-size: 0.7em;
  color: #fff;
}
footer .legal a:not(:hover) {
  text-decoration: none;
  color: #fff;
}
footer .close {
  text-align: center;
  padding: 20px 30px;
  color: #fff;
  background-color: #DA5045;
  line-height: 100%;
}

/*# sourceMappingURL=styles.css.map */
