body {
  background-image: url("desktop_bg.jpg");
  background-repeat: no-repeat;
  font-family: Arial, Helvetica, sans-serif;
}

.home-logo {
  display: flex;
  justify-content: center;
}

img {
  width: auto;
}

@media (min-width: 320px) {
  img {
    height: 70px;
    margin: 10px;
  }
}

@media (min-width: 480px) {
  img {
    height: 100px;
    margin: 30px;
  }
}

.contact-us-title {
  text-align: center;
  color: white;
  margin: 5px;
}

@media (min-width: 320px) {
  .contact-us-title {
    font-size: 27px;
  }
}

@media (min-width: 480px) {
  .contact-us-title {
    font-size: 40px;
  }
}

.contact-us-text {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  padding-top: 10px;
  clear: both;
  color: #fff;
  font-weight: 300;
}

@media (min-width: 320px) {
  .contact-us-text {
    font-size: 15px;
  }
}

@media (min-width: 480px) {
  .contact-us-text {
    font-size: 23px;
  }
}

.text-laptop {
  width: 95%;
  text-align: justify;
}

.contact-us-content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-us-form {
  border-radius: 5px;
}

@media (min-width: 320px) {
  .contact-us-form {
    margin: -5px 0;
    width: 95%;
  }
}

@media (min-width: 480px) {
  .contact-us-form {
    margin: 30px 0;
    width: 450px;
  }
}

.contact-us-element {
  border-radius: 5px;
  border: 2px solid #DB0055;
  padding: 0;
  overflow: auto;
}

@media (min-width: 320px) {
  .contact-us-element {
    margin-bottom: 5px;
  }
}

@media (min-width: 480px) {
  .contact-us-element {
    margin-bottom: 15px;
  }
}

input {
  max-height: 34px;
}

input::placeholder {
  color: grey;
}

input:not([type="radio"]),
textarea {
  width: 95%;
  margin: auto;
  font-weight: 500;
  border: none;
  background: 0 0;
  outline: none;
  color: #fff;
}

input[type="radio"] {
    margin-left:10px;
    margin-top: -1px;
    vertical-align: middle;
    display: inline-block;
}

.radio-label {
  display: inline-block;
  font-weight: 500;
  color: #fff;
}

@media (min-width: 320px) {
  input,
  textarea {
    font-size: 14px;
    padding: 0 5px;
    height: 115px;
  }
}

@media (min-width: 480px) {
  input,
  textarea {
    font-size: 24px;
    padding: 0 10px;
    height: 200px;
  }
}

.contact-us-input-label {
  color: #fff;
  font-weight: 500;
  text-align: left;
  padding-left: 10px;
}

@media (min-width: 320px) {
  .contact-us-input-label {
    font-size: 12px;
  }
}

@media (min-width: 480px) {
  .contact-us-input-label {
    font-size: 14px;
  }
}

.contact-us-button {
  color: #fff;
  background-color: #DB0055;
  font-size: 24px;
  padding: 10px;
  border-radius: 5px;
  margin-left: 0;
  margin-right: 0;
  border: none;
}

@media (min-width: 320px) {
  .contact-us-button {
    width: 100%;
    font-size: 20px;
  }
}

@media (min-width: 480px) {
  .contact-us-button {
    width: 450px;
    font-size: 24px;
  }
}

span {
  display: flex;
  justify-content: center;
  text-align: center;
}