.marked {
  display: inline-block;
  position: relative;
  color: white;
  font: inherit;
}

.marked::before {
  content: "";
  position: absolute;
  width: calc(100% + 1.2rem);
  height: calc(105%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-accent);
  z-index: -1;
}

/* ***************
    feature
*************** */
#section-feature {
  position: relative;
  margin: 2rem 0 7rem 0;
  padding-top: 10rem;
}

#section-feature img {
  display: block;
  position: absolute;
  top: 0;
  right: -2rem;
  width: 8rem;
  object-fit: cover;
}

/* ***************
    workflow
*************** */
#section-workflow {
  margin-bottom: 7rem;
}

#section-workflow h2 i:last-child {
  padding-right: 2rem;
}

#section-workflow h2 i:last-child::after {
  content: url("/assets/svg/noto-emoji/emoji_u1f680.svg");
  position: absolute;
  top: -0.4rem;
  right: -2rem;
  width: 3.6rem;
  transform: rotateZ(-20deg);
}

#section-workflow p {
  margin-bottom: 0.6rem;
}

/* ***************
    pricing
*************** */
#section-pricing {
  margin-bottom: 2rem;
}

#section-pricing h2 i:last-child {
  padding-right: 1rem;
}

#section-pricing h2 i:last-child::after {
  content: url("/assets/svg/noto-emoji/emoji_u1f389.svg");
  position: absolute;
  top: -0.8rem;
  right: -2.9rem;
  width: 3.6rem;
  transform: rotateZ(0deg);
}

/* ***************
     profile
*************** */
#section-profile {
  margin-bottom: 7rem;
  text-align: center;
}

#section-profile .profile {
  display: inline-block;
  max-width: 75%;
  width: 17rem;
}

#section-profile .profile:first-of-type {
  margin-right: 0.5rem;
}

#section-profile .profile:last-of-type {
  margin-left: 0.5rem;
}

#section-profile .profile-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1000px;
  border: 5px solid var(--color-accent);
  object-fit: cover;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.1);
}

#section-profile .profile-text {
  margin-top: 1rem;
  text-align: center;
}

@media (width <= 39rem) {
  #section-profile .profile {
    display: block;
    margin: 2rem auto !important;
  }
}


/* ***************
    contact
*************** */
#section-contact {
  margin-bottom: 3rem;
}

#section-contact h2 {
  display: inline-block;
  position: relative;
}

#section-contact h2::after {
  content: url("/assets/svg/noto-emoji/emoji_u1f4ec.svg");
  position: absolute;
  top: -3.3rem;
  right: -1.7rem;
  width: 3.6rem;
  transform: rotateZ(15deg);
}

#section-contact .form-entry {
  margin: 0.5rem 0;
}

#section-contact .form-entry label {
  display: block;
  margin-bottom: 0.2rem;
}

#section-contact .form-entry input[type="email"],
#section-contact .form-entry input[type="text"],
#section-contact .form-entry textarea {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: none;
  border: none;
}

#section-contact .form-entry textarea {
  height: 10rem;
  resize: vertical;
}

#section-contact input[type="submit"] {
  width: 100%;
  margin-top: 1rem;
  padding: 0.5rem;
  color: white;
  background-color: var(--color-accent);
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
