@charset "UTF-8";

.sub-hero{
  padding:56px 0 80px;
}

.sub-hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.sub-hero__copy{
  display:grid;
  gap:24px;
}

.hero-kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
}

.sub-hero h1{
  font-size:clamp(20px, 5vw, 65px);
}

.sub-hero h1 span{
	font-size: 70%;
}

.forMobile {
    display: none;
}

.sub-hero__copy p{
  font-size:clamp(15px,1.7vw,18px);
  color:var(--muted);
  max-width:56ch;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hero-badges span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.sub-hero__visual{
  min-height:620px;
  border-radius:32px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.eyelash-visual{
  background:
    linear-gradient(180deg, rgba(33,29,26,.03), rgba(33,29,26,.08)),
    url("./../images/eyelash.jpg") center/cover;
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
}

.intro-text{
  display:grid;
  gap:18px;
  color:var(--muted);
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
	margin-top: 22px;
}

.info-card{
}

.info-card h3{
  font-size: 26px;
    line-height: 1.4;
	margin-bottom: 15px;
}

.info-card p{
  color:var(--muted);
  font-size:14px;
}

@media (max-width:1080px){
  .sub-hero__grid,
  .intro-grid,
  .card-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .sub-hero h1{
    font-size:clamp(22px, 9vw, 48px);
  }

  .sub-hero h1 span br{
	  display: none;
  }
	
	.forPc {
		display: none;
	}

	.forMobile {
		display: block;
	}

  .sub-hero__visual{
    min-height:420px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
	
.info-card h3{
  font-size:18px;
}


}