/*!*******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/scss/sections/hero-flex.scss ***!
  \*******************************************************************************************************************************************************/

/*** LTR websites ***/

body .heroFlex {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

body .heroFlex br {
  display: none;
}

body .heroFlex_white {
  color: #000000;
  background-color: #fff;
}

body .heroFlex_white .heroFlex_subDescription {
  color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 992px) {
  body .heroFlex_rotate {
    transform: translate(-50%, -50%) rotate(90deg);
    width: calc(100% + 80px);
  }
}

body .heroFlex-video-desktop {
  display: none;
}

body .heroFlex-video-mobile {
  position: static;
  transform: unset;
}

body .heroFlex_video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at center, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4) 60%, transparent);
}

@media (max-width: 992px) {
  body .heroFlex_wrapper-mobile {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

body .heroFlex .wrapper {
  position: relative;
  z-index: 1;
}

body .heroFlex_topTitle {
  display: block;
}

body .heroFlex_title {
  margin-bottom: 16px;
}

body .heroFlex_description {
  margin-bottom: 10px;
}

body .heroFlex_subDescription {
  margin-bottom: 24px;
}

body .heroFlex_link {
  font-family: "Anton", sans-serif;
  background: linear-gradient(90deg, #78b52e 0%, #528f07 100%);
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 160px;
  padding: 8px 40px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.15);
  margin: 0 auto;
}

body .heroFlex_link:hover {
  padding: 4px 36px;
}

body .heroFlex_link:hover {
  border: 4px solid #fff;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.35);
}

body .heroFlex_link-margin {
  margin-bottom: 10px;
}

body .heroFlex_btn {
  padding: 0;
  animation: 1.5s scroll_down infinite ease-in-out;
}

@keyframes scroll_down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.7;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}