body {
  font-family: "Open Sans", sans-serif;
  background: #0c0b09;
  color: #fff;
}

a {
  color: #B28564;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
section p, section li{
  font-size: 15px;
  line-height: 1.3;
  text-align: justify;
}
.section-title p{
  text-align: left !important;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #B28564;
  border-bottom-color: #B28564;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/


.back-to-top {
    visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}

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

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  #header .logo img {
    width: 100px;
  }
  #header .container-fluid{
    justify-content: space-between;
  }
}

/*---- #Header ------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;

}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
  padding: 9px 0px;
}
#header.header-scrolled .logo img{
  width: 100px;
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid #B28564;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: #B28564;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  background:rgb(0 0 0 / 4%);
  backdrop-filter: blur(14px);
  border-radius: 3px;
}

.navbar li {
  position: relative;
  border-left: 1px solid rgb(255 255 255 / 24%);
}

.navbar a,
.navbar a:focus {
  padding: 6px 20px 7px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
}
.navbar a span {
  display: block;
  text-transform: initial;
  font-size: 11px !important;
  font-weight: 400;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  background: rgb(255 255 255 / 32%);
  text-shadow: 0px 0px 12px rgb(0 0 0 / 63%);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  color: #444444;
}

.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: #B28564;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #B28564;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #B28564;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  padding: 0;
}
#hero .container-hero{
  position: relative;
  width: 100%;
  height: 100vh;

}
#hero .bg-image-slide{
  position: relative;
  height: 100%;
}
#hero .bg-image-slide:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.33) 77%, rgba(0, 0, 0, 0.35) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.33) 77%, rgba(0, 0, 0, 0.35) 100%);
  background: linear-gradient(0deg, rgb(0 0 0 / 75%) 0%, rgba(52, 65, 52, 0.33) 77%, rgba(89, 94, 122, 0.35) 100%);
  z-index: 2;
}
#hero .bg-image-slide:after {
  content: "";
  backdrop-filter: grayscale(0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#hero .mySwiper{
  width: 100%;
  height: 100%;
}
#hero .mySwiper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#hero .textos-slide{
  position: absolute;
  width: 52%;
  top: 50%;
  z-index: 99999999;
  left: 0;
  right: 0;
  margin: auto;
}
#hero h1 {
  margin: 0;
  font-size: 79px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  font-family: "Playfair Display", serif;
}
#hero p{
  font-size: 21px;
  margin-top: 17px;
  line-height: 1.2;
  text-align: center;
}
#hero h1 span {
  color: #B28564;
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

#hero .btns {
  margin-top: 30px;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #B28564;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #B28564;
  color: #fff;
}
.swiper-pagination-bullet-active {
  background: #c58f59 !important;
}
.swiper-button-next, .swiper-button-prev{
  color: #c58f59 !important;
}

@media (min-width: 1600px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 41px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .section-title p {
    font-size: 29px;
  }
  #hero p {
    font-size: 17px;
    text-align: center;
}
}
  #hero .mySwiper .image-slide {
    animation: zoom-in-zoom-out 20s ease-out infinite;
    height: 100%;
}
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1.15);
       filter: sepia(0);
    }
    50% {
      transform: scale(1);
      filter: sepia(0.89);
    }
    100% {
      transform: scale(1.15);
       filter: sepia(0);
    }
 }
 #hero .bg-image-slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
 #hero .textos-slide{
    opacity: 0;
    transition: 1200ms;
}
 #hero .swiper-slide.swiper-slide-visible.swiper-slide-active .textos-slide{
    opacity: 1;
}
#hero .portada-scroll:before {
    background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(16 19 16 / 33%) 77%, rgba(89, 94, 122, 0.35) 100%);
}
#hero .bg-image-slide:before {
    transition: 6500ms;
    width: 100%;
    height: 100%;
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #B28564;
}


/*--------------------------------------------------------------
# About----------------------*/
.historia {
  background: url("./../img/arequipa-vista.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.historia:before {
  content: "";
  background: rgba(0, 0, 0, 0.94);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.historia .about-img {
  position: relative;
  transition: 0.5s;
}
.arequipa .col-lg-6 .img-fluid{
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.historia .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.historia .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #B28564;
  border-top: 5px solid #B28564;
  transition: 0.5s;
}

.historia .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #B28564;
  border-bottom: 5px solid #B28564;
  transition: 0.5s;
}

.historia .about-img:hover {
  transform: scale(1.03);
}

.historia .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.historia .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.historia .content {
  position: relative;
}

.historia .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.historia .content ul li {
  padding-bottom: 10px;
}

.historia .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #B28564;
}

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

@media (min-width: 1024px) {
  .historia {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.arequipa .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}

.arequipa .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #B28564;
}

.arequipa .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.arequipa .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.arequipa .box:hover {
  background: #B28564;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.arequipa .box:hover span,
.arequipa .box:hover h4,
.arequipa .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.nuestros-platos #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.nuestros-platos #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

.nuestros-platos #menu-flters li:hover,
.nuestros-platos #menu-flters li.filter-active {
  color: #B28564;
}

.nuestros-platos #menu-flters li:last-child {
  margin-right: 0;
}

.nuestros-platos .menu-item {
  margin-top: 50px;
}

.nuestros-platos .menu-img {
  width: 90px;
  border-radius: 50%;
  float: left;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.nuestros-platos .menu-content {
  margin-left: 100px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
  font-family: 'Poppins';
font-size: 19px;
}


.nuestros-platos .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.nuestros-platos .menu-content a:hover {
  color: #B28564;
}

.nuestros-platos .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  color: #B28564;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.nuestros-platos .menu-ingredients {
  margin-left: 100px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

/*----Noticias --------------*/
.noticias {
  overflow: hidden;
  padding: 100px 0px;
}
.section-title.section-title-center h2, .section-title.section-title-center p{
  text-align: center !important;
}
.section-title.section-title-center h2::after {
  width: 70px;
}
.section-title.section-title-center h2::before {
  content: "";
  width: 70px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}
.noticias-item {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
  margin-top: 42px;
}
.noticias-item h3{
  margin-top: 18px;
}


@media (max-width: 992px) {
  .noticias .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  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: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #B28564;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
section#gallery {
  background: #1a1814;
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #B28564;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}


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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #B28564;
  color: #fff;
  text-decoration: none;
}

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

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

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #B28564;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #B28564;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #B28564;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 49px;
    }
    #hero .textos-slide {
        width: 84%;
    }
    .navbar li {
        border-bottom: 1px solid #c3c3c3;
        border-left: 0px;
    }
    .navbar-mobile ul {
        padding: 10px 10px;
    }
    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px;
    }
}
@media (min-width: 1400px){
    h1, h2, h3, h4, p, ul li, ol li {
        zoom: 1.06;
    }
}
@media (min-width: 1500px){
    h1, h2, h3, h4, p, ul li, ol li {
        zoom: 1.08;
    }
}
@media (min-width: 1600px){
    h1, h2, h3, h4, p, ul li, ol li {
        zoom: 1.1;
    }
}
@media (min-width: 1800px){
    h1, h2, h3, h4, p, ul li, ol li {
        zoom: 1.12;
    }
}
@media (min-width: 1900px){
    h1, h2, h3, h4, p, ul li, ol li {
        zoom: 1.14;
    }
}
.content-reserva {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}
.content-reserva a {
    padding: 9px 20px;
    display: inline-block;
    border-radius: 22px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    background: #B28564;
    color: #ffffff;
    box-shadow: 0 0 0 0 rgb(194, 117, 37, 0.3);
    -webkit-animation: pulse 2.25s infinite cubic-bezier(0.16, 0, 0, 1);
  -moz-animation: pulse 2.25s infinite cubic-bezier(0.16, 0, 0, 1);
  -ms-animation: pulse 2.25s infinite cubic-bezier(0.16, 0, 0, 1);
  animation: pulse 2.25s infinite cubic-bezier(0.16, 0, 0, 1);
}
.content-reserva a:hover{
    background: #9c7152;
}
.content-reserva a i{
    display: inline-block;
    font-size: 25px;
    vertical-align: middle;
    border-right: 1px solid rgb(255 255 255 / 26%);
    padding-right: 6px;
    margin-right: 4px;
}
@-webkit-keyframes pulse {
    to {box-shadow: 0 0 0 33px rgba(52, 187, 112, 0);}
}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 20px rgba(52, 187, 112, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 20px rgba(52, 187, 112, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 20px
rgba(52, 187, 112, 0);}}