@font-face {
  font-family: 'Avenir LT Std';
  src: url('../../assets/fonts/AvenirLTStd-Black.woff2') format('woff2'),
      url('../../assets/fonts/AvenirLTStd-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('../../assets/fonts/AvenirLTStd-Roman.woff2') format('woff2'),
      url('../../assets/fonts/AvenirLTStd-Roman.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('../../assets/fonts/AvenirLTStd-Book.woff2') format('woff2'),
      url('../../assets/fonts/AvenirLTStd-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('../../assets/fonts/Oswald-Regular.woff2') format('woff2'),
      url('../../assets/fonts/Oswald-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('../../assets/fonts/Oswald-Bold.woff2') format('woff2'),
      url('../../assets/fonts/Oswald-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
  
  
  /* Fonts */
  :root {
    --default-font: "Avenir LT Std";
    --heading-font: "Oswald";
    --nav-font: "Avenir LT Std";
  }
  
  /* Global Colors */
  :root {
    --background-color: #ffffff;
    --background-color-rgb: 255, 255, 255;
    --default-color: #212529;
    --default-color-rgb: 33, 37, 41;
    --primary-color: #f59d12;
    --primary-color-rgb: 188, 115, 20;
    --secondary-color: #32353a;
    --secondary-color-rgb: 50, 53, 58;
    --contrast-color: #ffffff;
    --contrast-color-rgb: 255, 255, 255;
    --regular-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  }
  
  /* Nav Menu Colors */
  :root {
    --nav-color: #FFF;
    --nav-hover-color: #f59d12;
    --nav-dropdown-color: #3a3939;
    --nav-dropdown-hover-color: #f59d12;
    --nav-dropdown-background-color: #ffffff;
    --nav-mobile-background-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }

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

a {
  color: #B11E45;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--primary-color-rgb), 0.7);
  text-decoration: none;
}

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

section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  margin-top: 100px;
  color: var(--default-color);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary-color);
}

.page-title nav {
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  padding-left: 0;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: var(--default-color);
}

.bg-transparent {
  background-color: transparent !important;
}




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #1d0c0a;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--secondary-color);
}

.header .logo span {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #FFF;
  border: 2px solid #FFF;
  background: transparent;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--primary-color-rgb), 0.85);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --secondary-color: #444444;
  --nav-color: #FFF;
  --nav-hover-color: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: #1d0c0a;
  --secondary-color: #FFF;
  --nav-color: #FFF;
  --nav-hover-color: #d83535;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #1d0c0a;
  --secondary-color: #FFF;
  --nav-color: #FFF;
  --nav-hover-color: #d83535;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    list-style: none;
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 100px 25px;
    margin: 0;
    border-radius: 6px;
    background-color: #000;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #FFF;
    padding: 10px 20px;
    font-family: var(--heading-font);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--primary-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  display: none !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #1d0c0a;
  display: flex;
  justify-content: center;
  align-items: center;
}


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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #1d0c0a;
  color: #FFF;
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

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

.footer .footer-about .logo span {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

.footer .social-links a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.footer h4 {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--primary-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(var(--default-color-rgb), 0.05);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}







/*
MY STYLES
*/

.section_style_noheight{
  background-color: #000;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.section_style_noheight .container{
  position: relative;
  z-index: 2;
}

.section_style{
  height: 100dvh;
  background-color: #000;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}
.section_style-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(29, 12, 10, .5);
  z-index: 1;
  content: "";
  width: 100%;
}

#init-banner {
  height: 100dvh;
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#init-banner .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
#init-banner .container .row{
  display: flex;
  align-items: center;
  justify-content: center;
}
#init-banner h5 {
  font-family: var(--default-font);
  font-size: 20px;
}
#init-banner h1 {
  font-size: 90px;
  font-weight: bolder;
  text-transform: uppercase;
  color: #FFF;
}

#init-banner-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(29, 12, 10, .5);
  z-index: 1;
  content: "";
  width: 100%;
}
.arrow-down {
  width: 100%;
  height: 100px;
}
#arrow-btn{
  position: absolute;
  z-index: 4 !important;
  left: 50%;
  top: 20vh;
  background-color: transparent;
  border: none;
  transform: translateX(-50%);
	animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}

@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
#arrow-btn i {
  font-size: 40px;
  color: #FFF;
  transition: .3s;
}
#arrow-btn:hover i {
  color: #fab61f;
  transition: .3s;
}



.productos {
  background-color: #000;
  position: relative;
  overflow: hidden;
}
.product h1 {
  font-size: 90px;
  font-weight: bolder;
  text-transform: uppercase;
  line-height: 90px;
  z-index: 2;
}
.product h1, .product p, .product-img {
  z-index: 2;
}
.decorado {
  height: auto;
  z-index: 1;
  position: absolute;
  opacity: 0.4;
  width: 100%;
  top: 100%;
}
.product-img {
  width: 80%;
  z-index: 2;
}
.prod-btn {
  border: none;
}
.prod-btn img{
  width: 50px;
  transform: rotate(-90deg);
  transition: .3s;
}
.prod-btn:hover img{
  transform: rotate(0);
  transition: .3s;
}

.prod-btn.active-btn {
  border: none;
}
.prod-btn.active-btn img{
  width: 50px;
  transform: rotate(0) !important; 
  transition: .3s;
}
.prod-btn.active-btn:hover img{
  transform: rotate(0);
  transition: .3s;
}








#aplicacion {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 600px;
  height: auto;
  max-height: auto;
}
#aplicacion::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 12, 10, .8);
  z-index: 1;
}
#aplicacion .container {
  position: relative;
  z-index: 2;
}
#aplicacion h5 {
  font-family: var(--default-font);
  font-size: 20px;
}
#aplicacion h1 {
  font-size: 90px;
  font-weight: bolder;
  text-transform: uppercase;
  color: #fab61f;
}
.app-button,
.app-button:focus {
  color: #fab61f;
  border: 2px solid #fab61f;
  background: transparent;
  font-size: 15px;
  text-transform: uppercase;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--heading-font);
  transition: .3s;
}

.app-button:hover,
.app-button:focus:hover {
  color: #FFF;
  background: #fab61f;
  transition: .3s;
}






#publicaciones {
  background-color: #1d0c0a;
}
#publicaciones h5 {
  font-family: var(--default-font);
  font-size: 20px;
}
#publicaciones h1 {
  font-size: 90px;
  font-weight: bolder;
  text-transform: uppercase;
  color: #cc4465;
}
.btn-transparent {
  background-color: transparent;
  border: none;
  color: var(--default-color);
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  transition: .3s;
}
.btn-transparent:hover, 
.btn-transparent:focus, 
.btn-transparent:active {
  color: #b11d45;
  transition: .3s;
}
.btn-transparent:hover .bi-three-dots-vertical{
  color: #fab61f;
  transition: .3s;
}
.btn-transparent:hover .bi-chat{
  color: #e94e1a;
  transition: .3s;
}
.btn-transparent:hover .bi-heart{
  color: #cc4465;
  transition: .3s;
}
.btn-transparent:hover .bi-share{
  color: #b11d45;
  transition: .3s;
}

.dropdown-toggle::after {
  display: none;
  margin-left: 0;
  vertical-align: 0;
  content: "";
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
}
.dropdown-menu {
  z-index: 999;
}


.swal2-title {
  font-family: var(--default-font);
  
}
.dropstart .dropdown-toggle::before {
  display: none;
}
.custom-card {
  background-color: #FFF;
  cursor: pointer;
  transition: .3s;
  color: var(--nav-color) !important;
  margin-bottom: 25px;
  position: relative;
}
.custom-card:hover {
  box-shadow: var(--regular-shadow);
  transition: .3s;
}
.custom-card .custom-card-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  content: "";
  padding-bottom: 100%;
}
.custom-card .custom-card-header{
  padding: 8px 15px;
} 
.custom-card .custom-card-body {
  padding: 15px;
}
.custom-card .custom-card-body h5 {
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--default-font);
  margin: 0;
  padding: 0;
}
.custom-card .custom-card-footer {
  padding: 0 15px;
}
.custom-card .custom-card-footer ul {
  padding: 0;
  margin: 0;
}


.details-card .details-card-header {
  display: flex;
  justify-content: space-between;
}

/**/
.img-square {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  content: "";
  padding-bottom: 100%;
}





.logo-footer {
  height: 40px;
}

.init-logo {
  height: 40px;
}
.my-dropdown li a {
  font-size: 15px;
  font-family: var(--default-font);
  text-transform: capitalize;
  width: auto;
}

.btn {
  font-size: 14px !important;
  padding: 8px 26px !important;
  margin: 0 !important;
  border-radius: 4px !important;
}
.btn-custom,
.btn-custom:focus {
  color: #FFF;
  border: none;
  background: #2e1310;
  /* font-size: 14px; */
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-custom:hover,
.btn-custom:focus:hover {
  color: #FFF;
  background: #d83535;
}

.input-group-text {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

/*RECETA*/
.results-container {
  margin-top: 30px;
}

.recipe {
  margin-top: 50px;
  /* background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; */
}

.recipe h3 {
  margin-top: 0;
}

.recipe img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
}

/* Spinner */
.loading-spinner {
  text-align: center;
  display: none;
}

.loading-spinner i {
  font-size: 50px;
  color: #28a745;
}

.image-placeholder {
  width: 100%;
  height: 200px;
  background-color: #2A2826;
  text-align: center;
  line-height: 200px;
  color: #777;
  font-size: 20px;
  background-image: url("../../assets/img/loading.gif");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  padding-bottom:100%;
  border-radius: .5rem;
}

.image-placeholder img {
  width: 100%;
  border-radius: 0px 0px 10px 4px;
  margin-top:0px;
}

@media only screen and (max-width: 600px) {

  .image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #2A2826;
    text-align: center;
    line-height: 200px;
    color: #777;
    font-size: 20px;
    background-image: url("../../assets/img/loading.gif");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center center;
  }
  .scroll-top {
    display: block !important;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 99;
    background: #2e1310;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    transition: all 0.4s;
    border: none;
  }
  
  .scroll-top i {
    font-size: 35px;
    color: #ffffff;
    line-height: 0;
  }
  
  .scroll-top:hover {
    background: #2e1310;
    color: #fff;
  }
  .remove-mobil {
    display: none;
  }
  .logged-user {
    display: none;
  }
  .w-25 {
    width: 100% !important;
  }
  #init-banner {
    min-height: 100dvh;
    height: auto;
    max-height: auto;
  }
  #init-banner .container {
    padding-top: unset;
  }
  #init-banner h5 {
    font-size: 16px;
  }
  #init-banner h1 {
    font-size: 42px;
    line-height: 42px;
  }
  #arrow-btn {
    left: 45%;
  }
  .prod-btn {
    padding: 20px 0;
  }
  .prod-btn img {
    width: 30px;
    transform: rotate(0);
    transition: .3s;
  }
  .product h1 {
    font-size: 42px;
    line-height: 42px;
  }
  .prod-btn.active-btn img {
    width: 30px;
    transform: rotate(0) !important;
    transition: .3s;
  }
  #aplicacion h5 {
    font-size: 16px;
  }
  #aplicacion h1 {
    font-size: 42px;
  }
  #publicaciones h5 {
    font-size: 16px;
  }
  #publicaciones h1 {
    font-size: 42px;
  }
}





/* STEPS */
.stepper .step {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.stepper .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ced4da;
}

.stepper .step::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: #ced4da;
}

.stepper .step:last-child::after {
  display: none;
}

.stepper .step.active::before {
  background-color: #B11E45;
}

.stepper .step.completed::before {
  background-color: #B11E45;
}

.stepper .step.completed::after {
  background-color: #B11E45;
}

.image-checkbox {
  position: relative;
  display: inline-block;
  margin: 5px;
  border-radius: 4px;
}

.image-checkbox input[type="radio"],
.image-checkbox input[type="checkbox"] {
  display: none;
}

.image-checkbox img {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.image-checkbox input[type="radio"]:checked+img,
.image-checkbox input[type="checkbox"]:checked+img {
  border: 1px solid rgba(16, 107, 114, 1);
}

.image-checkbox .overlay {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  /* background: rgba(255,255,255, 0.6); */
  opacity: .5;
  display: none;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  border-radius: 50%;
}
.image-checkbox-group {
  display: flex;
  padding-bottom: 50px;
}
.image-checkbox small {
  line-height: normal;
  font-size: 12px;
}
.image-checkbox .overlay span img {
  width: 50%;
  filter: brightness(100);
}

.image-checkbox input[type="radio"]:checked+img+.overlay,
.image-checkbox input[type="checkbox"]:checked+img+.overlay {
  display: flex;
}



.glass-effect {
  /* Basic properties */

  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
  backdrop-filter: blur(10px) saturate(180%); /* Diffuse background with blur */
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for depth */


  /* Optional text styling */
  


  /* Smooth transition for hover effects */
  transition: all 0.3s ease;
}

/* Hover effect (optional) */
.glass-effect:hover {
  background: rgba(255, 255, 255, 0.2);
}

.text-rojo{
  color:#B11E45;
}
.btn-custom {
  background-color: #B11E45; /* Main background color */
  color: #ffffff; /* White text color */
  border: 1px solid #B11E45; /* Border matching the background */
  border-radius: 0.375rem; /* Slightly rounded corners */
  padding: 0.5rem 1rem; /* Padding for the button */
  font-size: 1rem; /* Font size */
  font-weight: 500; /* Slightly bold text */
  text-transform: uppercase; /* Optional: Make the text uppercase */
  transition: all 0.3s ease; /* Smooth hover effect */
}

.btn-custom:hover {
  background-color: #991A3C; /* Darker shade for hover effect */
  color: #ffffff; /* Maintain white text */
  border-color: #991A3C; /* Adjust border color */
}

.form-check-input:checked,
.btn-custom:active {
  background-color: #7F1531; /* Even darker shade for active state */
  border-color: #7F1531;
}

.form-check-input:focus,
.form-control:focus,
.btn-custom:focus {
  box-shadow: 0 0 0 0.2rem rgba(177, 30, 69, 0.5); /* Subtle focus outline */
  outline: none;
}

/* Disabled state */
.btn-custom:disabled,
.btn-custom[disabled] {
  background-color: #D9D9D9; /* Light gray for disabled background */
  color: #A0A0A0; /* Gray text */
  border-color: #D9D9D9; /* Match border to background */
  cursor: not-allowed; /* Show not-allowed cursor */
  opacity: 0.7; /* Slightly faded appearance */
}




/* HTML: <div class="loader"></div> */
.loader {
  height: 15px;
  aspect-ratio: 5;
  display: grid;
  --_g: no-repeat radial-gradient(farthest-side,#CED4DA 94%,#0000);
}
.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  background:
    var(--_g) left,
    var(--_g) right;
  background-size: 20% 100%;
  animation: l32 1s infinite; 
}
.loader:after { 
  background:
    var(--_g) calc(1*100%/3),
    var(--_g) calc(2*100%/3);
  background-size: 20% 100%;
  animation-direction: reverse;
}
@keyframes l32 {
  80%,100% {transform:rotate(.5turn)}
}