/*///////////////// GENERALES /////////////////*/
:root {
  --primary: #0a8d41;
  --secondary: #0577b5;
}

* {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  line-height: 1.2;
}
a{ color: var(--secondary)}
a:hover {
  color: currentColor;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffffac;
  background: #000000;
}

.wrapper {
  overflow: clip;
}

.underline {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.b-20 {
  border-radius: 20px;
}

.z-5 {
  z-index: 5;
}

input[type="file"].form-control {
  padding: 0.6rem;
  height: calc(1.5em + 0.75rem + 14px);
}

.primary {
  color: var(--primary);
}

.bg-primary {
  background-color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.black {
  color: black;
}

.gray {
  color: #ffffffad;
}

.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.192);
}

.rotate {
  transform: scaleX(-1);
}

.svg-inline--fa {
  height: 0.8em;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  border-radius: 26px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 35px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
  width: fit-content;
}

.btn:not(.btn-custom):after {
  content: "\f061";
  font-family: "FontAwesome";
  margin-left: 0.6rem;
  transition: 0.3s;
}

.btn:hover::after {
  transform: translateX(5px);
}

.btn-sm {
  border-radius: 26px;
  font-size: 16px;
  font-weight: 600;
  padding: 7px 15px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
}

.btn-primary {
  border: 2px solid var(--primary);
  color: #fff !important;
  background-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: #017431;
  color: #fff !important;
  border: 2px solid #017431;
  transition: all ease 0.25s;
}

.btn-outline-primary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: transparent;
  color: #017431;
  border: 1px solid #017431;
  transition: all ease 0.25s;
}

.btn-secondary {
  border: 2px solid var(--secondary);
  color: #fff;
  background-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  background: #00598a;
  color: #fff;
  border: 2px solid #00598a;
  transition: all ease 0.25s;
}

.btn-outline-secondary {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  background-color: transparent;
  color: #00598a;
  border: 1px solid #00598a;
  transition: all ease 0.25s;
}

.btn-success {
  border: 1px solid #78bf24;
  color: #fff;
  background-color: #78bf24;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  background: #fff;
  color: #78bf24;
  border: 1px solid #78bf24;
  transition: all ease 0.25s;
}

.btn-outline-success {
  border: 1px solid #cbde12;
  color: #cbde12;
  background-color: #fff;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  background: #cbde12;
  color: #fff;
  border: 1px solid #cbde12;
  transition: all ease 0.25s;
}

.rounded-lg {
  border-radius: 15px !important;
}

.btn-link {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  position: relative;
  padding-bottom: 0.2rem;
  width: fit-content;
  text-decoration: none;
}

.btn-link-primary {
  color: var(--primary) !important;
}

.btn-link-secondary {
  color: var(--secondary);
}

.btn-link::before {
  content: "";
  width: 0px;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.btn.btn-link {
  color: white;
  margin-bottom: 0.6rem;
}

.btn-outline-primary::after {
  content: "\f061";
  font-family: "FontAwesome";
}

.btn-outline-secondary::after {
  content: "\f061";
  font-family: "FontAwesome";
}

.btn-link::after {
  content: url(../images/arrow.svg);
  margin-left: 1rem;
}

.btn-link-primary::after {
  content: url(../images/arrow-green.svg);
  margin-left: 1rem;
}

.btn-link-secondary::after {
  content: url(../images/arrow-blue.svg);
  margin-left: 1rem;
}

.btn-link:hover,
.btn-link:visited {
  text-decoration: none;
}

.btn-link:hover::before {
  width: 100%;
}

.btn-custom {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  outline: none;
  background: none;
  border: none;
  overflow: hidden;
  padding: 10px 20px;
}

.btn-custom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 300px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #0577b5 0%, #0a8d41 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.btn-custom:hover, .btn-custom.active {
  color: white;
  background: linear-gradient(#00000000, #00000000) padding-box,
    linear-gradient(60deg, #0577b5, #0a8d41) border-box;
}

.btn-green {
  background-color: #84c628;
  border-color: #84c628;
}

.btn-green:hover {
  background-color: #6fb30f;
  border-color: #6fb30f;
}

/*///////////////// HEADER /////////////////*/
.menu {
  background-color: transparent;
  overflow-x: clip;
}

header {
  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: transparent;
  top: 0;
}

.navbar-brand {
  width: 250px;
  height: 143px;
  background-image: url(../images/header-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.center-logo {
  margin: 0 1rem;
}

.left-logo {
  display: none;
}

/* Navegador principal */
.navbar {
  padding: 1rem 3rem;
  background-color: transparent;
}

.custom-nav {
  justify-content: center;
  width: 100%;
  align-items: center;
}

.nav-link {
  color: #fff !important;
  padding: 0.4rem 0rem !important;
  margin-right: 1.2rem !important;
  margin-left: 1.2rem !important;
  font-weight: 400;
  position: relative;
  font-size: 18px;
  line-height: 1.2;
}

.nav-link:not(.nav-link-d)::after {
  bottom: 0rem;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  background: var(--primary);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
  border-radius: 6px;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 20px;
}

/* Menú flotante */
.nav-item.dropdown > .navbar-nav {
  opacity: 0;
}

.nav-item.dropdown > .navbar-nav.in {
  clip: auto;
  transition: 0.4s ease-in;
  opacity: 1;
  overflow: hidden;
}

.bsnav-light .nav-item.dropdown > .navbar-nav {
  background: #fff;
  border-radius: 20px !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  width: 950px;
  z-index: 10;
  left: -150px;
  clip: auto;
}

.sticked.in .nav-item.dropdown > .navbar-nav {
  left: -250px;
}

.float-nav {
  position: relative;
  padding: 1rem 0;
  color: #000000;
  background: radial-gradient(
      farthest-side at bottom left,
      rgb(11 141 65 / 20%),
      transparent
    ),
    radial-gradient(
      farthest-corner at bottom right,
      rgb(5 119 181 / 20%),
      transparent 800px
    );
}

.float-nav-col {
  display: flex;
  gap: 0.8rem;
}

.float-nav-col img {
  width: 195px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.float-nav-list {
  width: 100%;
  padding: 0;
}

.float-nav-list li {
  list-style: none;
  padding: 0.4rem 0.5rem;
  background-color: transparent;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
}

.float-nav-list li:hover {
  background-color: #0577b528;
}

.float-nav-list a {
  font-size: 15px;
  color: #000000;
  transition: 0.3s;
  display: block;
  white-space: nowrap;
}

.float-nav-list li::before {
  content: url(../images/arrow-blue-clean.svg);
  position: absolute;
  right: 0.2rem;
  opacity: 0;
  transition: 0.3s;
}

.float-nav-list li:hover a {
  color: #0577b5;
  font-weight: 500;
  text-decoration: none;
}

.float-nav-list li:hover::before {
  opacity: 1;
}

/* Bs nav para el menú mobile */
.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon::after,
.bsnav-light .navbar-toggler .navbar-toggler-icon::before {
  background-color: #ffffff;
}

.bsnav-mobile .navbar {
  left: 0 !important;
  transform: translate3d(-330px, 0, 0) !important;
  width: 300px;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar.bsnav-dark {
  background: #111111 !important;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  padding: 30px 0 15px;
}

.bsnav-sticky.bsnav-sticky-fade.sticked.in {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  top: 0;
  transition: opacity 0.5s 0.4s;
  background-color: rgb(0, 0, 0);
}

.sticked.in .navbar-brand {
  width: 145px;
  height: 84px;
  background-image: url(../images/header-logo-sm.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.sticked.in .left-logo {
  display: block;
}

.sticked.in .center-logo {
  display: none;
}

.sticked.in .custom-nav {
  justify-content: end;
}

.sticked.in .btn-custom:hover {
  color: #ffffff !important;
}

.whatsapp-mobile {
  position: fixed;
  z-index: 700;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 0.9;
  transition: all ease 0.25s;
}

.whatsapp-mobile {
  width: 56px;
  height: 56px;
}

.whatsapp-mobile:hover {
  opacity: 1;
  transition: all ease 0.25s;
}

/*///////////////// MAIN /////////////////*/
.main {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-overlay {
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 73%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.main-video {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/*////////////// About //////////////*/
.about-famesa {
  background-color: #000000;
  padding: 5rem 0;
}

/*////////////// Destacados home //////////////*/
.highlights-products-home {
  padding: 4rem 0;
}

.highlight-container {
  transition: 0.3s;
  border-radius: 20px;
  overflow: hidden;
  margin: 1rem 0;
  border: 1px solid #ffffff0a;
  padding: 1rem;
  background-color: #ffffff20;
  text-align: center;
  min-height: 385px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.highlight-container:hover {
  box-shadow: 0px 0rem 2rem 3px #0577b56e !important;
}

.highlight-container-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.highlight-container-img.fade-out {
  opacity: 0;
}

.highlight-title {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.1;
}

.highlight-more {
  position: absolute;
  bottom: 1rem;
  transition: 0.3s;
  transform: translateY(200px);
}

.highlight-container:hover .highlight-more {
  transform: translateY(0px);
}

/*////////////// Carousel de productos //////////////*/
.products-carousel-section {
  padding: 4rem 0 1rem 0;
  background: url(../images/fondo-black2.png);
  background-size: auto;
  background-position: bottom right;
  background-repeat: no-repeat;
  position: relative;
}

.products-carousel-section .container {
  position: relative;
  z-index: 5;
}

.products-carousel-section-overlay {
  width: 100%;
  height: 75%;
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.37) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

/* Texto animado */
/* .animated-text {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  background: transparent;
}

.animated-text-container {
  display: inline-block;
  animation: deslizar 40s linear infinite;
}

.animated-text-container span {
  display: inline-block;
  padding-right: 0.4rem;
  background: linear-gradient(145deg, #0577b5, #0a8d41);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 72px;
  font-weight: 500;
}
@keyframes deslizar {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
} */

#productsCarousel .f-carousel__nav button {
  position: relative;
  transform: none;
  margin: 0 1rem;
  color: var(--secondary);
}

#productsCarousel .f-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: row-reverse;
  bottom: 1rem;
  position: absolute;
  right: 0;
}

.product-badge {
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
  background-color: #ffffff30;
  border-radius: 10px 0 10px 0;
  padding: 0.2rem 0.4rem;
  color: white;
  margin-bottom: 0.4rem;
}

.product-bottom-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 1.2rem 0;
}

.product-capacity {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 10px;
  line-height: 1;
}

.product-slide-img {
  width: 100%;
}

/*////////////// Personalizar //////////////*/
.customize {
  padding: 4rem 0;
}

.customize-gallery {
  transition: 0.3s;
}

.customize-gallery:hover {
  filter: brightness(1.25);
}

/*////////////// Banner somos fabricantes //////////////*/
.manufacturers-banner {
  padding: 6rem 0;
  background: url(../images/bg-banners-fabricantes.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 500px;
}

/*/////////////////  Post venta /////////////////*/
.after-sales {
  padding: 4rem 0;
}

.after-sales-container {
  height: 520px;
  width: 100%;
  background-size: 130%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 1.4rem;
  text-align: left;
  color: white;
  position: relative;
  transition: all 0.5s;
  overflow: hidden;
  border-radius: 20px;
}

.visible-content {
  transition: all 0.5s;
}

.after-sales-icon {
  height: 42px;
  width: auto;
  margin-bottom: 0.6rem;
}

.after-sales-container-title {
  position: relative;
  z-index: 5;
}

.after-sales-container-tech-service {
  background-image: url(../images/bg-servicio-tecnico.jpg?2);
}

.after-sales-container-warranty {
  background-image: url(../images/bg-garantia.jpg);
}

.after-sales-container-guides {
  background-image: url(../images/bg-manuales.jpg);
}

.after-sales-hide-content {
  position: absolute;
  bottom: 1.4rem;
  transform: translateY(600px);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index: 10;
  left: 1.4rem;
  right: 1.4rem;
  margin: auto;
}

.after-sales-container:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-size: 140%;
}

.after-sales-container:hover .after-sales-hide-content {
  transform: translateY(0px);
}

.after-sales-container:hover .visible-content {
  transform: translateY(-120px);
}

/*////////////// Banner CO2 //////////////*/
.co2-banner {
  padding: 6rem 0;
  background: url(../images/bg-banner-co2.png);
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 49px;
}

.co2-banner-text {
  padding: 1.2rem;
  background-color: #181818;
  border-radius: 15px;
}

/*/////////////////  Carousel de logos /////////////////*/
.logos-carousel {
  padding: 4rem 0;
}

.logos-carousel .f-carousel__slide {
  padding: 1rem;
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-carousel .f-carousel__slide img {
  display: block;
  margin: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: 0.3s;
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.logos-carousel .f-carousel__slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/*/////////////////  Novedades /////////////////*/
.news-home {
  padding: 4rem 0;
}

.news-highlight-container {
  padding: 0;
  border: 0;
}

.news-highlight-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.news-highlight-container .highlight-text {
  padding: 1.2rem;
  background-color: #1a1a1a;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.news-highlight-container .highlight-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.1;
}

.news-highlight-container .highlight-subtitle {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.3;
  color: #ffffffcd;
  font-weight: 300;
}

/*////////////// Por qué elegirnos //////////////*/
/* .why-us {
  padding: 3rem 0;
}

.why-us-card img {
  height: 37px;
  width: auto;
  margin-bottom: 0.8rem;
} */

/*////////////// Contadores //////////////*/
/* .counter-block {
  padding: 4rem 0;
  background-image: url(../images/bg-contadores.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}

.counter-block-item {
  border-bottom: 1px solid #ffffff77;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}

.counter-detail {
  color: white;
  font-size: 28px;
  margin-bottom: 0;
  line-height: 1.1;
  font-weight: 500;
}

.counter-number {
  font-size: 40px;
}

.video-container {
  position: relative;
}

.video-container img {
  width: 100%;
}

.video-btn {
  display: flex;
  align-items: center;
  color: white !important;
  font-size: 18px;
  font-weight: 300;
  position: absolute;
  right: 5%;
  bottom: 0;
}

.video-btn img {
  width: 36px;
  margin-right: 0.4rem;
  transition: 0.3s;
}

.video-btn:hover img {
  transform: rotate(45deg);
} */

/*///////////////// Mapa /////////////////*/
/* .map {
  padding: 4rem 0;
  background: url(../images/bg-map.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

/*/////////////////  FOOTER /////////////////*/
footer {
  background-color: #1a1a1a;
  padding: 4rem 0 6rem 0;
  position: relative;
  color: #ffffff;
  margin: 1rem;
  border-radius: 20px;
}

.border-bottom {
  border-color: #ffffff53 !important;
}

.footer-logo {
  width: 100%;
  max-width: 255px;
}

footer h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

footer ul {
  padding-left: 0px;
  list-style: none;
}

footer ul li {
  margin: 0 0 0.6rem 0;
}

footer ul li img,
footer p img {
  margin-right: 0.4rem;
}

footer ul li a,
footer p {
  color: #ffffff96;
  transition: 0.3s;
}

footer a:hover,
footer a.active {
  color: #fff;
}

.social-media-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-media-links a {
  transition: 0.3s;
}

.social-media-links a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-media-links a:hover {
  transform: scale(1.2) !important;
}

.copyright {
  background: transparent;
  color: #bfbfbf;
  font-size: 15px;
  font-weight: 300;
  padding: 0.8rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/*/////////////////  CONTACTO /////////////////*/
.contact-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  text-align: center;
}

.contact-card-divider {
  width: 100%;
  height: 1px;
  background-color: #ffffffd2;
  margin: 2rem 0;
}

.contact-card a {
  transition: 0.3s;
}

.contact-card a:hover {
  color: var(--primary);
}

.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

form {
  position: relative;
}

.loading {
  display: none;
}

/*////////////////////////////////////////////////////////////////////
 /////////////////////////// EMPRESA  /////////////////////////////*/
.title-section {
  min-height: 310px;
  padding: 3rem 0;
  display: flex;
  background-color: #111111;
  align-items: center;
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  margin: 1rem;
  margin-top: 180px;
}

.title-section a {
  color: rgba(255, 255, 255, 0.871);
}

.text-block {
  padding: 4rem 0;
}

.text-block-deco-container {
  position: relative;
  height: 510px;
}

.text-block-deco-container img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
}

.counter-container {
  background-color: #1a1a1a;
  border-radius: 25px;
  padding: 1rem;
}

.counter-container-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.2;
  color: white;
  justify-content: center;
}

.counter-container-block img {
  height: 60px;
  width: auto;
}

/* Linea de tiempo */
.timeline {
  padding: 6rem 0;
  background-color: #1a1a1a;
  border-radius: 25px;
  margin: 1rem;
  position: relative;
  overflow: hidden;
}

/* Swipper */
.time-line-container {
  color: rgba(255, 255, 255, 0.8);
  padding: 1.2rem;
  background-color: #343434;
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0 1rem;
  text-align: left;
  transition: 0.3s;
}

.time-line-container:hover {
  background-color: #212121;
}

.time-line-year {
  position: absolute;
  top: -6rem;
  line-height: 1;
  color: #ffffff;
  text-align: left;
  opacity: 1;
  transition: 0.3s;
}

.time-line-dot {
  width: 23px;
  height: 23px;
  background-color: #ffffff;
  transition: 0.3s;
  border: 5px solid rgba(77, 77, 77, 0.485);
  border-radius: 50%;
  position: absolute;
  top: -2.9rem;
  z-index: 10;
}

.time-line-container:hover .time-line-dot {
  background-color: var(--secondary);
  border: 5px solid #ffffff;
}

.gallerySlider {
  margin-top: 7rem;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.gallerySlider__swiper {
  overflow: visible;
}

.gallerySlider__slider {
  position: relative;
  max-width: 25%;
}

.gallerySlider__nav {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gallerySlider__navProgress {
  height: 5px;
  position: relative;
  flex: 1;
  background-color: rgba(77, 77, 77, 0.485);
}

.gallerySlider .swiper-pagination-progressbar-fill {
  background: #0577b5;
  background: linear-gradient(
    92deg,
    rgba(5, 119, 181, 1) 0%,
    rgba(10, 141, 65, 1) 100%
  );
}

.gallerySlider__navProgress::before {
  background-color: rgba(77, 77, 77, 0.485);
}

/* Fin swipper */

.swipe-icon {
  width: 55px;
  position: absolute;
  bottom: 2rem;
  left: auto;
  right: 4rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
}

.slide-left {
  -webkit-animation: slide-left 0.6s 1s infinite alternate both;
  animation: slide-left 0.6s 1s infinite alternate both;
}

/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

#sportsCarousel .f-carousel__slide {
  width: 100%;
  padding: 0.5rem;
}

#sportsCarousel .f-carousel__slide img {
  width: 100%;
  height: 570px;
  border-radius: 25px;
}

#sportsCarousel .f-carousel__dots {
  position: absolute;
  bottom: 2rem;
}

#sportsCarousel .f-carousel__dot {
  width: 12px;
  height: 12px;
  background-color: white;
}

#sportsCarousel .f-carousel__dots li.is-current .f-carousel__dot {
  width: 22px;
  height: 22px;
}

/*////////////////////////////////////////////////////////////////////
 /////////////////////////// NOVEDADES  /////////////////////////////*/
.min-500 {
  min-height: 500px;
}

.btn-group {
  flex-wrap: wrap;
  justify-content: center;
}

.btn-group .btn {
  background-color: #1a1a1a;
  color: rgba(136, 136, 136, 0.744);
  border: 1px solid #1a1a1a;
  margin: 0.4rem 0.6rem !important;
  border-radius: 35px !important;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 300;
  width: fit-content;
  flex: none;
}

.btn-group .btn::after {
  content: none;
}

.btn-group .btn.active {
  background-color: #2f2f2f;
  border-color: #2f2f2f;
  color: white;
  text-transform: uppercase;
}

.btn-group .btn.focus {
  box-shadow: none;
}

.btn-group .btn:hover,
.btn-group .btn:focus,
.btn-group .btn:active {
  box-shadow: none;
  transform: none;
  background-color: #2f2f2f;
  border-color: #2f2f2f;
  color: white;
}

.new-container-internal {
  transition: 0.3s;
}

.new-container-internal img {
  height: 280px;
}

.new-container-internal .new-text {
  transform: translateY(50px);
  margin-top: -60px;
  transition: 0.3s;
}

.new-container-internal:hover {
  box-shadow: 0px -1px 36px -12px rgb(0 0 0 / 50%);
  -webkit-box-shadow: 0px -1px 36px -12px rgb(0 0 0 / 50%);
}

.new-container-internal:hover .new-text {
  transform: translateY(0px);
}

/* Paginador */
.pagination .page-item {
  margin: 0 0.4rem;
}

.pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.pagination .page-link {
  color: #949494;
  background-color: #000;
  border: 1px solid #949494;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s;
}

.pagination .page-item:not(.disabled):hover .page-link {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
}

.pagination .page-item.disabled .page-link {
  background-color: rgb(108 117 125 / 8%);
  border-color: #ffffff1a;
  color: #ffffff54;
}

/*///////////////// PRODUCTOS /////////////////*/
.products-section-carousel {
  padding: 4rem 0;
  position: relative;
  margin-top: -55px;
}

.products-section-carousel::before {
  content: "";
  width: 100%;
  max-width: 1140px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fc231d;
  border-radius: 35px 35px 0 0;
  margin: auto;
}

.products-section-carousel .f-carousel__slide {
  padding: 1rem;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-section-carousel .f-carousel__slide a {
  width: 100%;
}

.products-section-carousel .f-carousel__slide .product-container {
  width: 270px;
}

.products-section-carousel .f-carousel__nav {
  justify-content: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: row-reverse;
}

.products-section-carousel .f-carousel__nav button {
  position: relative !important;
  color: #fff !important;
  width: 60px;
  transform: none !important;
}

.search-product .form-control {
  background-color: #ebecf1;
  color: #fc231c;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  border: 0;
  padding: 0 1.2rem;
  height: calc(2rem + 0.75rem + 15px);
}

.search-product button {
  border: 0;
  outline: 0;
  color: #fc231d;
  height: 100%;
  width: 50px;
  border-radius: 0 50px 50px 0;
  font-size: 20px;
  background-color: #ebecf1;
}

.search-product select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/arrow-down.svg) 95% / 5% no-repeat;
}

.search-product .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fc231c;
}

.search-product .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #fc231c;
}

.search-product .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #fc231c;
}

.search-product .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #fc231c;
}

.highlights-products {
  padding: 4rem 0;
  background: url(../images/deco-center.svg),
    url(../images/rrhh-line-deco-left.svg) #f7f8fb;
  background-position: center left, top right;
  background-position-x: 5%, 90%;
  background-repeat: no-repeat;
  background-size: auto;
}

.catalogo-product-container {
  position: relative;
  overflow: hidden;
}

.product-img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-container img {
  width: 100%;
  object-fit: cover;
}

.product-img-container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fc231c;
  opacity: 0;
  transition: 0.3s;
}

.catalogo-product-container:hover .product-img-container::after {
  opacity: 0.7;
}

.product-img-container-plus {
  opacity: 0;
  position: absolute;
  z-index: 5;
  width: 75px !important;
  height: 75px !important;
  display: block;
  transition: 0.3s;
}

.catalogo-product-container:hover .product-img-container-plus {
  opacity: 1;
}

.product-titles-container {
  padding: 1rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-titles-container i {
  color: #fc231d;
  font-size: 18px;
  margin-left: 1rem;
  transform: translateX(-30px);
  transition: 0.3s;
  opacity: 0;
}

.catalogo-product-container:hover .product-titles-container i {
  transform: translateX(0px);
  opacity: 1;
}

/*///////////////// BACK /////////////////*/
.contenido {
  line-height: 1.75;
}

.contenido-main-img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.share-section ul {
  list-style: none;
}

.share-section ul li:not(:last-child) {
  margin: 0 0.8rem 0 0;
}

.share-section ul li a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.share-section ul li a.icono-fb {
  background-color: #3b5998;
}

.share-section ul li a.icono-tw {
  background-color: #1da1f2;
}

.share-section ul li a.icono-wh {
  background-color: #1cd071;
}

.share-section ul li a.icono-em {
  background-color: #fb405a;
}

.contenido p a:not(.btn) {
  color: var(--secondary);
  text-decoration: underline;
}

.contenido p b {
  font-weight: 700;
  color: var(--primary);
}

.contenido p {
  margin-bottom: 1rem;
  font-size: 16px;
  color: #ffffffca;
}

.contenido h1 {
  font-weight: 300;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contenido h2 {
  font-weight: 700;
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.contenido h3 {
  font-weight: 700;
  font-size: 28px;
  color: #a7a7a7;
  border-bottom: 1px solid #292929;
  margin-bottom: 1rem;
}

.contenido h4 {
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contenido h5 {
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
}

.contenido h6 {
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
}

.contenido ul {
  list-style: none;
  font-size: 15px;
}

.contenido ol {
  font-size: 15px;
}

.contenido ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary);
  display: block;
  position: absolute;
  margin-top: 10px;
  left: 1rem;
}
.contenido ul li a{
  color: #ffffffac !important;
}
.contenido ul li a:hover, .contenido ul li a:focus{
  color: var(--secondary) !important;
}

.contenido blockquote {
  color: #ffffffe8;
  padding: 2rem 2rem 2rem 10rem;
  margin: 1.5rem 0;
  border-radius: 20px;
  font-weight: 600;
  background: url(/frontend/images/at-bg-blockquote.png) 5% 50% no-repeat
    #1a1a1a;
}

.contenido blockquote p {
  margin-bottom: 0;
}

.contenido p img {
  display: block;
  height: auto !important;
  max-width: 100%;
}

.contenido dl,
ol,
ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.contenido .media {
  padding-bottom: 1.5rem;
}

.fresco img {
  border-radius: 15px;
}

form .btn {
  margin: auto;
}

.form-control {
  border-radius: 8px;
  font-size: 16px;
  color: #ffffff98 !important;
  height: 2.8rem;
  background-color: #1a1a1a;
  border: 1px solid #ffffff20;
}

.form-control:focus {
  background-color: #1a1a1a;
  border: 1px solid #ffffff98;
  box-shadow: none;
  color: #ffffff98 !important;
}

.form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
}

.has-error .form-control {
  border-color: #e60808 !important;
  background-color: #1a1a1a;
}

.help-block {
  color: #e60808;
}

.alert {
  color: white;
}

.alert-dismissible .close {
  padding: 0.4rem 0.8rem;
  top: 0;
  bottom: 0;
}

.close:hover {
  opacity: 1;
  color: currentColor;
}

.alert-dismissible .close span {
  font-weight: 300;
}

.alert-success {
  background-color: #0a8d41cd;
  border-color: #0a8d418a;
}

.alert-info {
  background-color: #0577b5cd;
  border-color: #0577b58a;
}

.alert-danger {
  background-color: #e60808cd;
  border-color: #e608088a;
}

.alert-warning {
  background-color: #ffc62acd;
  border-color: #ffc62a8a;
}
.alert-warning-dark {
  background-color: #291f06;
  border-color: #654e10;
  color: #c5b17c;
  font-size: 15px;
}

/*////////////////////////////////////////////////////////////////////
 /////////////////////////// SUSTENTABILIDAD  -INTERNA- /////////////////////////////*/
.title-section-sustainability {
  min-height: 450px;
}

.image-container {
  perspective: 1000px;
  position: absolute;
  left: -10rem;
  top: 450px;
  height: 650px;
  z-index: 5;
}

.deco-left {
  transition: all 0.3s;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

.image-container:hover .deco-right {
  filter: drop-shadow(0 0.3rem 0.5rem rgba(16, 16, 16, 0.23));
}

.sustainability-info {
  padding: 4rem 0;
}

.sustainability-info-card {
  padding: 2rem;
  background-color: #1a1a1a;
  border-radius: 25px;
  min-height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.sustainability-info-card img {
  height: 52px;
  width: auto;
  transition: 0.3s;
}

.sustainability-info-card:hover img {
  transform: scale(1.1);
}

.sustainability-carousel {
  background-color: #1f1f1f;
  padding: 5rem 0;
}

/* Carousel */
#sustainabilityCarousel .f-carousel__slide {
  width: 24%;
  padding: 0.5rem;
}

#sustainabilityCarousel .f-carousel__nav {
  display: flex;
  justify-content: center;
  width: 100px;
  position: absolute;
  top: -6rem;
  right: 7%;
  border: 1px solid #0577b5;
  height: 50px;
  border-radius: 8px;
  align-items: center;
}
#sustainabilityCarousel .f-carousel__nav button {
  color: white;
  transition: 0.3s;
}
#sustainabilityCarousel .f-carousel__nav button:hover {
  color: #0577b5;
}

.sustainability-carousel-container {
  min-height: 420px;
  border-radius: 25px;
  overflow: hidden;
  background-color: #000;
  position: relative;
}

.sustainability-carousel-container-text {
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  border-radius: 0 0 25px 25px;
}

.sustainability-carousel-container-overlay {
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  border-radius: 0 0 25px 25px;
}

.sustainability-carousel-container-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  opacity: 0.4;
  border-radius: 25px;
}

.sustainability-carousel-container:hover
  .sustainability-carousel-container-img {
  opacity: 1;
}

.sustainability-product-banner {
  background-image: url(../images/bg-banner-producto-sustentable.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0;
  border-radius: 25px;
  margin: 1rem;
}

.sustainability-advantages {
  padding: 5rem 0;
  position: relative;
}

.bg-sustainability-advantages {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.sustainability-news {
  padding: 4rem 0;
  border-radius: 25px;
  margin: 1rem;
  background-color: #1f1f1f;
}

/*////////////////////////////////////////////////////////////////////
 /////////////////////////// SERVICIO TECNICO  -INTERNA- /////////////////////////////*/
.service-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8rem 0.2rem 1.4rem 0.2rem;
  border-bottom: 1px solid #ffffff1e;
  margin: 0.8rem 0;
}

.service-container-left {
  gap: 0.8rem;
  display: flex;
  align-items: center;
}

.service-container-left img {
  width: 30px;
  height: 32px;
  object-fit: contain;
}

.service-container p {
  transition: 0.3s;
}

.service-container:hover p {
  color: var(--secondary);
}

.service-contact {
  padding: 4rem 0;
  background-color: #1a1a1a;
  border-radius: 25px;
  margin: 1rem;
  position: relative;
  overflow: hidden;
}

.service-contact ul {
  padding-left: 0;
  list-style: none;
  gap: 0.6rem;
  display: flex;
  flex-direction: column;
}

.service-contact ul li img {
  margin-right: 0.4rem;
}

.service-form-container {
  /*background-color: #1a1a1a;
  box-shadow: 0px 0rem 1rem 1px #000000b4 !important;*/
  padding: 1.2rem;
  border-radius: 20px;
}

.faqs {
  padding: 4rem 0;
  background: url(../images/bg-faqs.png);
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
}

.faqs .accordion .card {
  border: 0;
  padding: 1.2rem 0;
  background-color: #0000002a;
  border-bottom: 1px solid #ffffff1e;
}

.faqs .accordion .card-body {
  padding-bottom: 0;
}

.faqs .accordion .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0000002a;
  color: #ffffff;
  border: 0;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  padding: 0.75rem 0rem;
}

.faqs .accordion .card-body {
  padding: 1.25rem 0;
}

.faqs .accordion .card-header.collapsed {
  border: 0;
}

.faqs .accordion .card-header.card-header.collapsed::after {
  content: "\f077";
  font-family: "FontAwesome";
  color: var(--primary);
  font-size: 16px;
  transition: all 0.3s;
  transform: rotate(180deg);
}

.faqs .accordion .card-header.card-header::after {
  content: "\f077";
  font-family: "FontAwesome";
  transition: all 0.3s;
  font-size: 16px;
  color: var(--primary);
}

.faqs .accordion .card-header p {
  margin-bottom: 0;
  text-align: left;
  padding-right: 1rem;
}

.faqs .accordion .card-body p {
  margin-bottom: 0;
}

/*////////////////////////////////////////////////////////////////////
 /////////////////////////// PRODCUTOS -INTERNA- /////////////////////////////*/
.breadcrumb {
  background-color: transparent;
  padding: 0 !important;
  margin: 1rem 0 0 0;
  border: 0;
  padding-bottom: 0.8rem;
  font-size: 15px;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: var(--primary);
  content: "\f054";
  font-family: "FontAwesome";
  line-height: 1.9;
  font-size: 12px;
  font-weight: 300;
}

.breadcrumb a {
  color: #ffffffe4;
  transition: 0.3s;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  text-decoration: none;
  color: #0577b5 !important;
}

.breadcrumb-item.active,
.breadcrumb-item.active:last-child a {
  color: #0577b5 !important;
}

.breadcrumb-item.active:last-child {
  font-weight: 700 !important;
}

/* Categorias */
.category-list-container ul {
  list-style: none;
}

.category-nav {
  gap: 0.8rem;
}

.category-filter-title span {
  margin-right: 6px;
}

.category-list-container .subnav,
.category-list-container .category-nav {
  width: 100%;
}

.category-nav a label {
  cursor: pointer;
  transition: 0.3s;
}

.subnav.active svg {
  transform: rotate(180deg);
}

.category-nav > .nav-item {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 0.8rem 1rem;
}

.category-title-container {
  display: flex;
  align-items: start;
}

.category-icon {
  width: 20px;
  margin-right: 0.4rem;
  margin-top: 0.6rem;
}

.category-title {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  line-height: 1.3;
}

.category-list-container ul.subcategory-nav {
  padding-left: 1.2rem !important;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.category-list-container ul.subcategory-nav .category-icon {
  display: none;
}

.category-list-container ul.subcategory-nav li {
  padding: 0 !important;
  transition: 0.3s;
}

.category-list-container ul.subcategory-nav li a {
  padding: 0.1rem 0.4rem !important;
  transition: 0.3s;
  border-radius: 8px;
}

.category-list-container ul.subcategory-nav li a:hover {
  background-color: #0577b5d6;
}

.category-list-container ul.subcategory-nav .active {
  background-color: #0577b5d6;
  border-radius: 8px;
}

.category-list-container ul.subcategory-nav label {
  font-weight: 300;
  color: #ffffffcf;
  font-size: 15px;
}

.category-list-container ul.subcategory-nav svg {
  display: none;
}

/* Fin categorias */

/* Filtros */
.filter-options{
  display: flex;
  flex-wrap: wrap;
    gap: 8px;
}
.filter-container {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 1rem;
}

.filter-container-items {
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  display: flex;
}

.filter-title {
  background-color: #0a8d4137;
  border-radius: 15px;
  font-size: 14px;
  
  padding: 0.3rem 0.6rem;
  color: #ffffffa8;
  transition: 0.3s;
}

.filter-title:hover {
  background-color: #0a8d41ba;
}

.filter-title.selected {
  background-color: #0a8d41;
  border-radius: 15px;
  padding: 0.3rem 0.6rem;
  display: inline-flex;
  margin: 0;
  color: #fff;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #0a8d41;
  transition: 0.3s;
}

.filter-title.selected:hover,
.filter-title.selected:focus {
  background-color: #0a8d41ba;
}

.filter-title.selected svg path {
  stroke: #ffffffa8;
}

/* Fin filtros */

.detail-product-title {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 0.8rem;
}


.product-detail-section ul li::marker {
  color: #fc231d;
}

.product-detail-about {
  background-image: url(../images/bg-prodcut-detail.jpg);
  padding: 1rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.product-detail-about-icon {
  text-align: center;
  line-height: 1.2;
}

.product-detail-about-icon img {
  height: 60px;
  display: block;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.about-tooltip:before {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  top: -14%;
  transition: all 0.1s;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #fc231d transparent transparent transparent;
}

.about-tooltip:after {
  content: attr(data-tooltip);
  font-size: 14px;
  border-radius: 15px;
  position: absolute;
  color: #fff;
  background: #fc231d;
  padding: 1rem;
  width: max-content;
  max-width: 200px;
  opacity: 0;
  pointer-events: none;
  left: 50%;
  top: 0;
  transform: translate3d(-50%, 0%, 0);
  transition: all 0.3s ease;
}

.about-tooltip:hover:before,
.about-tooltip:hover:after {
  opacity: 1;
}

.about-tooltip:hover:after {
  transform: translate3d(-50%, calc(-100% - 16px), 0);
}

.share-section-products a {
  background-color: #f4f4f4 !important;
  color: #b0b0b0 !important;
  transition: 0.3s;
}

.share-section-products a:hover {
  background-color: #e1e0e0 !important;
  color: #727272 !important;
}

/*/////////////////  RESPONSIVE /////////////////*/

@media (max-width: 1600px) {
  .products-carousel-section {
    background-position: -150% 100%;
  }
  .image-container {
    top: 500px;
    height: 450px;
  }
}

@media (max-width: 1440px) {
  .products-carousel-section {
    background-position: bottom left;
  }
  .image-container {
    top: 500px;
    height: 400px;
  }
}

@media (max-width: 1439px) {
  .hide-deco {
    display: none;
  }

  .full-w-info {
    max-width: 100% !important;
    width: 100%;
    flex: initial;
    padding-right: 15px !important;
  }
}

@media (max-width: 1360px) {
  .nav-link {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .logos-carousel .f-carousel__slide {
    width: 20%;
  }
}

@media (max-width: 1240px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-brand {
    width: 210px;
    height: 113px;
  }

  .video-btn {
    right: 1.6rem;
  }

  .sticked.in .nav-item.dropdown > .navbar-nav {
    left: -270px;
  }

  .title-section {
    margin-top: 150px;
  }

  .text-block-deco-container {
    height: 420px;
  }
}

@media (max-width: 1199px) {
  .nav-link {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }

  .nav-link,
  .nav-item .btn-custom {
    font-size: 16px;
  }

  .sticked.in .nav-item.dropdown > .navbar-nav {
    left: -360px;
  }
}

@media (max-width: 1024px) {
  .navbar-brand {
    width: 165px;
    height: 85px;
  }

  .co2-banner {
    background-position: left center;
    background-size: cover;
  }

  .products-carousel-section {
    background-position: 25% 100%;
  }

  .title-section {
    margin-top: 125px;
  }

  .counter-container-block {
    gap: 0.4rem;
  }

  .image-container {
    top: 450px;
    height: 350px;
  }
  #sustainabilityCarousel .f-carousel__slide {
    width: 35%;
  }
  .faqs
 {
    background: url(../images/bg-faqs-sm.png);
}
}

@media (max-width: 768px) {
  .center-logo {
    display: none;
  }

  .left-logo {
    display: block;
  }

  .custom-nav {
    align-items: flex-start;
  }

  .nav-link {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
    margin-bottom: 1rem;
  }

  .bsnav-mobile .navbar-nav {
    padding: 0 15px;
  }

  .float-nav-list {
    padding-left: 2rem;
    margin-bottom: 1rem;
  }

  .float-nav-list a {
    font-size: 15px;
    color: #ffffff;
    font-weight: 300;
  }

  .float-nav-list li:hover::before {
    content: none;
  }

  .counter-number {
    font-size: 32px;
  }

  .counter-detail {
    font-size: 22px;
  }

  .after-sales-container {
    height: 420px;
  }

  .video-btn {
    bottom: 1rem;
  }

  .logos-carousel .f-carousel__slide {
    width: 33.33%;
  }

  .gallerySlider__slider {
    position: relative;
    flex: 0 0 65%;
    max-width: 65%;
  }

  #sportsCarousel .f-carousel__slide img {
    height: 480px;
  }

  .counter-container-block {
    display: flex;
    align-items: start;
  }

  #sustainabilityCarousel .f-carousel__slide {
    width: 45%;
  }
  .bg-sustainability-advantages {
    height: 300px;
  }
  .sustainability-advantages {
    padding: 5rem 0 12rem 0;
    position: relative;
}
}

@media (max-width: 525px) {
  .mobile-center {
    text-align: center;
  }

  .h1 {
    font-size: 1.8rem;
  }

  .h2 {
    font-size: 1.6rem;
  }

  .navbar-brand {
    width: 160px;
    height: 90px;
  }

  #productsCarousel .f-carousel__nav {
    position: relative;
    justify-content: center;
    bottom: 0;
  }

  .after-sales-container {
    height: 320px;
  }

  .logos-carousel .f-carousel__slide {
    width: 50%;
  }

  .title-section {
    min-height: 160px;
    background-position: -430px 0px;
  }

  .image-container {
    display: none;
  }


  .breadcrumb .h2 {
    font-size: 1.8rem;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    line-height: 2;
  }

  .contenido blockquote {
    padding: 2rem 2rem 4rem 2rem;
    background: url(/frontend/images/at-bg-blockquote.png) 95% 95% no-repeat
      #1a1a1a;
  }

  .timeline {
    padding: 4rem 0 8rem 0;
  }

  .text-block-deco-container {
    height: 300px;
  }

  .counter-container-block {
    margin: 0.5rem 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

    .title-section-sustainability {
    min-height: 320px;
  }

  #sustainabilityCarousel .f-carousel__slide {
        width: 90%;
    }

  #sustainabilityCarousel .f-carousel__nav {
position: relative;
        left: 0;
        right: 0;
        margin: auto;
        bottom: -2rem;
        top: auto;
}
}

@media (max-width: 375px) {
}

@media (max-width: 320px) {
}
.modal-content{background-color: #181818;}
#modal-timer {
  background: #00000096;
}

#modal-timer .close {
  position: absolute;
  top: -5px;
  right: -10px;
  z-index: 99999;
  color: #fff;
  background: #fc231d;
  float: right;
  border: 1px solid #fc231d;
  border-radius: 50%;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  padding: 0px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
}

#modal-timer .modal-dialog {
  margin-top: 4.5rem;
}

#modal-timer .modal-content {
  background: none;
  border: none;
  z-index: 50;
  max-width: 900px;
  margin: 0 auto;
}

.max-w-100 {
  max-width: 100px;
}

/******** BUSCADOR TT ***/
.input-group-search .form-control {
  border-radius: 35px;
  height: 54px;
}

.btn-search {
  border: 0;
  color: white;
  background-color: var(--primary);
  border-radius: 35px;
  font-size: 24px;
  padding: 0.2rem 1.4rem;
  line-height: 0.8;
}

.twitter-typeahead {
  width: 100%;
}

.input-group-append {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 100%;
  padding: 0.2rem;
}

.tt-menu {
  width: 100%;
  top: 62px !important;
  left: 0 !important;
  background: #1a1a1a;
  padding: 0.8rem;
  color: #fff;
  font-size: 15px;
  border-radius: 15px;
  box-shadow: 0px 0rem 1rem 1px #0577b56e !important;
}

.empty-message {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
}

.tt-suggestion {
  padding: 0.2rem 0.4rem;
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  border-radius: 0px;
  transition: 0.3s;
  border-bottom: 1px solid #000000a6;
}

.tt-suggestion:last-child {
  border-bottom: 1px solid #00000000;
}

.tt-suggestion:hover:last-child {
  border-bottom: 1px solid #00000000;
}

.tt-suggestion:hover {
  text-decoration: none;
  background-color: #000000;
  transition: all ease 0.5s;
  color: #fff;
  border-bottom: 1px solid #ebecf100;
  border-radius: 8px;
}

.tt-highlight {
  border-bottom: 2px solid var(--secondary);
}

.tt-category {
  color: var(--secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
}
