/********** Template CSS **********/

@font-face {
  font-family: "Catalish-Huntera";
  src: url("../fonts/Catalish-Huntera.ttf");
}

@font-face {
  font-family: "Outfit-Regular";
  src: url("../fonts/Outfit-Regular.ttf");
}

@font-face {
  font-family: "Outfi-Bold";
  src: url("../fonts/Outfi-Bold.ttf");
}

:root {
  --primary: #980000;
  --secondary: #c99828;
  --tertiary: linear-gradient(to right, #980000, #4a2c1a, #980000);
  --cuaternary: #4a2c1a;
  --light: #f2e3c6;
  --dark: #1a1a1a;
}

#scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
  border-radius: 10px !important;
  background-color: #f5f5f5 !important;
}

#scrollbar::-webkit-scrollbar {
  width: 12px !important;
  background-color: #f5f5f5 !important;
}

#scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
  background-color: #555 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 15px;
  bottom: 15px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}

/*** Spinner ***/

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner img {
  width: 75px;
  height: 75px;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/

.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
  background-color: var(--cuaternary);
}

.btn-primary:hover,
.btn-outline-primary:hover {
  color: var(--cuaternary);
  background-color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/

.shop {
  margin-left: 1.5rem;
}

.sticky-top {
  top: -150px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: absolute;
  padding: 0;
  width: 75px;
  height: auto;
  left: 0;
}

.navbar .navbar-brand img {
  border-radius: 0rem !important;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    width: 50px;
    height: auto;
    top: 0
  }
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .navbar .navbar-nav {
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/

.header-carousel-1 .owl-nav {
  position: absolute;
  width: 200px;
  height: 40px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel-1 .owl-nav .owl-prev,
.header-carousel-1 .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel-1 .owl-nav .owl-prev:hover,
.header-carousel-1 .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel-1 .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel-1 .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  transition: 0.5s;
}

.header-carousel-1 .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 5px;
}

.effects {
  max-width: 100%;
  height: 86vh;
  object-fit: cover;
}

@media (max-width: 768px) {
  .effects {
    height: 40vh;
  }
}

.header-carousel-1 .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.bi-chevron-left,
.bi-chevron-right {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-prev {
  position: absolute;
  top: 0vh;
  bottom: 50vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  padding: 0;
  left: 0;
  color: #fff;
  float: left;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.owl-next {
  position: absolute;
  top: 0vh;
  bottom: 50vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  padding: 0;
  color: #fff;
  float: right;
  text-align: center;
  background: none;
  border: 0;
  right: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

/*** Header ***/

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#close-preview {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--light);
}

.display-4,
.read {
  z-index: 8;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: #ffffff;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid var(--primary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-caption h5 {
  font-family: "Outfi-Bold";
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--dark);
  border: 15px solid var(--dark);
}

@media (max-width: 768px) {
  #header-carousel-1 .carousel-item {
    position: relative;
    min-height: 450px;
  }
  #header-carousel-1 .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.header-bg {
  position: relative;
  overflow: hidden;
}

.page-header {
  background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(54, 54, 54, 0.479)),
    url(../img/backgrounds-products/background-title.jpg) center center
      no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Section Title ***/

/*** About ***/
.img-twice::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  background: var(--primary);
  border: 25px solid var(--light);
  border-radius: 6px;
  z-index: -1;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--cuaternary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  bottom: -13px;
  left: calc(25% - 13px);
  background: var(--dark);
  border: 10px solid #ffffff;
  border-radius: 28px;
}

.section-title.text-center::before {
  left: 25%;
}

.section-title.text-center::after {
  left: calc(50% - 13px);
}

/* About */

/* .about-img {
    height: 100%;
    object-fit: cover;
} */

.about-center-img .section-title {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

.about-center-img {
  display: flex;
  justify-content: center;
}

.social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.about-img {
  border-radius: 2rem;
}

.about-center-img h5 {
  font-size: 2rem;
  color: var(--primary);
}

/*** Products ***/

.product {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/caldos.jpeg") center top no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.product .menu-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 800px;
  box-shadow: 1px 8px 29px -10px rgb(24, 24, 24);
  background-color: #191717de;
}

.container-fluid.product-1 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/caldos.jpeg") center top no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.container-fluid.product-2 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/calentados.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.container-fluid.product-3 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/huevos.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.container-fluid.product-4 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/combos.webp") center top no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.container-fluid.product-5 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/platos-a-la-carta.png") center top
      no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.container-fluid.product-6 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/bebidas-calientes.jpg") center top
      no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.container-fluid.product-7 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/bebidas-frias.jpg") center top no-repeat
      fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.container-fluid.product-8 {
  background: linear-gradient(
      to bottom,
      rgba(39, 39, 39, 0.719),
      rgba(35, 35, 36, 0.781)
    ),
    url("../img/backgrounds-products/pasabocas.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.product .container {
  position: relative;
  max-width: 900px;
  z-index: 9;
}

.product i {
  color: var(--primary);
  font-style: italic;
}

.product .tab-content .tab-pane .oval-text {
  background: var(--cuaternary);
  width: 500px;
  color: var(--dark);
  font-family: "Catalish-Huntera";
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1rem;
  border-radius: 2rem;
}

.product .testimonial-item {
  padding: 0 0 15px 0;
  text-align: left;
}

@media (max-width: 575.98px) {
  .product .testimonial-item {
    text-align: center;
  }
  .product .tab-content .tab-pane .oval-text {
    width: auto;
  }
}

.product .img,
.product .content {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product .product-item .product-img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  height: 400px;
}

.product .product-item .no-cover {
  object-fit: contain !important;
  height: 400px !important;
  background-color: #fff;
}

@media (max-width: 575.98px) {
  .nav-link {
    list-style-type: none;
    white-space: nowrap;
    width: 250px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .product .menu-scroll {
    overflow-y: hidden;
    overflow-x: auto;
    max-height: 100px;
  }
  .nav-pills {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0.5rem;
  }
  .product .product-item .product-img {
    height: 350px;
  }
  .product .product-item .no-cover {
    height: 100%;
  }
}

.product .product-item .product-content {
  height: 100%;
  width: 100%;
  padding: 15px;
  background: #f2f2f2;
  border-radius: 6px;
}

.product .product-item h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--primary);
}

.product .product-item h4 {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product .product-item p {
  color: var(--dark);
  font-weight: 400;
  margin: 0;
  padding-right: 15px;
}

.product .owl-nav,
.product .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.product .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light);
}

.product .owl-dot.active {
  background: var(--cuaternary);
}

.tab-desc {
  display: flex;
  align-items: center;
}

.product .nav .nav-link {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 60px !important;
  z-index: 300 !important;
  margin-bottom: 5rem;
}

.product .nav .nav-link h3 {
  color: var(--light);
}

.product .nav .nav-link.back-image-1.active {
  background: linear-gradient(
      to bottom,
      rgba(40, 34, 56, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/caldos.jpeg") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-2.active {
  background: linear-gradient(
      to bottom,
      rgba(40, 34, 56, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/calentados.jpg") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-3.active {
  background: linear-gradient(
      to bottom,
      rgba(40, 34, 56, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/huevos.jpg") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-4.active {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/combos.webp") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-5.active {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/platos-a-la-carta.png") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-6.active {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/bebidas-calientes.jpg") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-7.active {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/bebidas-frias.jpg") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-8.active {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/pasabocas.jpg") no-repeat;
  border: solid 4px var(--light);
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-1 {
  background: linear-gradient(
      to bottom,
      rgba(40, 34, 56, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/caldos.jpeg") no-repeat;
  background-size: cover;
  background-position: center;
}

.product-content .content p {
  display: none;
}

.product .nav .nav-link.back-image-2 {
  background: linear-gradient(
      to bottom,
      rgba(40, 34, 56, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/calentados.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-3 {
  background: linear-gradient(
      to bottom,
      rgba(40, 34, 56, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/huevos.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-4 {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/combos.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-5 {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/platos-a-la-carta.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-6 {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/bebidas-calientes.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-7 {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/bebidas-frias.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.product .nav .nav-link.back-image-8 {
  background: linear-gradient(
      to bottom,
      rgba(16, 9, 36, 0.315),
      rgba(29, 24, 41, 0.658)
    ),
    url("../img/backgrounds-products/pasabocas.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/*** About ***/

.video {
  background: linear-gradient(rgb(55 55 55 / 82%), rgb(0 0 0 / 94%)),
    url(../img/background-products.jpg) center center no-repeat;
  background-size: cover;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: #ffffff;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid var(--primary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.video {
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Store ***/

.blogs .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.blogs .box-container .box {
  position: relative;
}

.blogs .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs .box-container .box:hover .image .icons {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.blogs .box-container .box .image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.blogs .box-container .box .image .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem;
  background: var(--black);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  -webkit-transform: translateY(10rem);
  transform: translateY(10rem);
}

.blogs .box-container .box .image .icons a {
  font-size: 1.5rem;
  color: var(--white);
}

.blogs .box-container .box .image .icons a i {
  padding-right: 1rem;
  color: var(--palet-1);
}

.blogs .box-container .box .image .icons a:hover {
  color: var(--palet-2);
}

.iframe-insta {
   height: 400px;
}

.blogs .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blogs .box-container .box .content {
  text-align: center;
  padding: 2rem;
}

.blogs .box-container .box .content h3 {
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--white);
}

.blogs .box-container .box .content p {
  font-size: 2rem;
  line-height: 2;
  color: var(--gray);
  padding: 1.5rem 0;
}

.store-item .store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(138, 180, 78, 0.3);
  opacity: 0;
  transition: 0.5s;
}

.store-item:hover .store-overlay {
  opacity: 1;
}

/*** Contact ***/

.contact .btn-square {
  width: 100px;
  height: 100px;
  border: 20px solid var(--light);
  background: var(--primary);
  border-radius: 50px;
}

.contact a {
  background-color: var(--cuaternary);
  color: var(--light) !important;
}

.contact a:hover {
  background-color: var(--light);
  color: var(--cuaternary) !important;
}

.align-content-center .text-center {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

/*** Testimonial ***/

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: var(--light);
  background: var(--primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: var(--dark);
}

/*** Footer ***/

.footer {
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .text-primary {
  color: var(--primary) !important;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer a {
  cursor: pointer;
  font-size: 14px !important;
}

.copyright {
  color: #b0b9ae;
}

.copyright {
  background: #252525;
}

.copyright a:hover {
  color: #ffffff !important;
}

/* WHATSAPP BUTTON */

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 25;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}

/* WHATSAPP BUTTON */

.stl-btn {
  margin: 0.1em;
}

.btn-whatsapp a {
  margin-left: 5px;
  font-family: "Outfit-Regular" !important;
}

.btn-whatsapp {
  display: flex;
  justify-content: center;
}

@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.m-cart {
  margin: 5px;
}

.send-order-sedes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fa-share {
  margin-right: 5px;
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: 0.3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4s ease 4;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 10px;
  bottom: 85px;
  right: 6px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: #fff;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both;
}

.popup-whatsapp > div {
  margin: 5px;
}

.about-us-cards {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: var(--tertiary);
  padding: 12px 32px;
  border-radius: 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

/* MODAL */

.img-modal {
  height: 3rem;
}

.modal-footer {
  justify-content: space-around;
}

.modal-dialog {
  margin-top: 0;
  margin-bottom: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-content {
  border-radius: 2rem !important;
}

.modal-body {
  height: auto;
  max-height: 50vh;
  overflow-y: auto;
}

/* FORM */

.modal input {
  position: relative;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  padding: 1.125em 0 6px 6px;
  font-size: 1em;
  margin: 0px 0px 9px 0px;
  border: 1px solid #dddddd;
  color: #444;
}

.modal input {
  z-index: 99;
  width: 100%;
}

.modal textarea {
  width: 100%;
  height: 6em;
}

.modal label {
  font-size: 1rem;
  font-weight: bold;
  z-index: 100;
  top: 0.75em;
  left: 0.375em;
  height: 1.1111em;
  padding: 0 0.375em;
  transition: 0.3s all ease-in-out;
  color: var(--palet-1);
}

.modal input:focus ~ label {
  z-index: 9999;
}

.modal input:focus {
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  border: 1px solid rgba(81, 203, 238, 1);
}

@media (max-width: 680px) {
  .blogs .box-container .box .image {
    height: 100%;
  }

  .blogs .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 2rem;
  }
  .popup-whatsapp p {
    font-size: 0.9em;
  }
}

.popup-whatsapp > .content-whatsapp.-top {
  display: flex;
  flex-direction: column;
}

.popup-whatsapp > .content-whatsapp.-top p {
  color: #585858;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1em;
}

.popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}

.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0px 0px 15px 0px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f76060;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.closePopup:hover {
  background-color: #f71d1d;
  transition: 0.3s;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.send-msPopup:hover {
  background-color: #f8f8f8;
  transition: 0.3s;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
}

input.whats-input[type="text"] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #fff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #fff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: 0.3s;
}

@media (max-width: 420px) {
  input.whats-input[type="text"] {
    width: 225px;
  }
  .membership-item {
    height: auto;
  }
}

input.whats-input::placeholder {
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}

input.whats-input[type="text"]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: 0.3s;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #fff;
}

.icon-font-color--black {
  color: #333;
}

/* END WHATSAPP */

/* MODAL PRODUCTS DETAIL  */

.modal-dialog {
  margin: 0 auto;
}

.modal-content {
  background-color: #fff;
  /* position: fixed; */
  /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 100%;
    height: auto; */
  /* max-height: 100%; */
  border: 1px solid #d8d8d8;
  border-radius: 2px;
}

.text-desc {
  font-size: 1rem;
  font-weight: normal;
}

.text-center {
  --bs-gutter-x: 0rem !important;
}

.modal-content-holder h3 {
  text-transform: uppercase;
}

.modal-content-holder .w-100 .text-info {
  text-align: left;
  font-size: 1rem;
  color: var(--black) !important;
  margin: 0 !important;
}

.product-cart {
  justify-content: center;
  align-items: center;
}

.info-card {
  margin-bottom: 1rem;
}

.close {
  color: var(--black);
  font-size: 28px;
  font-weight: normal;
}

.modal-img-grid {
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 0%;
  overflow: hidden;
}

.modal-img-item {
  height: auto;
  min-height: 100%;
  margin: 0;
  background-position: 50% 50%;
  background-origin: border-box;
  background-size: cover;
  transition: all 1s ease;
}

.hr-line {
  border-top: 1px solid var(--black);
  width: 100%;
}

/* .modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  } */

/* .modal-content-holder {
    padding: 20px;
} */

/* NEW Layout */

.modal-info-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  display: flex;
  align-items: flex-start;
}

.modal-info-left {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.modal-info-right {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  padding: 2rem 0.5rem 0.5rem 1rem;
}

.modal-img-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media only screen and (max-width: 600px) {
  .modal-info-left {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .modal-info-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

#message-warning,
#message-success {
  display: none;
  padding: 3rem;
  margin-bottom: 3.6rem;
  width: 100%;
}

#message-warning {
  color: var(--dark);
}

#message-success {
  color: #f9a828;
}

#message-warning i,
#message-success i {
  margin-right: 10px;
}

.form-floating label {
  font-weight: bold;
}

/* form loader */

#submit-loader {
  display: none;
  position: relative;
  left: 0;
  top: 1.8rem;
  width: 100%;
  text-align: center;
  margin-bottom: 4.2rem;
}

#submit-loader .text-loader {
  display: none;
  font-family: "montserrat-bold", sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.oldie #submit-loader .s-loader {
  display: none;
}

.oldie #submit-loader .text-loader {
  display: block;
}
