@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BigShoulders";
  src: url('../fonts/BigShoulders-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Container positioning */
.product-thumbnail {
  position: relative;
  display: block;
}

/* Hover video */
.product-hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 2;
}

/* Hide image on hover */
.product-thumbnail:hover .product-hover-video {
  opacity: 1;
}

.product-thumbnail:hover .product-hover-image {
  opacity: 0;
}

/* Disable video hover on mobile */
@media (max-width: 768px) {
  .product-hover-video {
    display: none;
  }
}


/** FIX HEADER OVERLAP MAIN CONTENT IN FIRST PAGE LOAD **/
#wrapper .container {
  padding-top: 40px;
}

@media (min-width: 1024px) {
  body #page {
    padding-top: 131.688px !important;
  }
}
/*********/

.calpsule-exclusive {
  width: 100%;
  padding: 1rem;
  background-color: #ff894f ;
  text-align: center;
  color: #FFFFFF;
}

/*CART-PRODUCT QUANTITY SELECTOR*/
.cart-item .bootstrap-touchspin input.form-control,
.product-quantity .bootstrap-touchspin input.form-control {
  border-radius: 0px !important;
}

/**LOGO**/
.box-top .h-logo img {
  max-width: 250px !important;
}

.breadcrumb {
  display: none !important;
}

/*HOME --- AI-VIDEO-BANNER>*/
.banner-wrapper {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.banner-wrapper .ApImage .image_description a {
  text-transform: uppercase;
  position: relative;
  padding: 10px 0 10px 55px;
}

.banner-wrapper .ApImage .image_description a:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 2px;
  background: #000;
  transition: all .4s;
}

.box-container {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #FFFFFF;
  padding: 0 !important;
}

.banner-wrapper .video-container video {
  width: 100%;
  height: 650px !important;
  object-fit: cover;
}

.banner-wrapper .image-container img {
  position: relative;
  height: 650px !important;
  object-fit: cover;
}


.image-container .image_description {
  position: absolute !important;
  top: 45% !important;
  left: -5% !important;
  transform: translateY(-45%);
  text-align: end;
  line-height: 2;
  font-size: 2em;
  color: #000;
  max-width: 80%;
  min-height: 55%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .image-container .image_description {
    left: -25% !important;
  }

}

@media (max-width: 768px) {
  .banner-wrapper {
    grid-template-columns: 1fr;
  }

  .banner-wrapper .video-container video {
    height: 450px !important;
    object-fit: cover;
  }

  .banner-wrapper .image-container img {
    height: 450px !important;
  }

  .image-container .image_description {
    position: relative !important;
    top: 25% !important;
    left: 50% !important;
    transform: translate(-50%, -25%);
    line-height: 2;
    color: #000;
    max-width: 80%;
    min-height: 55%;
    display: flex;
    flex-direction: column;
  }

}
/* 
.box-h4bn1 .ApImage .image_description {
  position: absolute !important;
  top: 25% !important;
  left: 10% !important;
  line-height: 2;
  color: #000;
  max-width: 80%;
  min-height: 55%;
  display: flex;
  flex-direction: column;
} */

/* TOP-INFO BANNER */
.top-sticky-bar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ff894f ;
  /* color tipo la imagen */
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 99;
}

.collection-container {
  display: grid;
  grid-template-columns: auto;
}

.video-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: all 1s;
}

@media (min-width: 1024px) {
  .collection-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* @media (max-width: 768px) {
  .collection-container {
    display: grid;
    grid-template-columns: 33% 33% 33%;
  }
} */

@media (max-width: 1800px) {
  .video-banner video {
    height: 400px !important;
  }
}

@media (max-width: 1199px) {
  .video-banner video {
    height: 360px !important;
  }
}

.video-playback-banner {
  position: relative;
  overflow: hidden;
}

.video-playback-banner video {
  width: 100%;
  /* height: auto;
  object-fit: contain; */
  height: 650px;
  object-fit: cover;
  display: block;
  transition: all 1s;
}

.video-playback-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.btn-playback {
  padding: 1rem 2rem;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
}

/* Remove the flex behavior Ap Page Builder adds */
.block.video-playback-text {
  display: block !important;
  width: 100%;
}

/* Center the text */
.block.video-playback-text .block_content {
  text-align: center !important;
  width: 100%;
  margin: 0 auto;
}

.video-playback-text .block_content h1 {
  font-family: "BigShoulders", sans-serif;
  font-size: clamp(3em, 4vw, 6.5rem);
  font-weight: 900;
  line-height: 1.2em !important;
  color: #FFFFFF;
  margin-bottom: 0rem;
}

.video-playback-text .block_content h1:nth-child(3) {
  font-size: clamp(8em, 8vw, 12rem);
}

@media (min-width: 1023px) {
  .video-playback-banner video {
    height: 750px !important;
  }
}

@media (min-width: 1199px) {
  .video-playback-banner video {
    height: 1117px !important;
  }
}

.video-banner .video-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-35%);
  max-width: 80%;
  min-height: 55%;
  display: flex;
  flex-direction: column;
  color: white;
  z-index: 10;
}

.video-banner .image-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-35%);
  max-width: 80%;
  min-height: 55%;
  display: flex;
  flex-direction: column;
  color: black;
  z-index: 10;
}

.video-banner .video-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.video-banner .video-text pre,
.video-banner .video-text pre a {
  font-size: 1em;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 2px;
  color: white !important;
}

.video-banner .video-text pre:hover {
  transform: scale(1.1);
  transition: all .5s ease;
  cursor: pointer;
}

.video-text.black-color-text h1,
.video-text.black-color-text pre,
.video-text.black-color-text pre a {
  color: #000 !important;
}

.video-text pre a {
  color: #000 !important;
}

#video-330863846129617 {
  width: 100vw !important;
  max-width: 100vw !important;
}

#video-330863846129617 video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}


/* ABOUT-US PAGE STYLE */

.about {
  display: flex;
  flex-direction: column;
}

.about h2 {
  font-size: 1.875em;
  font-weight: normal;
  text-transform: uppercase;
  color: #232323;
  line-height: 1.1em;
  padding-bottom: 37px;
}

.about h3 {
  font-size: 1.1em;
  font-weight: normal;
  text-align: justify;
  color: #858686;
}

.movil {
  display: none;
  flex-direction: column;
}

.ordena {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0em;
  padding: 0em;
  align-items: center;
}

.about-1-img img {
  width: 100%;
}

.about-1-txt {
  max-width: 500px;
  display: table;
  margin: 0 auto;
  padding: 2rem;
}

@media (max-width: 767px) {
  .ordena {
    display: none;
  }

  .movil {
    display: flex;
  }
}

/* PRENSA PAGE STYLE */

.noticia {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.noticia h2 {
  font-size: 1.125em;
  margin-bottom: 1.5rem;
}

.noticia img {
  border-radius: 20px;
}


/* PRODUCT-DETAIL PAGE STYLE */
.blockreassurance_product div span.item-product,
.product-container .product-additional-info,
.leo-compare-wishlist-button .compare,
.product-container .product-tabs .nav .nav-item:nth-child(3),
button.add-to-cart .icon-bag,
.thumbnail-container .product-price-and-shipping .price {
  display: none !important;;
}

.thumbnail-container .product-price-and-shipping .regular-price {
  display: none !important;
}

.product-detail.product-thumbs-left .images-container .product-thumb-images {
  display: block;
}

.video-js .vjs-tech {
  object-fit: cover;
  pointer-events: none;
}

.st_easy_video_player_on .zoomContainer {
  display: none !important;
}

.box-top .col-info #_desktop_cart .header .cart-products-count {
  background: #ff894f !important;
}

.box-top .col-info .wislish-button .ap-btn-wishlist .ap-total {
  background: #ff894f !important;
}