@font-face {
  font-family: 'Dongle';
  src: url('../fonts/Dongle-Light.woff2') format('woff2'),
      url('../fonts/Dongle-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dongle';
  src: url('../fonts/Dongle-Regular.woff2') format('woff2'),
      url('../fonts/Dongle-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dongle';
  src: url('../fonts/Dongle-Bold.woff2') format('woff2'),
      url('../fonts/Dongle-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
      url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
      url('../fonts/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
      url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic.woff2') format('woff2'),
      url('../fonts/Montserrat-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
      url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
      url('../fonts/Montserrat-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Thin.woff2') format('woff2'),
      url('../fonts/Montserrat-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}


/* Fonts */
:root {
  --default-font: "Montserrat";
  --heading-font: "Montserrat";
  --nav-font: "Dongle";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #b29b8e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #a8a9b4;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: rgb(171, 171, 186);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgb(0, 0, 0);;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.btn {
  padding: 10px 30px;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 200px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
}

.header .profile-img img {
  margin: 50px 0;
  display: block;
  width: 150px;
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}


.header .social-links {
  margin: 0 0 20px 0;
}

.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 300px;
    margin-right: 40px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--heading-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--heading-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navmenu a,
.navmenu a:focus {
  color: rgb(171, 171, 186);
  padding: 10px 10px;
  font-family: var(--nav-font);
  font-size: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

.navmenu a .toggle-dropdown,
.navmenu a:focus .toggle-dropdown {
  font-size: 12px;
  line-height: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  flex-shrink: 0;
  background-color: #FFF;
  color: rgb(0, 0, 0);
}

.navmenu a .toggle-dropdown:hover,
.navmenu a:focus .toggle-dropdown:hover {
  background-color: #FFF;
  color: rgb(0, 0, 0);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: rgb(0, 0, 0);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: rgb(0, 0, 0);
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: #FFF;
  color: rgb(171, 171, 186);
  transform: rotate(180deg);
}

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: rgb(171, 171, 186);
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
  color: rgb(0, 0, 0);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
  background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background: #075e54;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #b29b8e;
  left: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero .swiper-slide {
  border-radius: 1.5rem;
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
}
#hero .swiper-slide .swiper-body {
  display: flex;
  align-items: center;
  height: 600px;
  padding: 40px;
}
#hero .swiper-slide .swiper-body h6{
  color: rgba(0, 0, 0, 0.7);
}
#hero .swiper-pagination .swiper-pagination-bullet{
  border-radius: .1rem;
  width: 50px;
  height: 2px;
}
#hero .swiper-pagination .swiper-pagination-bullet-active{
  background-color: rgb(0, 0, 0);
}
/*--------------------------------------------------------------
# Nosotros Section
--------------------------------------------------------------*/
#nosotros img {
  height: 400px;
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
#nosotros .icon-content {
  padding: 40px;
  border-radius: 1.5rem;
  border: 2px solid rgb(92,92,92);
}
#nosotros .icon-content img {
  width: 80px;
  height: auto;
}
#nosotros .icon-content-text {
  height: 100px;
} 
#nosotros .icon-content h2 {
  color: rgb(92,92,92);
  font-size: 24px;
}
/*--------------------------------------------------------------
# PRODUCTOS Section
--------------------------------------------------------------*/
#productos .product-card .product-card-icon{
  width: 100%;
  height: 300px;
  background-color: #dddddd;
  border-radius: 0;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#productos .product-card .product-card-icon img {
  width: auto;
  height: 100px;
}
#productos .product-card .product-card-body h4 {
  font-weight: bolder;
}

.icon-square {
  background-color: #dddddd;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
}
.icon-square img {
  width: auto;
  height: 50px;
}
.venta-card .venta-card-icon {
  background-color: #b29b8e;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.venta-card .venta-card-icon span {
  color: #FFF;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.venta-card .venta-card-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
  width: 40px;
  height: auto;
}
.venta-card .venta-card-body {
  background-color: #dddddd;
  color: #000;
  text-align: center;
  margin: 5px 0;
  font-size: 16px;
  font-weight: bold;
}
.lista-style ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line */

}
.lista-style ul li {
  flex: 1 0 33.33%;
  margin-bottom: 10px;
}
.pastas-card-img {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 250px;
}
.pastas-card-img img {
  height: 100%;
  width: auto;
}
/*--------------------------------------------------------------
# RECETAS Section
--------------------------------------------------------------*/
#recetas .swiper-slide {
  border-radius: 1.5rem;
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
  position: relative;
}
#recetas .swiper-slide::before {
  border-radius: 1.5rem;
  width: 100%;
  height: 600px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: #000;
  background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
#recetas .swiper-slide .swiper-body {
  display: flex;
  align-items: flex-end;
  height: 600px;
  padding: 40px;
}
#recetas .swiper-slide .swiper-body div{
  position: relative;
  z-index: 2;
}
#recetas .swiper-slide .swiper-body h1{
  color: #FFF;
  margin-bottom: 25px;
}
#recetas .swiper-pagination .swiper-pagination-bullet{
  border-radius: .1rem;
  width: 50px;
  height: 2px;
}
#recetas .swiper-pagination .swiper-pagination-bullet-active{
  background-color: rgb(0, 0, 0);
}







.recetas-card {
  border-radius: 1.5rem;
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.recetas-card::before {
  border-radius: 1.5rem;
  width: 100%;
  height: 600px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: #000;
  background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.recetas-card .recetas-card-body {
  display: flex;
  align-items: flex-end;
  height: 600px;
  padding: 40px;
}
.recetas-card .recetas-card-body div{
  position: relative;
  z-index: 2;
}
.recetas-card .recetas-card-body h1{
  color: #FFF;
  margin-bottom: 25px;
  font-size: 32px;
}

.receta-header {
  height: 400px;
}
.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-custom {
  background-color: #b29b8e;
}
.set-roudned-left-top {
  border-radius: 0 0 0 0;
}
.set-roudned-right-bottom {
  border-radius: 0 1.5rem 1.5rem 0;
}
.receta-header h1 {
  font-weight: bold;
}
/*--------------------------------------------------------------
# CLIENTES Section
--------------------------------------------------------------*/
#clientes .swiper-slide img {
  width: 200px;
  height: auto;
}
/*--------------------------------------------------------------
# NOVEDADES Section
--------------------------------------------------------------*/
#novedades .card-novedades {
  background-color: #ffffff;
  border-radius: 1.5rem;
  transition: all .3s ease-in-out;
}
#novedades .card-novedades:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all .3s ease-in-out;
}
#novedades .card-novedades .card-novedades-img {
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 300px;
}
#novedades .card-novedades .card-novedades-body {
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 25px;
  height: 300px;
  overflow-y: hidden;
}
#novedades .card-novedades .card-novedades-body h4 {
  font-weight: bold;
}
/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
#cta {
  width: 100%;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cta img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#cta:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

#cta .container {
  position: relative;
  z-index: 3;
  padding: 0 40px
}


#cta p {
  font-size: 18px;
  width: calc(100% - 70px);
  margin: 0;
}


#cta .icon-circle {
  width: 35px !important;
  height: 35px !important;
  margin-right: 20px;
  border-radius: 17px;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cta .icon-circle i{
  line-height: 0;
  font-size: 18px;
  color: #000;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}


.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# PASTAS secton
--------------------------------------------------------------*/
.gallery-item a img{
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: grayscale(100%);
  transition: all .3s ease-in-out;
}
.gallery-item a:hover img{
  filter: grayscale(0%);
  transition: all .3s ease-in-out;
}
.gallery-item .img-horizontal {
  width: 100%;
  height: 200px;
}
.gallery-item .img-cuadrada {
  width: 100%;
  height: 400px;
}
.gallery-item .img-vertical {
  width: 100%;
  height: 600px;
}

#pills-tab {
  display: flex;
  justify-content: center;
  width: 100%;
}
#pills-tab .nav-item{
  width: calc(100% / 2);
}
#pills-tab .nav-link {
  background-color: transparent;
  font-size: 24px;
  border-radius: 0;
  border-bottom: 3px solid #BBB;
  color: #BBB;
  width: 100%;
  padding: 20px 0;
}
#pills-tab .nav-link.active {
  border-bottom: 3px solid #b29b8e;
  color: var(--heading-color);
}
.img-portada {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}



.galeria-imagen img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  transition: .3s;
}
.galeria-imagen img:hover {
  filter: grayscale(0);
  transition: .3s;
}
.galeria-imagen .imagen-1-1 {
  width: 100%; 
  height: 400px !important;
  background-color: #b29b8e !important;
  overflow: hidden;
}
.galeria-imagen .imagen-3 {
  width: 100%; 
  height: 468px !important;
  overflow: hidden;
  background-color: #b29b8e !important;
}
.galeria-imagen .imagen-1-2 {
  width: 100%; 
  height: 50px !important;
  background-color: #b29b8e !important;
  overflow: hidden;
}
.galeria-imagen .imagen-2 {
  width: 100%; 
  height: 225px !important;
  overflow: hidden;
  background-color: #b29b8e !important;
}
.galeria-imagen .imagen-5-1 {
  width: calc(100% - 100px); 
  height: 225px !important;
  overflow: hidden;
  background-color: #b29b8e !important;
}
.galeria-imagen .imagen-5-2 {
  width: 85px;  
  height: 225px !important;
  background-color: #b29b8e !important;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .myTableContainer {
    overflow-x: scroll;
    padding-bottom: 25px;
  }
  .gallery-item .img-horizontal, 
  .gallery-item .img-vertical, 
  .gallery-item .img-cuadrada {
    width: 100%;
    height: 150px !important;
  }
  
  .recetas-card {
    height: 400px !important;
  }
  .recetas-card::before {
    height: 400px !important;
  }
  .recetas-card .recetas-card-body {
    height: 400px !important;
  }
  .recetas-card .recetas-card-body h1{
    font-size: 26px !important;
  }





  .galeria-imagen .imagen-1-1 {
    width: 100%; 
    height: 150px !important;
    background-color: #b29b8e !important;
    overflow: hidden;
  }
  .galeria-imagen .imagen-3 {
    width: 100%; 
    height: 150px !important;
    overflow: hidden;
  }
  .galeria-imagen .imagen-1-2 {
    width: 100%; 
    height: 150px !important;
    background-color: #b29b8e !important;
    overflow: hidden;
  }
  .galeria-imagen .imagen-2 {
    width: 100%; 
    height: 150px !important;
    overflow: hidden;
  }
  .galeria-imagen .imagen-5-1 {
    width: 100%; 
    height: 150px !important;
    overflow: hidden;
    margin-right: 0 !important;
  }
  .galeria-imagen .imagen-5-2 {
    display: none;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 0 !important;
  }
  
  .set-roudned-right-bottom {
    border-radius: 0;
  }
}



.swiper-button-next, .swiper-button-prev {
    background-color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    top: 40%;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 24px;
  color: var(--default-color);
}
.swiper-button-next:hover .swiper-button-next:after, .swiper-button-prev:hover .swiper-button-prev:after {
  color: #000;
}



.btn-link {
  font-size: 18px;
  text-decoration: none;
  color: var(--default-color);
  transition: .3s;
  font-weight: bold;
}
.btn-link:hover {
  color: var(--heading-color);
  transition: .3s;
}