.kontakt {
  width: 100%;
  background: #ff6200;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 33.3%);
  place-items: center;
  text-align: center;
  color: #fff;
}

.kontakt div {
  width: 100%;
  /* padding: 2rem 0; */
  /* text-align: center; */
}

.kontakt div > span {
  font-size: 1.6rem;
  font-weight: 700;
}

.kontakt div > p {
  font-size: 1.4rem;
  color: #fff !important;
}

.form-box {
  padding: 1rem 0;
  width: 100%;
  grid-column: 1/3;
  display: flex;
  justify-content: space-evenly;
  align-items: start;
}

.form-box > div {
  width: 40%;
}

.kontakt-img {
  width: 50% !important;
  padding: 0.75rem;
  background: #fff;
}

.form-box img {
  width: 100%;
  /* aspect-ratio: 1/1; */
  object-fit: cover;
  object-position: center;
  /* border-radius: 50%; */
}

.form-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

.form-box form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-box form input,
.form-box form textarea {
  width: 100%;
  outline: none;
  border: none;
  background: #fff;
  color: black;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  resize: none;
  border-radius: 0.2rem;
}

.form-box form textarea {
  min-height: 12vh;
}

.kontakt-fb {
  margin-top: 0.25rem;
  display: flex;
}

.kontakt-fb a {
  color: #525199;
  padding: 1rem;
  background: #fff;
  font-size: 1.75rem;
  text-decoration: none;
  transition: 0.2s color ease-in, 0.2s background ease-in;
}

.kontakt-fb a:hover,
.kontakt-fb a:focus,
.kontakt-fb a:active {
  background: #e3a227;
  color: #fff;
}

.form-box form button {
  margin-top: 0.25rem;
  width: 100%;
  padding: 1rem;
  background: #525199;
  color: #fff;
  font-size: 1.1rem;
  font-family: inherit;
  border: none;
  outline: none;
  border-radius: 0.2rem;
  transition: 0.2s background ease-in;
}

.form-box form button:hover,
.form-box form button:focus,
.form-box form button:active {
  background: #e3a227;
}

@media screen and (max-width: 600px) {
  .kontakt,
  .form-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-box > div,
  .form-box img {
    width: 100%;
  }

  .form-box > div {
    overflow: hidden;
  }

  .kontakt-img {
    width: 100% !important;
  }

  .kontakt-fb a {
    width: 100%;
  }
}
