
 h1 {
  font-size: clamp(1.25rem, 0.288rem + 2.712vw, 3rem);/*clamp(1rem, 6vw, 4rem);*/
  margin: 15vh 0 2rem;
  color: #000;
}
 .explanation {
  width: 100%;
  margin-bottom: 15vh;
}
 .explanation p {
  font-size: 1rem;
  max-width: 75ch;
  margin: 2rem 0;
}
 .explanation ul:last-child {
  margin-bottom: 2rem;
}
 body .explanation ul {
  display: flex;
  flex-direction: column;
}
 .explanation ul li {
  list-style: none;
  position: relative;
  margin: 0.5rem 0;
}
 .explanation ul li::before {
  content: '👉';
  position: absolute;
  top: -0.25rem;
  left: -2rem;
}
.hero__subheading {
 font-size:18px;
 line-height:26px;
}

 .containercnt {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem 2.5rem;
  background-color: #77a4c3; 
}

.spacebox {  
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
 .containercnt {
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
  }
}
 .containercnt .cta-form {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
.containercnt .cta-form {
    margin-bottom: 0;
    margin-right: 2rem;
    text-align: left;
  }
}
.containercnt .cta-form h2 {
  font-size: 1.5rem;
  width: 100%;
  max-width: 25ch;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
 .containercnt .cta-form h2 {
    text-align: left;
    margin: 0;
  }
}
 .containercnt .cta-form p {
  margin-top: 1rem;
  font-size: 1rem;
  width: 100%;
  max-width: 24ch;
}
 .form {
  align-self: center;
}
 .form__input {
  width: clamp(120px, 50vw, 420px);
  height: 2.5rem;
  padding: 0 1.25rem;
  border: 1px solid #303030;
  border-radius: 2px;
  margin: 0.625rem auto;
  transition: all 250ms;
}
@media (min-width: 768px) {
  .form__input {
    width: clamp(120px, 35vw, 420px);
  }
}
.form__input:focus {
  outline: none;
  border-top-color: rgba(0, 0, 0, 0.1);
  /* When the input field (.form__input) is in focus, 
   transform the .form__label and change colors*/
  /* ALSO, if the input field's placeholder is NOT shown (when the input field has content),
   transform the .form__label and change colors. */
}
.form__input:focus + .form__label, .form__input:not(:placeholder-shown) + .form__label {
  transform: translateY(-4.5rem) scale(1);
  color: #303030;
  /* THIS PART IS IMPORTANT!! */
  /* The block below hides the placeholder entirely. */
  /* For all intents and purposes, the placeholder no longer exists. */
  /* What shows on the input field is only the label*. */
  /* HOWEVER, the input fields still recognizes that the placeholder exists!*/
  /* The placeholder is just invisible. We need the placeholder to exist for
   some weird CSS stuff. If we skip this, we can't make it CSS-only. */
}
.form__input::placeholder {
  display: none;
  color: transparent;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
  /* When the placeholder is NOT shown,
   style the top border. */
  /* This makes the top border fade-out when the placeholder disappears. */
}
.form__input:not(:placeholder-shown) {
  border-top-color: rgba(0, 0, 0, 0.5);
}
.form__label {
  font-size: 1rem;
  color: #909090;
  display: block;
  transform: translate(1.25rem, -2.5rem);
  transform-origin: 0 0;
  transition: all 500ms;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
button.cta-lscontact  {
    display: inline-block;
    background: #77a4c3; /* 85bb65;*/
    color: #fff;
    border: 2px solid #fff;
    padding: 0.425rem 1.675rem;
    cursor: pointer;
    font-size: 1.10rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    margin: 0 auto;
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center; 
}
button.cta-lscontact:hover  {
    background: #fff;
    color: #77a4c3;
    border: 2px solid #77a4c3;
}

button.cta-lscontact::after {
    content: "\27F6";
    padding-left: 5px;
    font-size: 1.75rem;
}
@media (max-width: 520px) {
.hero__subheading {
   font-size:16px;
   line-height:24px;
  }
  button.cta-lscontact  {
    border: 2px solid #fff;
    font-size: 1.0rem;
    padding: 0.275rem 1.25rem;
   }
  button.cta-lscontact::after {
    content: "\27F6";
    padding-left: 5px;
    font-size: 1.425rem;
   }
}