.contact-background {
  padding: 10px;
  margin: 0;
  background-image: url("../img/visualisations/contact.png");
  margin-bottom: 200px;
  margin-top: 100px;
  background-size: 100%;
}

.contact-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact-info {
  width: 50%;
  margin: 0;
  color: white;
  background-color: #172a30;
  min-width: 220px;
}

.contact-info-items {
  width: 90%;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 80px;
}

.contact-info-items img {
  width: 100%;
}

.contact-info-item {
  margin-left: 10%;
  margin-right: 10%;
}

.contact-info-item-header {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #cda377;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
}

.contact-info-item-icon {
  float: left;
  width: 20px;
  margin-right: 15px;
}

.contact-info-item-text {
  margin-top: 20px;
  margin-left: 35px;
  font-size: 1.125rem;
}

.contact-form {
  background-color: rgb(235, 235, 235);
  margin: 0;
  width: 50%;
  min-width: 220px;
}

.form-items-container {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 28%;
  margin-bottom: 20%;
}

.form-item {
  margin-left: 0;
  margin-right: 0;
}


input,
textarea {
  font: inherit;
  width: 100%;
  padding: 10px 12px;
  border-width: 0;
  outline: none;
  box-sizing: border-box;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: #adadad;
}

.send-button {
  font: inherit;
  border: none;
  cursor: pointer;
  background-color: #172a30;
  color:#cda377;
  width: 100%;
  font-weight: 700;
  transition: all ease-in-out 0.2s;
  display: table;
  text-decoration: none;
  text-align: center;
  padding: 10px 30px;
  border-radius: 50px;
  box-sizing: border-box;
}

.send-button:hover {
  background-color: #cda377;
  color:#172a30;
}

.send-button:active {
  background-color: #172a30;
  color:#cda377;
}

.form-send-error,
.form-send-success {
  display: none;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
  border: none;
}

.contact-container p:not(.u-text-variant) {
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: 1.6;
}

@media all and (max-width: 1150px) {
  .contact-background {
    padding: 10px;
    margin: 0;
    background-image: url("../img/visualisations/contact.png");
    background-repeat:round;
    margin-bottom: 200px;
    margin-top: 100px;
    background-size: 100%;
  }
}

@media all and (max-width: 800px) {
  .contact-container{
      display: block;
  }

  .contact-info {
    width: 70%;
    margin: auto;
    padding: 10px;
  }

  .contact-form {
    width: 70%;
    margin: auto;
    padding: 10px;
    margin-top: 50px;
    background-color: rgb(215, 215, 215);
  }

  .contact-background {
    background-image: none;
  }
}


@media all and (max-width: 520px) {
  .contact-background, .contact-container {
    margin-top: 50px;
    margin-bottom: 0px;
  }

  .contact-info-items {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .contact-info-item-header {
    font-size: 1rem;
  }

  .contact-info-item-text {
    margin-left: 0;
    font-size: 0.85rem;
  }

  input, textarea, .send-button {
    font-size: 13px;
  }
}
