.text-content {
  font-size: 28px;
  line-height: 1.6;
  color: #00d08b;
  font-weight: 400;
  margin-top: 40px;
}

.prompt-form-banner {
  background: #000;
  color: #fff;
  text-align: center;
  position: relative;
}

.prompt-form-banner .heading {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  margin: 0 0 3rem;
}

.prompt-form-banner--background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.prompt-form-banner--background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.7;
}

.prompt-form-banner--background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-form-banner--wrapper {
  max-width: 75%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .prompt-form-banner--wrapper {
    max-width: 100%;
  }
}

.prompt-form-banner--inner {
  padding: 4% 0 8%;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .prompt-form-banner--inner {
    padding: 10% 0 14%;
  }
}

.prompt-form-banner--logo {
  max-width: 175px;
  margin: 0 auto 15%;
}

@media only screen and (max-width: 768px) {
  .prompt-form-banner--logo {
    max-width: 130px;
    margin: 0 auto 15%;
  }
}

.prompt-form-banner--logo picture,
.prompt-form-banner--logo img {
  max-width: 100%;
  height: auto;
}

.prompt-form .prompt-form--input {
  position: relative;
}

.prompt-form .prompt-form--additional {
  max-width: 75%;
  margin: 4rem auto 0;
}

.prompt-form .prompt-form--additional > * {
  font-size: 28px;
  line-height: 1.6;
  color: #888;
  font-weight: 400;
}

.prompt-form .prompt-form--additional > *:last-child {
  margin-bottom: 0;
}

form input[type="text"] {
  width: 100%;
  height: 80px;
  font-size: 21px;
  padding: 0 calc(30px + 40px + 20px) 0 5%;
  box-sizing: border-box;
  border-radius: 50px;
  border: none;
  outline: none;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  form input[type="text"] {
    height: 70px;
    padding: 0 calc(20px + 30px + 20px) 0 5%;
    font-size: 16px;
  }
}

form button {
  all: unset;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
  form button {
    right: 20px;
  }
}

form button picture,
form button img,
form button svg {
  @media only screen and (max-width: 768px) {
    width: 30px;
    height: auto;
  }
}

.prompt-form--predefined {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 90%;
  margin: 2.5rem auto 0;
}

@media only screen and (max-width: 768px) {
  .prompt-form--predefined {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}

.prompt-form--predefined-item {
  text-align: left;
  padding: 15px 20px;
  box-sizing: border-box;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.prompt-form--predefined-item-prompt {
  color: #9a9a9a;
  font-weight: 400;
}

.prompt-form--predefined-item-title {
  color: #d1d1d1;
  font-weight: 700;
  margin-bottom: 3px;
}

.prompt-form--predefined-item:hover {
  border-color: #fff;
}

.prompt-form--predefined-item:hover .prompt-form--predefined-item-title,
.prompt-form--predefined-item:hover .prompt-form--predefined-item-prompt {
  color: #fff;
}

.container {
  position: relative;
}
