/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  -webkit-font-smoothing: antialiased; /* Sin bold en Mac. */
  box-sizing: border-box;
}

h1, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

*:focus {
  outline: none;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
}

section {
  padding: 50px 0;
}
@media (max-width: 1000px) {
  section {
    padding: 25px 0;
  }
}

.container {
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1610px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media (max-width: 1000px) {
  .container {
    padding: 0;
  }
}

.container2 {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1150px) {
  .container2 {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.titular {
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  .titular {
    margin-bottom: 50px;
  }
}
.titular h2 {
  font-size: 60px;
  margin: 0;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1000px) {
  .titular h2 {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .titular h2 {
    font-size: 22px;
  }
}
.titular h2 span {
  display: block;
  font-size: 25px;
}
@media (max-width: 1000px) {
  .titular h2 span {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .titular h2 span {
    font-size: 16px;
  }
}

.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.mostrar {
  display: grid;
}
.modal div {
  width: 800px;
  height: 500px;
}
@media (max-width: 1000px) {
  .modal div {
    width: 320px;
    height: 300px;
  }
}
.modal div iframe {
  width: 100%;
  height: 100%;
}
.modal div a {
  display: block;
  color: #ee322a;
  text-align: right;
  font-weight: 700;
  background: white;
  padding: 5px;
}

.logo {
  text-align: center;
  padding: 50px 0;
  background: #f1f1f1;
}
@media (max-width: 1000px) {
  .logo {
    padding: 25px 0;
  }
}
.logo a {
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  font-weight: 700;
}
@media (max-width: 970px) {
  .logo a {
    font-size: 20px;
  }
}
@media (max-width: 660px) {
  .logo a {
    font-size: 15px;
  }
}
@media (max-width: 470px) {
  .logo a {
    font-size: 12px;
  }
}
.logo .punto {
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background: #ee322a;
  margin: 0 30px;
  border-radius: 50%;
}
@media (max-width: 970px) {
  .logo .punto {
    margin: 0 50px;
  }
}
@media (max-width: 660px) {
  .logo .punto {
    margin: 0 20px;
  }
}
@media (max-width: 470px) {
  .logo .punto {
    margin: 0 10px;
  }
}
.logo img {
  max-width: 200px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 470px) {
  .logo img {
    max-width: 150px;
  }
}
@media (max-width: 400px) {
  .logo img {
    max-width: 150px;
  }
}

header {
  padding: 17px 0;
}
@media (max-width: 1000px) {
  header {
    padding: 5px 0;
  }
}
header .btn_cerrar {
  display: none;
}
header ul {
  text-align: center;
}
@media (max-width: 1000px) {
  header ul {
    display: none;
  }
}
header ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 13px 17px;
}
header ul li a {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  transition: all ease 0.5s;
}
header ul li a:hover {
  color: #ee322a;
  transition: all ease 0.5s;
}
header ul li.record a {
  vertical-align: middle;
  color: #ab0d22;
}
header ul li.record img {
  max-width: 100px;
  vertical-align: middle;
  display: inline-block;
  margin: 0 5px;
}
@media (min-width: 1000px) {
  header .burger {
    display: none;
  }
}
header .burger span {
  width: 25px;
  height: 4px;
  background: black;
  margin-bottom: 3px;
  display: block;
}
@media (max-width: 1000px) {
  header .burger span {
    margin: 0 auto;
    margin-bottom: 3px;
  }
}
header .burger.desplegar + nav {
  display: grid;
  position: absolute;
  background: #ee322a;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  justify-content: center;
  align-items: center;
}
header .burger.desplegar + nav .btn_cerrar {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  display: block;
  font-weight: 700;
}
header .burger.desplegar + nav ul {
  display: block;
}
header .burger.desplegar + nav ul li {
  display: block;
}
header .burger.desplegar + nav ul li a {
  color: white;
}

footer {
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  footer {
    margin-bottom: 0;
  }
}
footer .container > div {
  background: url("../images/bg_foot.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 40px;
}
footer .logo {
  background: transparent;
}
footer .logo a {
  color: white;
}
footer .logo .punto {
  background: white;
}
footer .logo img {
  filter: brightness(10);
}
footer .siguenos ul {
  text-align: center;
}
footer .siguenos ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}
footer .siguenos ul li a {
  display: grid;
  width: 50px;
  height: 50px;
  background: #ee322a;
  align-items: center;
  text-align: center;
  justify-content: center;
}
footer .siguenos ul li a img {
  max-width: 16px;
}

.banner-home .item {
  position: relative;
}
.banner-home .item .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.banner-home .item .textos h2 {
  color: white;
  font-size: 90px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1000px) {
  .banner-home .item .textos h2 {
    font-size: 60px;
  }
}
@media (max-width: 720px) {
  .banner-home .item .textos h2 {
    font-size: 40px;
  }
}
.banner-home .item .textos p {
  color: white;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .banner-home .item .textos p {
    font-size: 25px;
  }
}
@media (max-width: 720px) {
  .banner-home .item .textos p {
    font-size: 15px;
  }
}
.banner-home .item img {
  width: 100%;
  display: flex;
  object-fit: cover;
  height: 666px;
}
@media (max-width: 1920px) {
  .banner-home .item img {
    height: auto;
  }
}
@media (max-width: 720px) {
  .banner-home .item img {
    height: 240px;
  }
}
.banner-home .owl-nav {
  margin: 0;
  width: 100%;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  top: 50%;
}
@media (max-width: 720px) {
  .banner-home .owl-nav {
    display: none;
  }
}
.banner-home .owl-nav button {
  width: 50px;
  height: 80px;
  background: black !important;
  margin: 0 !important;
}
.banner-home .owl-nav button span {
  color: white !important;
  font-size: 30px;
}
.banner-home .owl-nav button:hover {
  transition: all ease 0.5s;
  background: #ee322a !important;
}
.banner-home .owl-nav .owl-prev {
  float: left;
}
.banner-home .owl-nav .owl-next {
  float: right;
}

@media (max-width: 500px) {
  .categorias {
    padding: 0;
  }
}
.categorias .filas4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
}
@media (max-width: 1000px) {
  .categorias .filas4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
  }
}
@media (max-width: 500px) {
  .categorias .filas4 {
    grid-template-columns: 100%;
    grid-gap: 15px;
  }
}
.categorias .filas4 > div {
  position: relative;
}
.categorias .filas4 > div img {
  width: 100%;
}
@media (max-width: 500px) {
  .categorias .filas4 > div img {
    display: flex;
    object-fit: cover;
    height: 250px;
  }
}
.categorias .filas4 > div a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.categorias .filas4 > div a h2 {
  color: white;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.categorias .filas4 > div:hover a {
  background: rgba(238, 50, 42, 0.7);
  transition: all ease 0.5s;
}

.discover {
  text-align: center;
}
@media (max-width: 500px) {
  .discover {
    padding: 50px 0;
  }
}
.discover .slider .item .cuerpo {
  padding: 40px;
  padding-top: 60px;
  background: black;
  color: white;
}
.discover .slider .item .cuerpo h3 {
  font-weight: 700;
  font-size: 24px;
}
.discover .slider .owl-nav {
  margin: 0;
  width: 100%;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  top: 25%;
}
.discover .slider .owl-nav button {
  width: 50px;
  height: 80px;
  background: black !important;
  margin: 0 !important;
}
.discover .slider .owl-nav button span {
  color: white !important;
  font-size: 30px;
}
.discover .slider .owl-nav .owl-prev {
  float: left;
}
.discover .slider .owl-nav .owl-next {
  float: right;
}
.discover .titular img {
  max-width: 300px;
  margin: 10px 0;
}

.video {
  position: relative;
}
.video img {
  width: 100%;
}
@media (max-width: 1000px) {
  .video img {
    width: 100%;
    display: flex;
    object-fit: cover;
    height: 240px;
  }
}
.video .iframe {
  display: none;
}
.video .textos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}
.video .textos h3 {
  font-size: 60px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
}
.video .textos p {
  display: block;
  font-size: 25px;
  margin: 0;
}
.video .textos img {
  max-width: 120px;
  filter: contrast(0) brightness(10);
}
@media (max-width: 1000px) {
  .video .textos img {
    max-width: 50px;
    height: 50px;
    margin: 0 auto;
  }
}
.video .textos.ocultar {
  display: none;
}
.video .textos.ocultar + .iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.promociones .filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
@media (max-width: 1000px) {
  .promociones .filas2 {
    grid-template-columns: 100%;
  }
}
.promociones .filas2 img {
  width: 100%;
}
.promociones .filas2 .principal a {
  display: flex;
}
.promociones .filas2 .principal a img {
  width: 100%;
}
.promociones .filas2 .largo {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .promociones .filas2 .largo {
    display: block;
    height: auto;
  }
}
.promociones .filas2 .peque {
  width: 100%;
}
@media (max-width: 1000px) {
  .promociones .filas2 .peque {
    display: block;
    height: auto;
  }
}

.tab-menu .titular {
  margin-bottom: 20px;
}
.tab-menu .tabset > input[type=radio] {
  position: absolute;
  left: -200vw;
}
.tab-menu .tabset .tab-panel {
  display: none;
}
.tab-menu .tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tab-menu .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tab-menu .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tab-menu .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tab-menu .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tab-menu .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}
.tab-menu .tabset {
  text-align: center;
}
@media (max-width: 1000px) {
  .tab-menu .tabset {
    padding: 10px;
  }
}
.tab-menu .tabset label {
  font-size: 15px;
  font-weight: 700;
  margin: 0 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all ease 0.5s;
  opacity: 0;
}
.tab-menu .tabset label:hover {
  color: #ee322a;
  transition: all ease 0.5s;
}
.tab-menu .tabset .filas4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  max-width: 1168px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .tab-menu .tabset .filas4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
.tab-menu .tabset .filas4 .imagen {
  line-height: 0;
}
.tab-menu .tabset .filas4 img {
  width: 100%;
}
.tab-menu .tabset .filas4 .info {
  background: black;
  padding: 31px 0;
  color: white;
}
.tab-menu .tabset .filas4 .info h3 {
  margin: 0;
  font-size: 20px;
}
.tab-menu .tabset .filas4 .info p {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1000px) {
  .testimonios {
    padding-top: 0;
  }
}
.testimonios .bg {
  background-size: cover;
  background-position: center;
  padding-bottom: 100px;
}
@media (max-width: 1000px) {
  .testimonios .bg {
    padding-bottom: 50px;
  }
}
.testimonios .slider {
  max-width: 763px;
  margin: 0 auto;
  background: white;
  padding: 20px 80px;
}
@media (max-width: 1000px) {
  .testimonios .slider {
    padding: 10px 20px;
    max-width: 90%;
  }
}
.testimonios .slider .owl-nav {
  margin: 0;
  width: 100%;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  top: 50%;
}
.testimonios .slider .owl-nav button {
  width: 50px;
  height: 80px;
  background: black !important;
  margin: 0 !important;
}
.testimonios .slider .owl-nav button span {
  color: white !important;
  font-size: 30px;
}
.testimonios .slider .owl-nav button:hover {
  background: #ee322a !important;
  transition: all ease 0.5s;
}
.testimonios .slider .owl-nav .owl-prev {
  float: left;
  margin-left: -80px !important;
}
.testimonios .slider .owl-nav .owl-next {
  float: right;
  margin-right: -80px !important;
}
.testimonios .titular {
  padding-top: 100px;
}
@media (max-width: 1000px) {
  .testimonios .titular {
    padding-top: 50px;
  }
}
.testimonios .titular h2 {
  color: white;
}
.testimonios h4 {
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .contacto {
    padding: 15px;
  }
}
.contacto .filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
@media (max-width: 1000px) {
  .contacto .filas2 {
    grid-template-columns: 100%;
  }
}
.contacto .filas2 + .filas2 {
  margin-top: 30px;
}
.contacto .filas2 > div:first-child p {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.contacto .filas2 > div:last-child p {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.contacto .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.contacto .tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.contacto .tab input:checked + label {
  background: #ee322a;
}
.contacto .tab input:checked ~ .tab__content {
  max-height: 450px;
}
.contacto .tab input:checked ~ .tab__content iframe {
  width: 100%;
}
.contacto .tab label {
  background: black;
  color: white;
  width: 100%;
  border-radius: 15px;
  font-weight: 700;
  padding: 10px 25px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all ease 0.5s;
}
.contacto .tab label:hover {
  background: #ee322a;
  transition: all ease 0.5s;
}
.contacto .formulario {
  background: black;
  padding: 40px;
}
.contacto .formulario input {
  height: 40px;
  background: white;
  border: 0;
  padding: 5px;
}
.contacto .formulario input::placeholder {
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
.contacto .formulario textarea {
  min-height: 70px;
  background: white;
  border: 0;
  padding: 5px;
  width: 100%;
  margin-top: 20px;
}
.contacto .formulario textarea::placeholder {
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
.contacto .formulario button {
  width: 100%;
  height: 40px;
  text-align: center;
  color: white;
  background: #ee322a;
  margin: 0;
  border: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin-top: 30px;
}

.banner-historia .img_bg {
  padding: 80px;
  background-image: url("../images/HISTORIA.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.banner-historia .img_bg h1 {
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 100px;
}
@media (max-width: 1000px) {
  .banner-historia .img_bg h1 {
    font-size: 40px;
  }
}

@media (max-width: 1000px) {
  .historia-1 {
    padding: 20px;
  }
}
.historia-1 .filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1210px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
@media (max-width: 1000px) {
  .historia-1 .filas2 {
    grid-template-columns: 100%;
  }
}
.historia-1 .filas2 h2 {
  font-size: 70px;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1000px) {
  .historia-1 .filas2 h2 {
    font-size: 35px;
    text-align: center;
  }
}
.historia-1 .filas2 h2 span {
  font-size: 40px;
  display: block;
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .historia-1 .filas2 h2 span {
    font-size: 18px;
  }
}
.historia-1 .filas2 p {
  color: #747474;
  font-size: 16px;
}
.historia-1 .filas2 img {
  width: 100%;
}

.historia-2 {
  background-image: url("../images/ORIGENES.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .historia-2 {
    padding: 50px 10px;
  }
}
.historia-2 h2 {
  text-align: center;
  margin: 0;
  color: white;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .historia-2 h2 {
    font-size: 40px;
  }
}
.historia-2 p {
  color: white;
  max-width: 770px;
  width: 100%;
  text-align: justify;
  text-align-last: center;
  margin: 0 auto;
}
.historia-2 .tabset > input[type=radio] {
  position: absolute;
  left: -200vw;
}
.historia-2 .tabset {
  background: white;
  text-align: center;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
}
.historia-2 .tabset label {
  background: #eae9e9;
  color: #22201d;
  padding: 9px 25px 7px;
  font-weight: 700;
  margin: 0 5px;
  cursor: pointer;
}
.historia-2 .tabset .tab-panel {
  display: none;
}
.historia-2 .tabset .tab-panels {
  font-size: 15px;
  color: #22201d;
  padding: 15px;
}
.historia-2 .tabset > input:checked + label {
  background: #22201d;
  color: #eae9e9;
}
.historia-2 .tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.historia-2 .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.historia-2 .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.historia-2 .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.historia-2 .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.historia-2 .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

@media (max-width: 1000px) {
  .galeria {
    padding: 20px;
  }
}
.galeria h2 {
  text-align: center;
  margin: 0;
  color: black;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .galeria h2 {
    font-size: 40px;
  }
}
.galeria p {
  color: black;
  max-width: 770px;
  width: 100%;
  text-align: justify;
  text-align-last: center;
  margin: 0 auto;
}

.banner-catering .img_bg {
  padding: 80px;
  background-image: url("../images/CATERING.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.banner-catering .img_bg h1 {
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 100px;
}
@media (max-width: 1000px) {
  .banner-catering .img_bg h1 {
    font-size: 40px;
  }
}
.banner-catering.banner-categoria .img_bg {
  background-image: url("../images/BLOG_05.jpg");
  background-size: cover;
}
.banner-catering.banner-blog .img_bg {
  background-image: url("../images/titular-del-blog.jpg");
}
.banner-catering.banner-franquicia .img_bg {
  background-image: url("../images/FRANQUICIA.jpg");
}
.banner-catering.banner-detalle .img_bg {
  background-image: url("../images/titular-del-blog.jpg");
  position: repeat;
}
.banner-catering.banner-detalle .img_bg:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.banner-catering.banner-detalle .img_bg h1 {
  position: relative;
  z-index: 999;
}

.presentacion-servicios .titular h2 {
  font-size: 70px;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1000px) {
  .presentacion-servicios .titular h2 {
    font-size: 35px;
    text-align: center;
  }
}
.presentacion-servicios .titular h2 span {
  font-size: 40px;
  display: block;
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .presentacion-servicios .titular h2 span {
    font-size: 18px;
  }
}
.presentacion-servicios .titular p {
  color: #747474;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}
.presentacion-servicios .filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .presentacion-servicios .filas2 {
    grid-template-columns: 100%;
  }
  .presentacion-servicios .filas2 .titular:nth-child(4) {
    order: 3;
  }
  .presentacion-servicios .filas2 .titular:nth-child(1) {
    order: 1;
  }
  .presentacion-servicios .filas2 img {
    width: 100%;
  }
  .presentacion-servicios .filas2 img:nth-child(2) {
    order: 2;
  }
  .presentacion-servicios .filas2 img:nth-child(3) {
    order: 4;
  }
}
.presentacion-servicios .filas3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
@media (max-width: 1000px) {
  .presentacion-servicios .filas3 {
    grid-template-columns: 100%;
  }
}
.presentacion-servicios .filas3 > div {
  line-height: 0;
}
.presentacion-servicios .filas3 > div:hover .text {
  background: #ee322a;
  transition: all ease 0.5s;
}
.presentacion-servicios .filas3 img {
  width: 100%;
}
.presentacion-servicios .filas3 .text {
  padding: 25px;
  color: white;
  background: #22211f;
  line-height: 1;
  text-align: center;
  padding-top: 40px;
}
.presentacion-servicios .filas3 .text h3 {
  font-size: 25px;
  font-weight: 700;
}
.presentacion-servicios .filas3 .text p {
  font-size: 20px;
}
.presentacion-servicios form {
  background: black;
  padding: 25px;
}
.presentacion-servicios form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 0;
}
.presentacion-servicios form button {
  width: 100%;
  height: 40px;
  text-align: center;
  color: white;
  background: #ee322a;
  margin: 0;
  border: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}

.blog {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}
.blog .filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
@media (max-width: 1000px) {
  .blog .filas2 {
    grid-template-columns: 100%;
  }
}
.blog .filas2 .imagen {
  position: relative;
}
.blog .filas2 .imagen img {
  width: 100%;
}
.blog .filas2 .imagen .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(238, 50, 42, 0.5);
  display: grid;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: all ease 0.5s;
}
.blog .filas2 .imagen .hover a {
  font-weight: 700;
  font-size: 50px;
}
.blog .filas2 .imagen:hover {
  transition: all ease 0.5s;
}
.blog .filas2 .imagen:hover .hover {
  opacity: 1;
}
.blog .filas2 .texto h2 a {
  font-size: 40px;
  line-height: 1;
  transition: all ease 0.5s;
  color: #22201d;
}
.blog .filas2 .texto h2 a:hover {
  color: #ee322a;
  transition: all ease 0.5s;
}
.blog .filas2 .texto p {
  font-size: 16px;
  color: #747474;
}

.detalle-blog {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  margin-bottom: 80px;
}
.detalle-blog img {
  width: 100%;
}
.detalle-blog .fecha p {
  display: inline-block;
  margin-right: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.detalle-blog p {
  font-size: 16px;
  color: #747474;
}
.detalle-blog .autor {
  padding: 50px;
  background: #22211f;
  display: grid;
  grid-template-columns: 160px auto;
  align-items: start;
  grid-gap: 40px;
}
@media (max-width: 1000px) {
  .detalle-blog .autor {
    grid-template-columns: 100%;
  }
}
.detalle-blog .autor h3 {
  color: white;
  font-weight: 700;
  font-size: 32px;
}
.detalle-blog .autor p {
  font-size: 16px;
  color: white;
}

.banner-detalle h1 {
  font-size: 40px !important;
}

.intro_record {
  text-align: center;
}
.intro_record p {
  text-align: left;
}

.objetivo .filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
@media (max-width: 1000px) {
  .objetivo .filas2 {
    grid-template-columns: 100%;
    padding: 10px;
  }
}
.objetivo .filas2 p, .objetivo .filas2 li {
  text-align: justify;
  text-align-last: left;
}
@media (max-width: 1000px) {
  .objetivo .filas2 img {
    width: 100% !important;
  }
}
@media (max-width: 1000px) {
  .objetivo .filas2:last-child div {
    order: 1;
  }
  .objetivo .filas2:last-child img {
    order: 2;
  }
}

@media (max-width: 1000px) {
  .evento {
    padding: 10px;
  }
}

@media (max-width: 1000px) {
  .auspiciadores2 {
    padding: 10px;
  }
}

.participa_evento {
  background: #ee322a;
  color: white;
}
@media (max-width: 1000px) {
  .participa_evento {
    padding: 40px 20px;
  }
}
.participa_evento a {
  display: grid;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  padding: 10px 25px;
  font-weight: 700;
  text-transform: uppercase;
  background: white;
  color: #ee322a;
  margin-bottom: 20px;
}
.participa_evento h3 {
  font-size: 20px;
}
.participa_evento h2 {
  font-size: 30px;
}

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