.hero-block {
  /* padding: 110px 0px 100px 0px; */
/*   padding: clamp(2.813rem, -6.481rem + 11.13vw, 6.875rem); */
/* 	padding: clamp(0rem, -6.25rem + 8.33vw, 3.75rem); */
	padding:20px;
	padding-left:10px;
  position: relative;
}
.hero-block__background {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: flex-end;
	overflow:hidden;
}
.hero-block__background img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.hero-block__background::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("./images/hero_bg_after.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.hero-block__info {
	max-width:700px;
/*   max-width: clamp(34.375rem, 27.5rem + 13.75vw, 44rem); */
  /* max-width: clamp(37.5rem, 30.435rem + 11.3vw, 44rem); */
  position: relative;
  /* padding: clamp(1.875rem, -3.56rem + 8.7vw, 6.875rem) 0px clamp(1.875rem, -3.56rem + 8.7vw, 6.875rem) 0px; */
/*   padding: clamp(0rem, -15.728rem + 18.84vw, 6.875rem) 0px clamp(0rem, -15.728rem + 18.84vw, 6.875rem) 0px; */
	padding: clamp(0rem, -6.25rem + 8.33vw, 3.75rem) 0px clamp(0rem, -6.25rem + 8.33vw, 3.75rem) 0px;
}
.hero-block__info-background {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.hero-block__info-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-block__info-top {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* .hero-block__info-top .underline {
  white-space: nowrap;
  position: relative;
}
.hero-block__info-top .underline::after {
  content: "";
  display: block;
  position: absolute;
  width: clamp(11.25rem, 9.519rem + 7.69vw, 18.75rem);
  height: clamp(1.5rem, 1.284rem + 0.96vw, 2.438rem);
  background-image: url("images/underline.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0px;
  left: 0px;
  transform: translateY(7px);
} */
.hero-block__info-top .colors {
  color: var(--colors-main);
}
.hero-block__info-center {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
	margin-top:10px;
/*   margin-top: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem); */
  max-width: 740px;
}
.hero-block__info-center .advantag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.hero-block__info-center .advantag-image {
  width: clamp(4.375rem, 3.798rem + 2.56vw, 6.875rem);
  height: clamp(4.375rem, 3.798rem + 2.56vw, 6.875rem);
  flex-shrink: 0;
}
.hero-block__info-center .advantag-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-block__info-center .advantag-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-block__info-bottom {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-top: 20px;
}
.hero-block__info-bottom .link_btn {
  display: flex;
  align-items: center;
  position: relative;
  font-size: clamp(0.875rem, 0.788rem + 0.38vw, 1.25rem);
  height: clamp(3.75rem, 3.462rem + 1.28vw, 5rem);
  padding: 0px clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
  padding-right: 70px;
  box-shadow: 7px 8px 19.6px 6px rgba(190, 231, 211, 0.33), 0px 4px 4px rgba(190, 231, 211, 0.35);
  border-radius: 50px 0px 0px 50px;
/*   white-space: nowrap; */
  transition: all 0.3 ease-in-out;
}
.hero-block__info-bottom .link_btn span {
  color: var(--text-alt-head);
}
.hero-block__info-bottom .link_btn::after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50px 0px 0px 50px;
  background: linear-gradient(125.44deg, #95C19D 13.38%, #5BA56F 45.92%, #8BB793 78.45%);
  opacity: 1;
}
.hero-block__info-bottom .link_btn::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50px 0px 0px 50px;
  background: var(--colors-main);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease-in-out;
}
.hero-block__info-bottom .link_btn:hover::before {
  opacity: 1;
}
.hero-block__info-bottom span {
  z-index: 3;
}
.hero-block__info-bottom .button_image {
  position: absolute;
  right: 0px;
  transform: translateX(50%);
	width:160px;
/*   width: 180px; */
  z-index: 3;
}
.hero-block__info-bottom .button_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-block__info-bottom .subtitle_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 80px;
}
.hero-block__info-bottom .subtitle_btn p {
  font-weight: 800;
}
.hero-block__info-bottom .subtitle_btn span {
  font-weight: 800;
	min-width:140px;
/*   color: var(--colors-main); */
/* 	color: #fe8e0e; */
}
.hero-block_bg {
  display: none;
  width: 100%;
  height: 350px;
}
.hero-block_bg .content {
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.hero-block_bg .content .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-block_bg .content .img::after {
  position: absolute;
  content: "";
  width: 992.94px;
  height: 870.65px;
  left: -908.79px;
  top: -351.09px;
  transform: rotate(23.28deg);
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 0;
}
.hero-block_bg .content .img::before {
  position: absolute;
  content: "";
  width: 1214px;
  height: 890px;
  left: -837px;
  top: -46px;
  background: linear-gradient(88.23deg, #FFFFFF 51.5%, rgba(255, 255, 255, 0) 93.33%);
  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  z-index: 1;
}
.hero-block_bg .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1400px) {
  .hero-block__background::after {
/*     background-position: 30%; */
	  min-height:900px;
	  min-width:900px;
	  transform: translate(-40%, -50%);
  }
  .hero-block{
/*     padding: clamp(2.5rem, -4.03rem + 13.06vw, 6.875rem) 0px clamp(2.5rem, -3.097rem + 11.19vw, 6.25rem) 0px; */
	  padding: 0px 0px 20px 0px;
/* 	  padding-top: 0; */
  }
	
	.hero-block__info-bottom{
		margin-top: 10px;
	}
	
	.hero-block__info{
		position: relative;
		padding:20px;
	}
	
	.hero-block__info > div{
		position: relative;
		z-index: 3;
	}
	
	.hero-block__info::before{
		content: "";
        position: absolute;
        left: -5%;
        top: 0;
        width: 40%;
        height: 50%;
        background-color: #fff;
		z-index: 1;
	}
}
@media (max-width: 1200px) {
	.hero-block__info{
		max-width:600px;
	}
	.hero-block__info-bottom .button_image{
		width:140px;
	}
}
@media (max-width: 1000px) {
  .hero-block__background::after {
    background-position: 40%;
  }
}
@media (max-width: 800px) {
  .hero-block__background::after {
    background-position: 35%;
  }
}
@media (max-width: 768px) {
	.hero-block__background::after {
	  min-height:unset;
	  min-width:unset;
	  transform: translate(-50%, -50%);
  }
	.hero-block__info::before{
		display: none;
	}
  .hero-block {
    padding: 20px;
    padding: clamp(1.25rem, -3.713rem + 22.06vw, 6.875rem) 0px clamp(1.25rem, -3.713rem + 22.06vw, 6.875rem) 0px;
  }
  .hero-block_bg {
    display: none;
    position: relative;
    z-index: -2;
  }
  .hero-block__info{
    padding: 0px;
  }
  .hero-block__info-center {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0px;
    gap: 10px;
  }
  .hero-block__info-bottom {
    flex-direction: column;
    gap: 20px;
	  margin-top:10px;
/*     margin-top: clamp(1.25rem, -0.404rem + 7.35vw, 3.125rem); */
	}
  .hero-block__info-bottom .subtitle_btn {
    padding-left: 0px;
  }
  .hero-block__info-bottom .link_btn {
    width: 90%;
	  white-space: normal;
    height: auto; 
    min-height: clamp(3.75rem, 3.462rem + 1.28vw, 5rem); 
    text-align: center;
  }
  .hero-block {
    position: relative;
    padding: 20px;
  }
  .hero-block.main_banner .hero-block__background {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: -1;
    display: flex;
    justify-content: flex-end;
  }
  .hero-block.main_banner .hero-block__background img {
    display: none;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: right;
  }
  .hero-block.main_banner .hero-block__background::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -65%);
    background: url("./images/her_mobile_bg.png");
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    transition: all 0.3s ease-in-out;
  }
  .hero-block.sub_banner {
    padding: 20px;
    border-radius: 20px;
    background: var(--colors-main);
  }
	.hero-block.sub_banner .subtitle_btn span{
		color:var(--text-alt-head);
	}
  .hero-block.sub_banner .hero-block_bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
  }
  .hero-block.sub_banner .hero-block_bg .content {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hero-block.sub_banner .hero-block_bg .content::after {
    position: absolute;
    content: "";
    width: 661.28px;
    height: 194.41px;
    left: -226.75px;
    top: 363.87px;
    background: #8CF555;
    filter: blur(159.375px);
    transform: rotate(-7.11deg);
  }
  .hero-block.sub_banner .hero-block_bg .content::before {
    position: absolute;
    content: "";
    width: 2610.52px;
    height: 1375.68px;
    left: -1110.12px;
    top: -450.81px;
    background: radial-gradient(56.61% 56.61% at 57.28% 22.1%, #5CAC6D 11.43%, #388860 33.77%, #A0DE80 87.81%);
    filter: blur(265.625px);
  }
  .hero-block.sub_banner .hero-block__info {
    padding: 0px;
    z-index: 10;
  }
  .hero-block.sub_banner .hero-block__info-center .advantag-text .title {
    color: var(--text-alt-main);
  }
  .hero-block.sub_banner .hero-block__info-center .advantag-text .desc {
    color: var(--text-alt-second);
  }
  .hero-block.sub_banner .hero-block__info-bottom .subtitle_btn p {
    color: var(--text-alt-head);
  }
  .hero-block.sub_banner .hero-block__info-bottom .button_image {
    width: clamp(8.125rem, 5.368rem + 12.25vw, 11.25rem);
  }
  .hero-block.sub_banner .hero-block__info-top * {
    color: var(--text-alt-head) !important;
  }
  .hero-block.sub_banner .hero-block__info-top p {
    display: none !important;
  }
  .hero-block.sub_banner .hero-block__background {
    display: none;
  }
}

@media (max-width: 550px) {
  .hero-block__info-top h1,.hero-block__info-top .h1{
    font-size: 32px;
  }
  .hero-block__info-bottom .link_btn{
    padding: 0px 20px;
    justify-content: center;
  }
  .hero-block__info-bottom .link_btn,.hero-block__info-bottom .link_btn::after,.hero-block__info-bottom .link_btn::before{
    border-radius: 50px;
  }
  .hero-block__info-bottom .button_image{
    display: none;
  }
  .hero-block__info-center .advantag{
    margin-top: 10px;
  }
  .hero-block__info-center .advantag-image{
    display: none;
  }
}

@media (max-width: 360px) {
  .hero-block.sub_banner .link_btn {
    width: 100%;
  }
}
@media (max-width: 340px) {
  .hero-block.sub_banner .link_btn {
    width: 100%;
    border-radius: 50px;
    text-align: center;
    padding-right: 20px;
    justify-content: center;
  }
  .hero-block.sub_banner .button_image {
    display: none;
  }
}/*# sourceMappingURL=block.css.map */