/*!*****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/blocks/hero.scss ***!
  \*****************************************************************************************************************************************************************/
:root {
  --theme-main-font: "Muller", sans-serif;
  --theme-second-font: "Muller", sans-serif;
}

.hero {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .container {
  position: relative;
}
.hero__content--wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__content > h1 {
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__content > p {
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
}
.hero__btn {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
.hero__btn > p {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}
.hero__img {
  max-width: 386px;
  max-height: 654px;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .hero__content > h1 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero__content > p {
    font-size: 16px;
    max-width: 210px;
    width: 100%;
  }
  .hero__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero__content--wrapper {
    padding-bottom: 156px;
  }
  .hero__btn {
    position: absolute;
    bottom: 0;
  }
  .hero__btn > p {
    text-align: center;
  }
  .hero__img {
    max-width: 147px;
    max-height: 249px;
    width: 100%;
    height: 100%;
  }
}
