body{
  font-family: 'Jost', sans-serif;
}

.icon-list li::before {
  display: block;
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  margin-right: .5rem;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E") no-repeat center center / 100% auto;
}




/* NAVBAR 
-------------------------------------------------- */
img.logo-nav {
  height: 70px;
  width: auto;
}

/* CAROUSEL PRINCIPAL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
  margin-bottom: 0rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 35rem;
}


/* CAROUSEL DE IMAGENES 
--------------------------------------------------- */
.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #ccc;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* BOTONES NEXT, PREV */
.button-prev, .button-next {
  position: absolute;
  font-size: 45px;
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-prev {
  left: 3%;
  right: auto;
}

.button-next {
  right: 3%;
  left: auto;
}


/* CAROUSEL PRODUCTOS */
.carousel-indicators [data-bs-target] {
  background-color: #7C2B28;
}


/* CONTACTO
----------------------------------------------- */

.fa-brands, .fab {
  font-weight: 400;
  font-size: 21px;
}

/* UBICACIÓN
----------------------------------------------- */
#map { 
  height:  25rem;
}

/* FOOTER
----------------------------------------------- */
.igwan-logo {
  width: 80px;
  height: auto;
}


/* BOTÓN BACK TO TOP
----------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  border-radius: 100%;
  background: #7C2B28;
  padding: 0.5rem;
  padding-top: 0.8rem;
  border: none;
  cursor: pointer;
  opacity: 50%;
  width: 50px;
  height: 50px;
  transition: opacity 0.5s;
  z-index: 9000;
}

.back-to-top:hover {
  opacity: 90%;
}

.hidden {
  opacity: 0%;
}


.anchor {
  scroll-margin-top: 90px;
}




/* ENVIANDO GIF
----------------------------------------------- */

.loader {
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
  color: #7C2B28;
  animation: fill 1s ease-in infinite alternate;
  left: 50%;
}
.loader::before , .loader::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  left: 48px;
  top: 0;
  animation: fill 0.9s ease-in infinite alternate;
}

.loader::after {
  left: auto;
  right: 48px;
  animation-duration: 1.1s;
}

@keyframes fill {
 0% {  box-shadow: 0 0 0 2px inset }
 100%{ box-shadow: 0 0 0 10px inset }
}
  