/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*** Fonts ***/
.material-symbols-outlined {
  vertical-align: middle;
  font-size: 20px;
  font-variation-settings:
  'FILL' 0,
  'wght' 500,
  'GRAD' 200,
  'opsz' 48
}

@font-face {
  font-family: 'icons_social_media_8regular';
  src: url('../fonts/icons_social_media_8-webfont.woff2') format('woff2'),
       url('../fonts/icons_social_media_8-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/*** General Styles ***/
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  position: relative;
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 16px 0;
  font-weight: bolder;
}
h2 {
  font-family: 'Saira Condensed', sans-serif;
}


p {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 12px 0;
  line-height: 20px;
  font-size: 16px;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  h1, h2, h3, h4, h5 {
    margin: 14px 0;
  }
  p {
    margin: 10px 0;
    line-height: 18px;
    font-size: 14px;
  }
}

.row {
  display: flex;
}
.row > .col {
  box-sizing: border-box;
  padding: 24px 12px 24px 24px ;
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.row > .col.empty {
  padding-top: 0;
  padding-bottom: 0;
}
.row > .col + .col {
  padding-left: 12px;
}
.row > .col:last-child {
  padding-right: 24px;
}

@media only screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .row > .col {
    padding: 16px 32px;
    flex: 1 1 auto;
  }
  .row > .col + .col {
    padding-left: 32px;
  }
  .row > .col:last-child {
    padding-right: 32px;
  }
}

/*** Buton consulta horarios ***/
.consulta_horarios_wrapper {
  position: relative;
  height: 32px;
  display: none;
}


.consulta_horarios {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  background-color: #DDD;
  line-height: 32px;
  padding: 0 0 0 10px;
  border-radius: 12px;
  display: inline-block;
  position: absolute;
  right: 24px;
  top: 12px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.consulta_horarios .material-symbols-outlined {
  font-size: 32px;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .consulta_horarios_wrapper {
    display: flex;
    justify-content: center;
  }
  .consulta_horarios {
    position: unset;
    align-self: center;
    margin: 15px 15px 0 0;
  }
}

/*** Navigation ***/
body.sticky {
  padding-top: 50px;
}
nav#navigation {
  background-color: #FFF;
  width: 100%;
}
nav#navigation.sticky {
  position: fixed;
  top: 0;
  background-color: #FFF;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}
nav#navigation #toggleMenu {
  display: none;
  margin: 3px 0 0 3px;
  color: #000;
}
nav#navigation #toggleMenu .material-symbols-outlined {
  font-size: 44px;
}
nav ul {
  padding: 10px 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav ul li {
  padding: 0  0 0 9px;
  /* border-right: 1px solid #000; */
}
nav ul li:first-child {
  padding-left: 0;
}
nav ul li::after {
  content: "|";
  display: inline-block;
  padding-left: 9px;
  color: #ffd93b;
}
nav ul li:last-child::after {
  display: none;
}
nav ul li.selected a {
  border-bottom: 4px solid #000;
}
nav ul li a {
  display: inline-block;
  padding-bottom: 5px;
  font-size: 15px;
  text-decoration: none;
  color: #000;
  /* font-weight: bold; */
}

@media only screen and (max-width: 1024px) {
  nav#navigation #toggleMenu {
    display: inline-block;
  }
  nav ul {
    display: none;
  }
  nav ul.open {
    display: block;
  }
  nav ul.open li {
    display: block;
    padding: 0;
    text-align: center;
    margin: 10px 0;
    font-size: 18px;
  }
  nav ul.open li::after {
    display: none;
  }
}

/*** All Sections  ***/
section {
  padding: 24px 0;
  max-width: 1200px;
  margin: auto;
}

section header h2 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: bolder;
  font-size: 38px;
  color: #000;
  border-left: 2px solid #ffd93b;
  padding-left: 25px;
  margin-left: auto;
  margin-right: auto;
}

/*** Section home ***/
#home {
  padding-top: 0;
}
#home img {
  width: 100%;
}
#home p {
  text-align: center;
}
#home .continue {
  text-align: center;
  margin-top: 60px;
}
#home .continue img {
  width: 51px;
}
@media only screen and (max-width: 1024px) {
  #home .col:last-child {
    order:-1;
    padding: 0;
  }
  #home .continue {
    margin-top: 30px;
  }
}

/*** Section el camping ***/
#elcamping h3.importante {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: bolder;
  background-color: #b6123a;
  text-align: center;
  color: #FFF;
  font-size: 28px;
  padding: 4px 0;
}
@media only screen and (max-width: 768px) {
  #elcamping h3.importante{
    font-size: 20px;
  }
}
#elcamping h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
#elcamping img {
  width: 100%;
}
#elcamping .warningbox {
  border: 2px solid #ffd93b;
  padding: 0 14px;
  text-align: center;
}
#elcamping .warningbox p {
  text-align: center;
}
#elcamping .warningbox h4 {
  color: #b6123a;
}
#elcamping .warningbox2 {
  background-color: #ffd93b;
  color: #b6123a;
  text-align: center;
  padding: 16px 12px;
}
@media only screen and (max-width: 768px) {
  #elcamping .warningbox {
    margin-top: 24px;
  }
}

/*** Section inscripciones ***/
#inscripciones {
  background-image: url('../img/fondo_inscripciones.jpg');
  padding-left: 0;
  padding-right: 0;
  max-width: unset;
  padding-top: 104px;
  position: relative;
}
#inscripciones .row {
  max-width: 1200px;
  margin: auto;
}
#inscripciones header {
  text-align: center;
  margin-bottom: 80px;
}
#inscripciones header h2 {
  display: inline-block;
}
#inscripciones .box {
  background-color: #FFF;
  border-radius: 15px;
  text-align: center;
  padding: 0 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#inscripciones .box img {
  margin: -80px auto 0;
  width: 217px;
}
#inscripciones .box h3 {
  font-size: 38px;
  color: #b6123a;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  #inscripciones .box h3 {
    font-size: 26px;
  }
}
#inscripciones .box.blue h3 {
  color: #51c7cb;
}
#inscripciones .box h4 {
  margin-top: 8px;
  margin-bottom: 24px;
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  #inscripciones .box h4 {
    font-size: 18px;
  }
}
#inscripciones .box ul {
  text-align: left;
  list-style-type: disc;
  margin-left: 30px;
}
#inscripciones .box ul li {
  line-height: 28px;
}
#inscripciones .box ul li .red {
  color: #b6123a;
}
#inscripciones .box .btns {
  display: flex;
  margin-top: auto;
  flex-direction: row;
  justify-content: space-evenly;
}
#inscripciones .box .btns > div {
  display: flex;
  flex-direction: column;
  padding: 8px;
  flex: 1 1 50%;
}
#inscripciones .box .btns span {
  font-size: 64px;
  color: #b6123a;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  #inscripciones .box .btns span {
    font-size: 48px;
  }
}
#inscripciones .box.blue .btns span {
  color: #51c7cb;
}
#inscripciones .box .btns a {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  border: none;
  background: #b6123a;
  padding: 12px;
  color: #FFF;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  cursor: pointer;
}
#inscripciones .box.blue {
  position: relative;
}
#inscripciones .agotado {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url('../img/agotado.png') no-repeat center center;
  background-size: contain ;
}
#inscripciones #countdown {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-weight: bold;
  color: #b6123a;
  /* cursor: progress; */
  text-align: center;
  padding: 16px;
}
#inscripciones #countdown span {
  font-size: 60px;
  display: block;
  text-align: center;
  font-weight: normal;
  color: #000;
}
@media only screen and (max-width: 768px) {
  #inscripciones #countdown {
    font-size: 44px;
  }
  #inscripciones #countdown span {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #inscripciones .box .btns a {
    font-size: 16px;
  }
}
#inscripciones .box.blue .btns a {
  background: #969595;
}
@media only screen and (max-width: 768px) {
  #inscripciones .box.blue {
    margin-top: 70px;
  }
}

/*** Section actuaciones ***/
#actuaciones header {
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
#actuaciones header h2 {
  text-align: center;
}
#actuaciones h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
#actuaciones img {
  width: 100%;
}
#actuaciones ul {
  text-align: center;
}
#actuaciones ul li {
  display: inline-block;
  margin: 0 1px;
}
#actuaciones ul li a {
  font-family: 'icons_social_media_8regular';
  font-size: 38px;
  line-height: 38px;
  text-decoration: none;
  color: #969595;
  vertical-align: middle;
}
#actuaciones ul li a:hover {
  color: #b6123a;
}

/*** Section actividades ***/
#actividades header {
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
}
#actividades header h2 {
  text-align: center;
}
#actividades .col {
  /* display: flex;
  flex-direction: column; */
}
#actividades img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
#actividades .flip-card img.etiqueta {
  width: auto;
  position: absolute;
  top:12px;
  left:-12px;
}
#actividades img.etiqueta {
  width: auto;
  position: absolute;
  top:36px;
  left:0;
}
#actividades .col:first-child > img.etiqueta {
  left: 12px;
}
@media only screen and (max-width: 1024px) {
  #actividades img.etiqueta,
  #actividades .col:first-child > img.etiqueta {
    top:40px;
    left:20px;
  }
}
#actividades .horario {
  background-color: #969595;
  color: #FFF;
  font-size: 16px;
  padding: 6px 0;
  text-align: center;
}
#actividades h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
#actividades h4 {
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 10px;
}
#actividades ul {
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
  font-size: 15px;
}
#actividades ul li {
  line-height: 22px;
}
#actividades ul li .material-symbols-outlined {
  margin-right: 5px;
}
#actividades ul.red .material-symbols-outlined {
  color: #b6123a;
}
#actividades ul.blue .material-symbols-outlined {
  color: #51c7cb;
}
#actividades .desc {
  padding: 0 15px 25px;
  border: 1px solid #000;
  border-top:0;
  overflow: hidden;
  /* min-height: 368px; */
  display: flex;
  flex-direction: column;
  /* position: relative; */
  flex: 1;
}
#actividades .desc p {
  margin: 10px 0;
}

#actividades .desc button {
  font-weight: bold;
  font-size: 16px;
  background: #ffd93b;
  /* color: #FFF; */
  color: #444;
  padding: 6px 12px;
  border-radius: 12px;
  border: none;
  margin-top: auto;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  cursor: pointer;
}

.flip-card {
  /* background-color: transparent; */
  /* width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1; */
  
  /* width: 100%; */
  /* height: 629px; */
  perspective: 1000px; /* Remove this if you don't want the 3D effect */

  flex: 1;
  display: flex;
  min-height: auto;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  /* text-align: center; */
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card.flipNow .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
/* .flip-card-back { */
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}
.flip-card-back {
  position: absolute;
  top: 0;
  background-color: #DADADA;
  overflow: auto;

}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
  /* background-color: #bbb; */
  color: black;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Style the back side */
.flip-card-back {
  /* background-color: dodgerblue; */
  /* color: white; */
  transform: rotateY(180deg);
}
.flip-card-back .inner-flip-card-back::before {
  content: "";
  position: absolute;
  z-index: 2;
  box-shadow: 0px 10px 10px -10px #000 inset;
  height: 20px;
  width: 100%;
  margin-bottom: -20px;
  top: 0;
  right: 0;
}
.flip-card-back .inner-flip-card-back::after {
  content: "";
  position: absolute;
  z-index: 2;
  box-shadow: 0px -10px 10px -10px #000 inset;
  height: 20px;
  width: 100%;
  /* margin-bottom: -35px; */
  bottom: 0;
  right: 0;
}
.flip-card-back .inner-flip-card-back {
  padding: 15px;
  background-color: #767676;
  color: #FFF;
  min-height: 100%;
  box-sizing: border-box;
  position: relative;
}
.flip-card-back .inner-flip-card-back a {
  color: #ffd93b;
}
.close-flip-card {
  position: absolute;
  top: 5px;
  right: 0;
  background-color: #b6123a;
  border-radius: 120px;
  font-size: 32px;
  width: 36px;
  height: 36px;
  z-index: 1;
  color: #FFF;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 768px) {
  .close-flip-card {
    top: 18px;
    right:18px;
  }  
}
.flip-card-back .inner-flip-card-back h4 {
  color: #ffd93b;
}
.flip-card-back .inner-flip-card-back ol {
  list-style-type: decimal;
  margin-left: 15px;
  padding-left: 5px;
}
.flip-card-back .inner-flip-card-back ol li {
  margin: 10px 0;
  line-height: 20px;
}
.flip-card-back .inner-flip-card-back .importante {
  color: #ffd93b;
  font-weight: bolder;
}
.flip-card-back .inner-flip-card-back ul li {
  text-align: center;
  margin-bottom: 10px;
}

/*** Section call_to_action ***/
#call_to_action {
  max-width: unset;
  background-image: url(../img/bg_call_to_action.png);
  background-size: cover;
  text-align: center;
  padding-left: 32px;
  padding-right: 32px;
}
#call_to_action h2 {
  color: #b6123a;
  font-size: 40px;
  margin-bottom: 32px;
}
#call_to_action p {
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 32px;
}
#call_to_action a {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  border: none;
  background: #b6123a;
  padding: 12px;
  color: #FFF;
  border-radius: 8px;
  box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
  cursor: pointer;
  min-width: 200px;
  display: inline-block;
}

/*** Section camisetas ***/
#camisetas h2 span {
  font-family: 'Roboto Condensed', sans-serif;
  display: block;
  color: 000000;
  font-size: 28px;
  line-height: 36px;
  font-weight: bold;
}
#camisetas h2 span.negro {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 78px;
  line-height: 82px;
}
#camisetas h2 span.rojo {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 78px;
  color:#b6123a;
  line-height: 82px;
}
@media only screen and (max-width: 768px) {
  #camisetas h2 span {
    font-size: 20px;
    line-height: 28px;
  }
  #camisetas h2 span.negro {
    font-size: 48px;
    line-height: 52px;
  }
  #camisetas h2 span.rojo {
    font-size: 48px;
    line-height: 52px;
  }
}
#camisetas p {
  text-align: left;
}
#camisetas p.big {
  font-size: 23px;
  line-height: 28px;
}
#camisetas .btn_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#camisetas a {
  background-color: #969595;
  color: #FFF;
  border-radius: 8px;
  line-height: 26px;
  display: inline-block;
  padding: 8px;
  text-decoration: none;
  width: 250px;
  font-size: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  margin-right: 16px;
}
@media only screen and (max-width: 768px) {
  #camisetas p.big {
    font-size: 18px;
    line-height: 23px;
  }
  #camisetas .btn_wrapper {
    flex-direction: column;
  }
  #camisetas a {
    line-height: 22px;
    font-size: 16px;
    width: auto;
    margin: 0 0 12px;
  }
}
#camisetas p span.rojo {
  color:#b6123a;
  font-weight: bold;
}
#camisetas img {
  max-width: 100%;
}


/*** Section horarios ***/
#horarios {
  max-width: unset;
  background-image: url('../img/fondo_horarios.jpg');
  background-size: cover;
}
#horarios header {
  text-align: center;
}
#horarios header h2 {
  display: inline-block;
}
#horarios table {
  width: 100%;
  border: 1px solid #000;
}
#horarios table th {
  background-color: #000;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
}
#horarios table tr {
  border-bottom: 1px solid #000;
  background-color: #FFF;
}
#horarios table td {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #horarios table td {
    font-size: 14px;
  }
}
#horarios table th, #horarios table td {
  padding: 6px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#horarios table td.hora {
  background-color: #dddddd;
  font-weight: bold;
}
#horarios table td.actividad {
  background-color: #ffefaa;
}
#horarios table td.mercadillo {
  background-color: #c4e7e8;
}

#horarios table td.actuacion {
  background-color: #e6aebc;
}
#horarios table td.sorteo {
  background-color: #0558a4;
  color: #FFF;
}
#horarios table td.entrada {
  color: #b6123a;
}
#horarios table td.despedida {
  background-color: #b6123a;
  color: #FFF;
  font-weight: bold;
}
#horarios table td.actividad:not(:last-child),
#horarios table td.mercadillo:not(:last-child),
#horarios table td.actuacion:not(:last-child),
#horarios table td.sorteo:not(:last-child) {
  font-weight: bold;
}
#horarios p.nota_pie {
  color: #FFF;
  margin: auto 32px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #horarios p.nota_pie {
    margin: 32px 32px 0;
  }
}

/*** Section convivencia ***/
#convivencia {
  max-width: unset;
}
#convivencia .row {
  max-width: 1200px;
  margin: auto;
}
#convivencia h2 {
  font-size: 42px;
}
@media only screen and (max-width: 768px) {
  #convivencia h2 {
    font-size: 36px;
  } 
}
#convivencia img {
  width: 100%;
}
#convivencia p.big {
  font-size: 20px;
  line-height: 26px;
}
@media only screen and (max-width: 768px) {
  #convivencia p.big {
    font-size: 18px;
    line-height: 24px;
  }
  #convivencia .col:first-child, #convivencia .col:last-child {
    padding-bottom: 32px;
  }
  #convivencia .col {
    padding-top: 0;
    padding-bottom: 0;
  }
}
#convivencia .box {
  border: 3px solid #b6123a;
  padding: 12px;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  margin-top: 45px;
}
@media only screen and (max-width: 768px) {
  #convivencia .box {
    margin-top: 16px;
  }
}
#convivencia .punto {
  padding-left: 55px; 
  position: relative;
}
#convivencia .punto::before {
  font-family: "Material Symbols Outlined";
  font-size: 38px;
  position: absolute;
  top:0;
  left: 0;
  background-color: #b6123a;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
#convivencia .punto.savings::before {
  content: "savings";
  /* content: "\e2eb"; */
}
#convivencia .punto.front_hand::before {
  content: "front_hand";
}
#convivencia .punto.local_florist::before {
  content: "local_florist";
}
#convivencia .punto.pets::before {
  content: "pets";
}
#convivencia .punto.favorite::before {
  content: "favorite";
}

#convivencia .punto h3 {
  font-size: 22px;
}
#convivencia .punto p {
  font-size: 14px;
}

/*** Section patrocinadores ***/
#patrocinadores header {
  display: flex;
  justify-content: center;
}
#patrocinadores header h2 {
  text-align: center;
}
#patrocinadores .organiza {
  max-width: 100%;
}
#patrocinadores .patroclo {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  align-items: center;
}
#patrocinadores .patroclo a {
  flex:1;
  text-align: center;
}
#patrocinadores .patroclo a img {
  max-width: 100%;
}
#patrocinadores .patroclo > div {
  flex:1;
  display: flex;
  flex-direction: column;
}
#patrocinadores .especial {
  margin: 0 24%;
}
@media only screen and (max-width: 768px) {
  #patrocinadores .especial {
    margin: 0;
  }
}

/*** Section contacto ***/
#contacto {
  padding-bottom: 0;
  padding-top: 0;
  max-width: unset;
  background-color: #fff5ca;
}
#contacto .col {
  padding-left:0;
  padding-right: 0;
}
#contacto .contacto {
  text-align: center;
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  #contacto .contacto {
    padding: 32px 0 0;
  }
}
#contacto .contacto h2 {
  font-size: 66px;
  color:#b6123a;
}
@media only screen and (max-width: 768px) {
  #contacto .contacto h2 {
    font-size: 52px;
  }
}
#contacto .contacto h3 {
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  #contacto .contacto h3 {
    font-size: 20px;
  }
}
#contacto .contacto p {
  text-align: center;
  font-size: 20px;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  #contacto .contacto p {
    font-size: 18px;
  }
}
#contacto .contacto ul.rrss_contacto {
  margin: 35px 0;
}
#contacto .contacto ul.rrss_contacto li {
  margin: 12px 0;
}
#contacto .contacto ul.rrss_contacto a {
  background-color: #000;
  color: #FFF;
  border-radius: 30px;
  line-height: 36px;
  display: inline-block;
  padding: 8px;
  text-decoration: none;
  width: 250px;
  font-size: 18px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
#contacto .contacto ul.rrss_contacto a:hover {
  background-color: #b6123a;
}
#contacto .contacto ul.rrss_contacto a span {
  float: left;
  font-family: 'icons_social_media_8regular';
  font-size: 40px;
  line-height: 40px;
  text-decoration: none;
  color: #FFF;
  vertical-align: middle;
}
#contacto .contacto ul.rrss li {
  display: inline-block;
  margin: 8px;

}
#contacto .contacto ul.rrss a {
  color: #b6123a;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
#contacto .contacto ul.rrss a:hover {
  color: #000;
}
#contacto .contacto ul.rrss a span {
  float: left;
  font-family: 'icons_social_media_8regular';
  font-size: 60px;
  line-height: 60px;
  text-decoration: none;
  vertical-align: middle;
  /* background-color: #FFF; */
  border-radius: 100px;
}
#contacto .agradecimiento {
  /* background-image: url('../img/bg_agradecimiento.png'); */
  background-size: cover;
  color: #FFF;
  text-align: justify;
  /* padding: 100px 150px 100px 180px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contacto .agradecimiento img {
  width: 100%;
  max-width: 731px;
}
/* #contacto .agradecimiento h2 {
  text-align: center;
  font-family: 'Saira Condensed', sans-serif;
  margin-bottom: 30px;
}
#contacto .agradecimiento h2 span:first-child {
  display: block;
  font-size: 26px;
}
#contacto .agradecimiento h2 span:last-child {
  display: block;
  font-size: 66px;
}
#contacto .agradecimiento p {
  line-height: 24px;
}
#contacto .agradecimiento p.right {
  text-align: right;
} */

/*** Footer ***/
#footer {
  text-align: center;
  background-color: #fff5ca;
  padding: 12px 0;
  color: #000;
}

@media only screen and (max-width: 768px) {
  #footer {
    font-size: 11px;
  }
}