.nk-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.nk-row > section {
  flex-basis: 47%;
}

.mt-l {
  margin-top: 110px;
  margin-bottom: 2.5rem;
}

.padding-top {
  padding-top: 4rem;
}

.line {
  width: 1px;
  background-color: #cec5c5;
  display: flex;
  align-items: center;
}

.line-red {
  width: 1.5px;
  height: 50%;
  background-color: red;
}

.nk-hero-container {
  height: 250px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  background-image: url(./assets/title-banned.jpg);
}

.nk-hero-container span {
  font-size: 6rem;
  color: #fff;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgb(255 254 254 / 50%);
}

.nk-row input,
.nk-row textarea {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  transition: all 0.3s ease-in;
}

.nk-row input:hover,
.nk-row textarea:hover {
  border-color: rgb(190, 190, 190);
}

.nk-row input:focus,
.nk-row textarea:focus {
  border-color: rgb(190, 190, 190);
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0;
}

.nk-button-container {
  text-align: right;
  margin-bottom: 2rem;
}

.nk-button-container > button {
  width: 30%;
}

.nk-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.nk-container ul li {
  list-style: none;
  font-size: 1.5rem;
  color: red;
  box-shadow: 0 0 1px black;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}

@media only screen and (max-width: 965px) {
  .nk-hero-container {
    align-items: center;
    text-align: center;
  }

  .nk-hero-container span {
    font-size: 3rem;
  }

  .nk-row > section {
    flex-basis: 100%;
  }

  .nk-button-container > button {
    width: 100%;
  }
}

/* == */
