@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/*--- Reset Css ---*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

input:focus {
  outline: none;
  box-shadow: none;
}

body,
html {
  height: 100%;
  box-sizing: border-box;
}

html, body {
  touch-action: none;
}

html {
  font-size: 62.5%;
}

:root {
  --font: "Manrope", sans-serif;
  --titleColor: #000000;
  --subTitle: #797979;
  --borderColor: #EDEDED;
  --pirmaryColor: #9F1127;
  --primaryHoverColor: #800d1e;
  --animate-duration: 800ms;
  --animate-delay: 0.5s;
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFF;
  overflow: hidden;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 1rem;
  background-color: transparent;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: #dbd4cf;
}

h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
}

.btn-primary {
  background: var(--pirmaryColor);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary svg, .btn-primary i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-primary:active {
  background: var(--primaryHoverColor);
  color: #FFF;
}
.btn-primary:active:focus-visible {
  background: var(--primaryHoverColor);
}
.btn-primary:hover {
  background: var(--primaryHoverColor);
  color: #FFF;
}
.btn-primary:focus, .btn-primary:focus-visible {
  background: var(--primaryHoverColor);
  color: #FFF;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: #FFF;
  background-color: var(--primaryHoverColor);
  border-color: var(--primaryHoverColor);
}

.md-wrapper {
  display: flex;
  height: 100%;
}
.md-wrapper .md-sidebar {
  flex: 0 0 350px;
  background: #F1E9E3;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
  position: relative;
  z-index: 1;
}
.md-wrapper .md-sidebar .md-logo {
  margin: 3rem 3rem 0 3rem;
}
.md-wrapper .md-categories {
  padding: 2rem;
  height: calc(100% - 0px);
  overflow: auto;
}
.md-wrapper .md-categories h1 {
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0% 0 2rem 0;
  color: var(--pirmaryColor);
}
.md-wrapper .md-categories h6 {
  font-weight: 600;
  font-size: 1.6rem;
  margin: 3rem 0 2rem 0;
  color: #000000;
}
.md-wrapper .md-categories ul {
  padding: 0;
  height: calc(100% - 345px);
}
.md-wrapper .md-categories ul li {
  margin-bottom: 1.2rem;
}
.md-wrapper .md-categories ul li a {
  padding: 2rem 2rem;
  display: block;
  font-size: 1.6rem;
  background: #E5D9D0;
  border-radius: 1rem;
  color: #4D2013;
  font-weight: 600;
}
.md-wrapper .md-categories ul li a.active {
  background: var(--pirmaryColor);
  color: #FFF;
}
.md-wrapper .md-right-wrapper {
  width: calc(100% - 350px);
  height: 100dvh;
}
.md-wrapper .md-right-wrapper .md-products-wrapper {
  height: calc(100% - 0px);
  padding: 0rem;
  overflow: hidden;
}

.citem {
  --animationDelay: 0s;
  --animationSpeed: .3s;
  opacity: 0;
  animation: var(--animationSpeed) itemShow cubic-bezier(0, 1, 1, 1) var(--animationDelay) forwards;
}

.citem::after {
  content: " " attr(data-index);
}

@keyframes itemShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.md-doo-search-wrapper {
  max-width: 100%;
  padding: 2rem 3rem;
}
.md-doo-search-wrapper form {
  position: relative;
  display: flex;
}
.md-doo-search-wrapper form .form-control {
  font-size: 1.8rem;
  font-weight: 600;
  height: 5.5rem;
  padding: 1.5rem;
  border: 1px solid #E8E8E8;
  border-radius: 0.8rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 15px -3px, rgba(0, 0, 0, 0.01) 0px 4px 6px -2px;
}
.md-doo-search-wrapper form .form-control::-moz-placeholder {
  font-weight: 500;
  opacity: 0.9;
}
.md-doo-search-wrapper form .form-control::placeholder {
  font-weight: 500;
  opacity: 0.9;
}
.md-doo-search-wrapper form .form-control:focus {
  box-shadow: none;
}
.md-doo-search-wrapper .btn-primary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  position: absolute;
  top: 5px;
  right: 6px;
}

.md-video-wrappper {
  position: relative;
}
.md-video-wrappper::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.md-video-wrappper-full {
  height: 100%;
  width: 100%;
}

.grid-gallery {
  padding: 2rem;
  margin-top: -120px;
  position: relative;
  z-index: 1;
}
.grid-gallery .grid-item {
  padding: 0 0.5rem;
  display: block;
  position: relative;
  width: 100%;
  transform: scale(0);
  animation: scaleUp 0.5s ease-in-out forwards;
}
.grid-gallery .grid-item .imagesContainer {
  position: relative;
  height: 180px;
}
.grid-gallery .grid-item .imagesContainer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-gallery .grid-item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  border-radius: 1rem;
}
.grid-gallery .grid-item iframe {
  border-radius: 1rem;
}
.grid-gallery .grid-item .grid-item-content {
  width: 100%;
  display: none;
}
.grid-gallery .grid-item .grid-item-content h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.2rem;
  text-decoration: none;
  color: #000;
  text-align: center;
}

.four-grid {
  grid-area: span 2/span 2;
}

@keyframes scaleUp {
  0% {
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-xxl {
  max-width: 80%;
}

.modal-content {
  border-radius: 1rem;
  border: none;
}
.modal-content .modal-body {
  height: calc(100dvh - 7.4rem);
  padding: 2rem;
}
.modal-content .modal-body h3 {
  font-size: 2rem;
  font-weight: 700;
}

.btn-closed {
  border: none;
    background: #FFF;
    font-size: 2.5rem;
    cursor: pointer;
}

.product-slider {
  height: 100%;
}
.product-slider .carousel-item img {
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-inner {
  max-height: unset;
}
.carousel-inner .carousel-item {
  height: calc(100dvh - 165px);
  background: rgba(130, 130, 130, 0.2);
  background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
  background-size: 800px 100px;
  animation: wave-squares 2s infinite ease-out;
}
.carousel-inner .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}

.carousel-indicators {
  position: static;
  margin: 0 0 0;
  gap: 1.5rem;
}
.carousel-indicators .thumbnail {
  border-radius: 1rem;
  overflow: hidden;
  border: none;
  width: 50%;
  height: 220px;
  background: rgba(130, 130, 130, 0.2);
  background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
  background-size: 800px 100px;
  animation: wave-squares 2s infinite ease-out;
}
.carousel-indicators .thumbnail img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 4px #FFF;
}

.md-header h1 {
  font-size: 2.2rem;
  word-break: break-word;
  line-height: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.md-materials-wrapper {
  margin-bottom: 3rem;
}
.md-materials-wrapper h3 {
  font-weight: 700;
  margin: 3rem 0 2rem 0;
  font-size: 1.8rem;
}
.md-materials-wrapper .md_materials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.md-materials-wrapper .md_materials .item {
  flex: 0 0 23%;
  border: solid 1px #E1E1E1;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.md-materials-wrapper .md_materials .item img {
  width: 100%;
}
.md-materials-wrapper .md_materials .item h6 {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.4rem 0.4rem;
  color: #000;
  line-height: 2rem;
}

.md-share {
  padding: 2rem;
  background: #FAF5F2;
  border: solid 1px #e8e1dd;
  border-radius: 0.8rem;
  margin-top: 3rem;
}
.md-share .form-control {
  height: 6.5rem;
  font-size: 1.9rem;
  border-radius: 0.8rem;
  padding: 1.5rem;
  font-weight: 600;
}
.md-share .form-control:focus {
  box-shadow: none;
}

.iti {
  position: relative;
  display: inline-block;
  width: 100%;
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
  font-size: 1.8rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #FFF;
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 2rem;
  background: #25D366;
  padding: 1.5rem 2rem;
  text-transform: uppercase;
}
.btn-whatsapp i {
  font-size: 2.6rem;
}
.btn-whatsapp:hover, .btn-whatsapp:active {
  color: #FFF;
  background: #18a54b;
}
.btn-whatsapp:focus, .btn-whatsapp:focus-visible {
  background: #18a54b;
  color: #FFF;
}

.btn-whatsapp:checked + .btn-whatsapp, .btn-whatsapp.active, .btn-whatsapp.show, .btn-whatsapp:first-child:active, :not(.btn-check) + .btn-whatsapp:active {
  color: #FFF;
  background-color: #18a54b;
  border-color: #18a54b;
}

.modal-backdrop.show {
  --bs-backdrop-opacity: .8;
  opacity: var(--bs-backdrop-opacity);
}

.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-gap: 5px;
  margin: 0rem 0 2.5rem;
}
.product-features .feature_item {
  padding: 1.5rem 0;
}
.product-features .feature_item img {
  width: 6rem;
  display: inline-block;
  opacity: 0.8;
}
.product-features .feature_item p {
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
  padding-top: 0.8rem;
  line-height: 1.6rem;
  color: #4b4b4b;
  text-transform: uppercase;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fadeInClass {
  animation-name: fadeIn;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

#mdReloadPage {
  cursor: pointer;
}

.touch {
  display: flex;
  align-items: center;
  justify-content: center;
}

.touchon-hand-fill {
  fill: #ffffff;
  filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.5));
}

.touchon-hand-stroke {
  stroke: #000;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.touchon-hand-fill, .touchon-hand-stroke {
  animation: 2.2s linear 0.6s infinite handTouch;
  transform-origin: 50% 50%;
}

.hand-touch-1, .hand-touch-2, .hand-touch-3 {
  stroke: #fff;
  filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.4));
}

.hand-touch-1 {
  animation: 2.2s linear 0s infinite touch-1;
}

.hand-touch-2 {
  animation: 2.2s linear 0s infinite touch-2;
  opacity: 0;
}

.hand-touch-3 {
  animation: 2.2s linear 0s infinite touch-3;
  opacity: 0;
}

@keyframes touch-1 {
  0% {
    r: 0;
  }
  70% {
    r: 0;
  }
  80% {
    r: 50;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes touch-2 {
  0% {
    r: 0;
  }
  50% {
    r: 0;
  }
  80% {
    r: 110;
    opacity: 0.8;
  }
  95% {
    opacity: 0;
  }
}
@keyframes touch-3 {
  30% {
    r: 0;
    opacity: 0;
  }
  80% {
    r: 160;
    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
}
@keyframes handTouch {
  0% {
    transform: scale(1, 1);
  }
  10% {
    transform: scale(0.7, 0.7);
  }
  20% {
    transform: scale(1, 1);
  }
}
.help-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
}

.carousel-indicators [data-bs-target] {
  opacity: 1;
}

.spinner-border {
  --bs-spinner-width: 3rem;
  --bs-spinner-height: 3rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 3px;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.carousel-indicators .active {
  box-shadow: rgba(159, 17, 39, 0.16) 0px 1px 3px, rgb(159, 17, 39) 0px 0px 0px 3px;
}

@keyframes wave-squares {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.connection-msg {
  background: #e8004f;
  padding: 12px 20px;
  font-size: 1.5rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(50%, -200px);
  border-radius: 5px;
  transition: transform 0.25s;
  z-index: 9999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.connection-msg.show {
  transform: translate(50%, 10px);
}/*# sourceMappingURL=styles.css.map */

.md-video-wrappper video {
      height: calc(100vh - 95px);
  }