* {
  margin: 0;
  padding: 0;
}

/* FONTS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Antonio', sans-serif;
}

label, .page-item .page-link, li {
  font-family: 'Antonio', sans-serif;
}

p,
span {
  font-family: 'Roboto Condensed', sans-serif;
}

/* COLOR */
.blue {
  color: #0a7bab;
}

.red {
  color: #eb1b33;
}

.black {
  color: #202123;
}

.yellow {
  color: #f6b024;
}

.bg-black {
  background-color: #202123 !important;
}

.bg-darkblack {
  background-color: black;
}

.bg-red {
  background-color: #eb1b33 !important;
}

/* NAVBAR & FOOTER */
.header-overlay {
  /* bottom: 0%; */
  z-index: 1000;

  font-family: 'Antonio', sans-serif;
}

.nav-link,
.nav-link-sticky, .nav-link-offcanvas {
  color: #1f2835;
  font-size: 20px;
}

.nav-link-sticky, .nav-link-offcanvas {
  font-family: 'Antonio', sans-serif;
  text-decoration: none;
}


.nav-link.active,
.nav-link:hover,
.nav-link-sticky.active,
.nav-link-sticky:hover,
.nav-link-offcanvas.active,
.nav-link-offcanvas:hover {
  color: #eb1b33 !important;
  text-decoration: underline;
  text-underline-position: under;
}

/* BUTTONS */
.btn-primary {
  background-color: #eb1b33 !important;
  font-family: 'Antonio', sans-serif !important;
  border: none !important;
  border-radius: 0%;
}

.btn-primary:hover {
  background-color: #bd0c20 !important;
  color: #fff !important;
}

.btn-outline-primary {
  border-color: #bd0c20 !important;
  color: #fff !important;
  /* background-color: #245b3b !important; */
  font-family: 'Antonio', sans-serif !important;
  border-radius: 0%;
  border-width: 2px;
}

.btn-outline-primary:hover {
  background-color: #bd0c20 !important;
  font-weight: bold;
}

.btn-outline-primary-2 {
  border-color: #bd0c20 !important;
  color: #202123 !important;
  /* background-color: #245b3b !important; */
  font-family: 'Antonio', sans-serif !important;
  border-radius: 0%;
  border-width: 2px;
}

.btn-outline-primary-2:hover {
  background-color: #bd0c20 !important;
  color: #fff !important;
}

/* SLIDER */

.slider {
  background: white;
  height: 167px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 167px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slides {
  height: 167px;
  width: 250px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}


.fa-solid.fa-chevron-right {
  font-size: 10px;
}

/*  */

.product-container {
  position: relative;
  overflow: hidden;
}

.product-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.product-container:hover .product-info {
  opacity: 1;
}

.product-info span {
  margin-bottom: 10px;
}

.product-info a {
  color: #fff;
  text-decoration: none;
}