/*!**********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./blocks/hero/hero.scss ***!
  \**********************************************************************************************************************************************************/
/*
  Custom Colors
 */
.block-hero {
  height: 100vh;
  position: relative;
  text-align: center;
}
.block-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-hero__content {
  position: absolute;
  width: 100%;
  bottom: 80px;
}
.block-hero__title {
  font: 300 38px/1 "Merruweather-Light", serif;
  margin-bottom: 20px;
}
.block-hero__paragraph {
  max-width: 340px;
  margin: 0 auto 40px;
}
.block-hero__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.block-hero__buttons .btn {
  width: 100%;
}
.block-hero__bottom {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (min-width: 1024px) {
  .block-hero__content {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 100px;
  }
  .block-hero__title {
    font-size: 55px;
  }
  .block-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  .block-hero__buttons .btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}
