
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background: #ce1212; 
  overflow: hidden;
  position: relative;
  padding: 0;
  margin-top: 90px;
}

#hero .hero-logo {
  background: #ce1212;  
}

#hero .hero-logo h2 {
  margin: 40px 0px 20px 0px;  
  font-size: 48px;
  font-weight: 700;
  color: #fff;  
}

#hero .hero-logo h5 {
  margin-top: 20px;
  color: #fff;  
}

#hero .hero-logo img {
  margin: auto;  
}

#hero .carousel-item {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero .carousel-container .carousel-content h2 {
  color: #000000;
  background: rgba(255, 255, 255, 0.5);
  text-shadow: 2px 2px 0 #bcbcbc, 4px 4px 0 #9c9c9c;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  transition: ease-in;
  opacity: .7;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background-color: #ce1212;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  background:#ce1212;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#hero .btn-get-started:hover {
  background: #a61212;
  color: #000;
}

@media (max-width: 768px) {
  #hero {
    height: 70vh;
  }
  #hero .carousel-item {
    height: 70vh;
  }
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
  #hero .carousel-item {
    height: 150vh;
  } 
}

@media (max-width: 575px) {
  #hero .hero-logo {
    display: hidden;
    visibility: hidden;
    z-index: 1;
    background: rgba (0, 0, 0, 0.1);
  }
  #hero .heroCarousel {
	z-index:996;
  }
  #hero .carousel-container .carousel-content h2 {
    font-size: 32px;
  }
  
}

/*--------------------------------------------------------------
# Hero Small Section
--------------------------------------------------------------*/
#hero-small {
  width: 100%;
  height: 60vh;
  padding: 0 0 0 0;
  background: #b4b5b3;
}

#hero-small:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 60vh;  
}

#hero-small h1 {
  margin: 150px 0 15px 0;
  font-size: 58px;
  font-weight: 800;
  line-height: 56px;
  color: #ce1212;
  font-family: var(--font-primary);
}

#hero-small h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-primary);
}

#hero-small .btn-get-started {
  color: #fff;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid #ce1212;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: #ce1212;
}

#hero-small .btn-get-started:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 991px) {
  #hero-small .hero-img {
    text-align: center;
  }
  #hero-small .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero-small {
    -moz-text-align-last: center;
    text-align-last: center;
  }
  #hero-small h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero-small h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero-small .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero-small .hero-img img {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;  
}

.testimonials .testimonial-item .testimonial-img {
  width: 70px;
  position: absolute;
  right: -5px;
  bottom: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #345a85;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery {
  display: flex;
  padding: 2px;
  transition: 0.3s;
}
.gallery .gallery-column {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.gallery .glightbox {
  margin: -5px 2px;
  overflow: hidden;
}
.gallery .glightbox:hover .gallery-caption {
  opacity: 1;
}
.gallery .gallery-thumb {
  position: relative;
}
.gallery .gallery-image {
  display: block;
  width: 100%;
  transition: 0.3s;
}
.gallery .gallery-image:hover {
  transform: scale(1.1);
  width: 100%;
}
.gallery .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 15px 15px;
  width: 100%;
  font-size: 18px;
  color: white;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  transition: 0.3s;
}

/*--------------------------------------------------------------
# SECCION CARTA
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

.info-doc #info-title {
  margin-top: 5px;	
}

.cards {
  display: flex;
  flex-flow: row wrap;
}
.card-info {
  width: calc((100% / 2));
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
  .card-info {
    width: calc((100% / 2));
  }
}
@media screen and (max-width: 767px) {
  .card-info {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .card-info {
    width: 100%;
  }	
}
.card-info:hover .card__inner {
  background-color: #1abc9c;
  transform: scale(1.05);
}
.card__inner {
  width: 100%;
  height: 330px;
  padding: 0px;  
  background: #fff;  
  position: relative;
  cursor: pointer;
  color: #eceef1;
  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 5px 5px 15px 5px #B0B0B0; 
  -webkit-box-shadow: 5px 5px 15px 5px #B0B0B0; 
  box-shadow: 5px 5px 15px 5px #B0B0B0;
  border: 1px solid black; 
  -webkit-transition: all 0.3s 0s ease-in;
  transition: all 0.3s 0s ease-in;  
}

.dashboard-cards .card:hover {
  -webkit-box-shadow: 5px 5px 15px 5px #525252; 
  -moz-box-shadow: 5px 5px 15px 5px #525252; 
  box-shadow: 5px 5px 15px 5px #525252;
  transition: all 0.3s ease;
}

.card__inner .card-title h2 {
  font-size: 58px;
  font-weight: 900;
  padding: 0;
  text-shadow: 4px 4px 4px #000;
  color: #fff;
  font-family: var(--font-primary);
  background: #ce1212;
}

.card__inner:hover .card-title h2 {
  text-shadow: 4px 4px 4px #fff;
  color: #000;
}

.card__inner .card-title h2 small {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: -0.025em;
}

.card-info .card__inner #sugerencias {
  background: url("../img/carta/sugerencias.jpg") center center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff; 
  height: 100%;
}

.card-info .card__inner #ensalada {
  background: url("../img/carta/ensala.jpg") center center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff; 
  height: 100%;
}

.card-info .card__inner #sandwich {
  background: url("../img/carta/sandw.jpg") center center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;   
  height: 100%;
}

.card-info .card__inner #bocata {
  background: url("../img/carta/bocat.jpg") center center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #tostas {
  background: url("../img/carta/tosta-kaloan.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #burger {
  background: url("../img/carta/burger.jpg") center center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #raciones {
  background: url("../img/carta/racion-kaloan.jpg") center center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #combinados {
  background: url("../img/carta/plato-kaloan.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #postres {
  background: url("../img/carta/postre.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #refresco {
  background: url("../img/carta/refres.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #cerveza {
  background: url("../img/carta/cervez.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #cafes {
  background: url("../img/carta/cafe.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #infusion {
  background: url("../img/carta/te.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #vinos {
  background: url("../img/carta/vino.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card-info .card__inner #copas {
  background: url("../img/carta/copa.jpg") top center;
  background-size: cover;
  background-repeat: no repeat;
  background-color: #fff;    
  height: 100%; 
}

.card__inner:after {
  transition: all 0.3s ease-in-out;
    content: '';
    width: 29%;
    height: 5px;
    border-radius: 2px 2px 0 0;
    background-color: #ffffff;
    position: absolute;
    top: 5.6px;
    left: 4px;  
}
.card__expander {
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #444444;
  font-size: 16px;
  padding: 20px 0px 0px 0px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 9px 15px 5px rgba(128,128,128,0.89); 
  -moz-box-shadow: 0px 9px 15px 5px rgba(128,128,128,0.89); 
  box-shadow: 0px 9px 15px 5px rgba(128,128,128,0.89);   
  
}
.card__expander .fa {
  font-size: 0.75em;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.card-info.is-collapsed .card__inner:after {
  content: "";
  opacity: 0;
}
.card-info.is-collapsed .card__expander {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
}
.card-info.is-expanded .card__inner {
  background-color: #1abc9c;
}
.card-info.is-expanded .card__inner:after {
  content: "";
  opacity: 1;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 15px);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #d5d9d9;
}
.card-info.is-expanded .card__inner .fa:before {
  content: "\f115";
}
.card-info.is-expanded .card__expander {
  min-height: 200px;
  overflow: visible;
  opacity: 1;
}
.card-info.is-expanded:hover .card__inner {
  transform: scale(1);
}
.card-info.is-inactive .card__inner {
  pointer-events: none;
  opacity: 0.5;
}
.card-info.is-inactive:hover .card__inner {
  background-color: #949fb0;
  transform: scale(1);
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .card-info:nth-of-type(2n+2) .card__expander {
    margin-left: calc(-100%);
  }
  .card-info:nth-of-type(2n+3) {
    clear: left;
  }
  .card__inner {
	  margin: 30px 0px;
  }
  .card__expander {
    width: calc(200% + 30px);
  }
}

.card-info .card__expander .card-table {
  padding: 0 !important;
  text-align: center;
  width: 100%;
  background: #fff;
}

.card-info .card__expander .card-table tr td h4 {
  color: #ce1212;
  font-family: "Amatic SC", sans-serif; 
  font-size: 50px;  
  font-weight: 600;
  margin-top: 30px;
}


.card-info .card__expander .card-table tr {
  border-left: 3px solid #ce1212;
}

.card-info .card__expander .card-table tr td {
  padding: 20px 10px 20px 10px;
  margin: 3px 0;
  border-bottom: 1px solid #e9ebed;
  transition: all 0.2s ease;
  font-size: 20px;
  font-weight: 600;
}

.card-info .card__expander .card-table tr:hover td {
  background: #eee;
  color: #ce1212;
  transition: all 0.2s ease;
  border-bottom: 1px solid #444;
}

.card-info .card__expander .card-table tr span {
  color: #70706F;
}

.card-info .card__expander .card-table tr:hover span {
  color: #444;
}

.card-info .card__expander .card-table tr td img {
  display: inline;
}

.card-info .card__expander .card-table #fila-der {
  text-align: center;  
}

.card-info .card__expander .card-table #suple {
  font-size: 18px;
  color: #70706F;  
}

@media (max-width: 575px) {
  .card-info .card__expander .card-table tr td {
    padding: 20px 0px;
    font-size: 15px;  
  }
.card-info .card__expander .card-table #suple {
  font-size: 15px;
}  
}

.cerrar {
  background: #ce1212;
  color: #fff;
  border: 1px solid #2693b0;	
  font-size: 22px;
  cursor: pointer;
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  text-align: center; 
}

.cerrar:hover {
  background: #ccc;	
  color: #231f20;
  border: 1px solid #231f20;
}

.cerrar p {
  text-align: center; 
}

#alergenos img {
  width: 90%;
  margin: auto;	
}

/*--------------------------------------------------------------
# Donde Estamos
--------------------------------------------------------------*/

.mapheader {
  position: relative; 	
  padding-bottom: 0px;  
  padding-top: 14vh;
}

.donde .section-header {
  margin-top: 0px;	
}

.donde .donde-item {
  padding: 30px;
  margin-bottom: 30px;
}

.donde .donde-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.donde .donde-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.donde .donde-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.donde .info-llegar {
  -webkit-box-shadow: 5px 5px 15px 2px #858585; 
  -moz-box-shadow: 5px 5px 15px 2px #858585; 
  box-shadow: 5px 5px 15px 2px #858585;
  padding: 30px 20px;
}

.donde .info-llegar h4 {
  font-size: 20px;
  margin-top: 20px;  
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .section-header {
  margin-top: 50px;	
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 15px 5px #B5B5B5; 
  -moz-box-shadow: 0px 1px 15px 5px #B5B5B5; 
  box-shadow: 0px 1px 15px 5px #B5B5B5;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #8d8f8e;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

.contact .lopd{
  margin-top: 60px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Aviso Legal
--------------------------------------------------------------*/

.avisotitle {
  margin: 50px 0px 20px 0px;	
}

.aviso h4 {
  font-size: 18px;  
  font-weight: 700;
}

.aviso p {
  text-align: justify;	
}

.aviso ul li {
  margin-bottom: 20px;	
}

.policy h4 {
  font-size: 18px;  
  font-weight: 700;
}

.policy p {
  text-align: justify;	
}

.policy ul li {
  margin-bottom: 20px;	
}

.policy table {
  width: 100%;
}

.policy table tr th {
  background: #cccccc;
  font-weight: 600;
  font-size: 18px;
}

.policy table .gris {
  background: #cccccc;
  font-weight: 600;
  font-size: 16px;  
}

.policy table .azul {
  background: #bae6ff;
  font-weight: 600;
  font-size: 16px;  
}

.policy table tr td {
  border: 1px solid #444;
  width: auto;  
  padding: 10px 20px 10px 20px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links i {
  display: inline;
}

.footer .social-links {
  padding-left: 34%;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .footer-links ul {
  list-style: none;	
}

.footer .footer-links ul li {
  margin-bottom: 20px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}