.info-blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-blocks .blocks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.info-blocks .blocks .info-block {
  position: relative;
  width: 100%;
  aspect-ratio: 12/6;
  overflow: hidden;
}
.info-blocks .blocks .info-block a {
  display: block;
  width: 100%;
  height: 100%;
}
.info-blocks .blocks .info-block .bgimage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.info-blocks .blocks .info-block .bgimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.info-blocks .blocks .info-block .bgimage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 150% 150% at bottom left, #9a302f 0%, rgba(154, 48, 47, 0.9) 18%, rgba(154, 48, 47, 0.55) 50%, rgba(154, 48, 47, 0.12) 75%, transparent 90%);
}
.info-blocks .blocks .info-block .titles {
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1rem;
}
.info-blocks .blocks .info-block .titles h3, .info-blocks .blocks .info-block .titles h4 {
  margin: 0;
  padding: 0;
  padding-right: 1rem;
}
.info-blocks .blocks .info-block .titles h3 {
  color: #D8A544;
}
.info-blocks .blocks .info-block .titles h4 {
  color: #ECC879;
}
.info-blocks .blocks .info-block:hover .titles {
  margin-left: 1.2rem;
  transition: all 0.5s ease;
}
.info-blocks .blocks .info-block:hover .bgimage img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.info-blocks .blocks .info-block:hover h3 {
  color: #EEC370 !important;
  transition: all 0.5s ease;
}
.info-blocks .blocks .info-block:hover h4 {
  color: #fefcf8 !important;
  transition: all 0.5s ease;
}

@media screen and (min-width: 1024px) {
  .info-blocks {
    max-width: min(1140px, 100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .info-blocks .blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .info-blocks .blocks .info-block {
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .info-blocks {
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .info-blocks .blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: calc(100% - 2rem);
  }
  .info-blocks .blocks .info-block {
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .info-blocks {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .info-blocks .blocks {
    width: min(480px, 100% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;
  }
  .info-blocks .blocks .info-block {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .info-blocks {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .info-blocks .blocks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: calc(100% - 2rem);
  }
}

/*# sourceMappingURL=block.css.map */
