@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*$red: #ff0000;*/
/*$red: hsl(0 100% 50%);*/
*, html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.IndicaPage {
  background: hsl(var(--indica-bg));
  font-family: "Open Sans", serif;
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 64px;
  min-height: 100vh;
}
.IndicaPage__loading {
  position: fixed;
  inset: 0;
  z-index: 2147483699;
  background-color: hsl(var(--indica-bg));
  color: hsl(var(--indica-primary-clr));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transition: background-color 0.25s, color 0.25s;
  /* Animations */
}
.IndicaPage__loading__truck {
  display: block;
  width: 240px;
  height: auto;
}
.IndicaPage__loading__truck__body, .IndicaPage__loading__truck__line, .IndicaPage__loading__truck__outside1, .IndicaPage__loading__truck__outside2, .IndicaPage__loading__truck__outside3, .IndicaPage__loading__truck__wheel, .IndicaPage__loading__truck__wheel-spin, .IndicaPage__loading__truck__window1, .IndicaPage__loading__truck__window2 {
  animation: indica-ani-truck-body 2.5s linear infinite;
}
.IndicaPage__loading__truck__body {
  transform-origin: 17px 11px;
}
.IndicaPage__loading__truck__line {
  animation-name: indica-ani-truck-line;
}
.IndicaPage__loading__truck__outside1 {
  animation-name: indica-ani-truck-outside1;
}
.IndicaPage__loading__truck__outside2 {
  animation-name: indica-ani-truck-outside2;
}
.IndicaPage__loading__truck__outside3 {
  animation-name: indica-ani-truck-outside3;
}
.IndicaPage__loading__truck__wheel {
  animation-name: indica-ani-truck-wheel;
}
.IndicaPage__loading__truck__wheel-spin {
  animation-name: indica-ani-truck-wheel-spin;
  transform-origin: 6.5px 17px;
}
.IndicaPage__loading__truck__wheel:nth-child(2) {
  animation-delay: 0.15625s;
}
.IndicaPage__loading__truck__wheel:nth-child(2) .IndicaPage__loading__truck__wheel-spin {
  transform-origin: 27px 17px;
}
.IndicaPage__loading__truck__window1 {
  animation-name: indica-ani-truck-window1;
}
.IndicaPage__loading__truck__window2 {
  animation-name: indica-ani-truck-window2;
}
@keyframes indica-ani-truck-body {
  from, 12.5%, 25%, 37.5%, 50%, 62.5%, 75%, 87.5%, to {
    animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
    transform: translate(0, 0) rotate(0);
  }
  6.25%, 18.75%, 31.25%, 43.75%, 56.25%, 68.75%, 81.25%, 93.75% {
    animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1);
    transform: translate(0, 1px) rotate(-0.75deg);
  }
}
@keyframes indica-ani-truck-line {
  from {
    stroke-dashoffset: -18;
  }
  to {
    stroke-dashoffset: 78;
  }
}
@keyframes indica-ani-truck-outside1 {
  from {
    stroke-dashoffset: 105;
  }
  to {
    stroke-dashoffset: -105;
  }
}
@keyframes indica-ani-truck-outside2 {
  from {
    stroke-dashoffset: 168;
  }
  to {
    stroke-dashoffset: -42;
  }
}
@keyframes indica-ani-truck-outside3 {
  from {
    stroke-dashoffset: 192;
  }
  to {
    stroke-dashoffset: -18;
  }
}
@keyframes indica-ani-truck-wheel {
  from, 12.5%, 25%, 37.5%, 50%, 62.5%, 75%, 87.5%, to {
    animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
    transform: translate(0, 0);
  }
  6.25%, 18.75%, 31.25%, 43.75%, 56.25%, 68.75%, 81.25%, 93.75% {
    animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1);
    transform: translate(0, -1px);
  }
}
@keyframes indica-ani-truck-wheel-spin {
  from {
    stroke-dashoffset: -15.71;
    transform: rotate(0);
  }
  to {
    stroke-dashoffset: 15.71;
    transform: rotate(-4turn);
  }
}
@keyframes indica-ani-truck-window1 {
  from {
    stroke-dashoffset: -21;
  }
  to {
    stroke-dashoffset: 189;
  }
}
@keyframes indica-ani-truck-window2 {
  from {
    stroke-dashoffset: -39;
  }
  to {
    stroke-dashoffset: 171;
  }
}
.IndicaPage__header, .IndicaPage__body {
  padding-inline: 20px;
}
.IndicaPage__header {
  max-width: 992px;
  margin: 0 auto;
}
.IndicaPage__header__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.5;
  color: hsl(0deg, 0%, 0%);
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 728px) {
  .IndicaPage__header__title {
    font-size: 48px;
    margin-bottom: 32px;
  }
}
.IndicaPage__header__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(0deg, 0%, 25%);
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 728px) {
  .IndicaPage__header__lead {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.IndicaPage__header__disclaimer {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
  color: hsl(0deg, 0%, 25%);
  padding: 20px;
  background: hsl(0deg, 0%, 90%);
  border: hsl(0deg, 0%, 50%) 1px dashed;
  text-align: center;
  border-radius: 8px;
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 728px) {
  .IndicaPage__header__disclaimer {
    font-size: 14px;
  }
}
.IndicaPage__header:last-child {
  margin-bottom: 0;
}
.IndicaPage__body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.IndicaPage__body__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px 32px;
  max-width: 100%;
  width: fit-content;
  margin: 0 auto;
  justify-content: flex-start;
}
@media screen and (min-width: 728px) {
  .IndicaPage__body__container {
    gap: 64px 32px;
  }
}
.IndicaPage .product {
  width: 100%;
  min-width: 320px;
  flex: 1;
  position: relative;
  background: hsl(0deg, 0%, 90%);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 728px) {
  .IndicaPage .product {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 375px) {
  .IndicaPage .product {
    min-width: 280px;
  }
}
.IndicaPage .product__label {
  border-radius: 8px 8px 0 0;
  font-size: 20px;
  font-weight: 800;
  color: hsl(0deg, 0%, 25%);
  padding: 8px 16px;
  text-transform: uppercase;
  position: relative;
}
.IndicaPage .product__figure {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0 0 8px 8px;
  margin-bottom: 24px;
  overflow: hidden;
  background: hsl(0deg, 0%, 100%);
}
.IndicaPage .product__figure__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease-in-out;
}
.IndicaPage .product__img_link:hover figure img {
  transform: scale(1.1) rotate(2deg);
}
.IndicaPage .product__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-inline: 20px;
  margin-bottom: 12px;
  color: hsl(0deg, 0%, 0%);
}
@media screen and (min-width: 728px) {
  .IndicaPage .product__title {
    font-size: 24px;
  }
}
.IndicaPage .product__lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-inline: 20px;
  margin-bottom: 24px;
  color: hsl(0deg, 0%, 0%);
}
@media screen and (min-width: 728px) {
  .IndicaPage .product__lead {
    font-size: 16px;
  }
}
.IndicaPage .product__link, .IndicaPage .product__autor {
  font-size: 12px;
  font-weight: 700;
  margin-inline: 20px;
  margin-bottom: 32px;
  color: hsl(0deg, 0%, 0%);
  text-decoration: none;
  display: block;
  width: fit-content;
  max-width: 100%;
}
@media screen and (min-width: 728px) {
  .IndicaPage .product__link, .IndicaPage .product__autor {
    font-size: 14px;
  }
}
.IndicaPage .product__link {
  position: relative;
  transition: color 0.25s ease-in-out;
}
.IndicaPage .product__link::before {
  content: "";
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  background: hsl(var(--indica-primary-clr));
  border-radius: 8px;
}
.IndicaPage .product__link:hover {
  color: hsl(var(--indica-primary-clr));
}
.IndicaPage .product__callToAction {
  background: hsl(var(--indica-primary-clr));
  padding: 16px 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  display: block;
  width: 100%;
  color: hsl(0deg, 0%, 100%);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid hsl(var(--indica-primary-clr));
  transition: all 0.25s ease-in-out;
}
@media screen and (min-width: 728px) {
  .IndicaPage .product__callToAction {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.IndicaPage .product__callToAction:hover {
  background: hsl(0deg, 0%, 100%);
  color: hsl(var(--indica-primary-clr));
}
.IndicaPage .product--indica {
  background: hsla(var(--indica-primary-clr), 10%);
}
.IndicaPage .product:last-child {
  margin-bottom: 0;
}