/*!*****************************************************************************************************************************************************************!*\
  !*** 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: "Roboto Flex", sans-serif;
  --theme-second-font: "Roboto Flex", sans-serif;
}

.hero {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
}
.hero_bg_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hero .container {
  position: relative;
}
.hero__content > h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: white;
}
.hero__content > p {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: white;
}
.hero__btn {
  margin-top: 60px;
}
.hero__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 44px;
}
.hero__advantage {
  max-width: 247px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.hero__advantage .quantity {
  font-weight: 800;
  font-size: 54px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: white;
}
.hero__advantage .text {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: white;
}

@media (max-width: 1024px) {
  .hero__content > h1 {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .hero__btn {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .hero__advantages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__advantage .quantity {
    font-size: 46px;
  }
}
