* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #ffffff;
  background: #2d3142;
  font-family: "Montserrat", sans-serif;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
}

.back-button svg {
  width: 30px;
}

.back-button:hover svg path {
  opacity: 0.7;
}

form {
  border: 3px solid #ef8354;
  border-radius: 10px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .pageclip-form__success {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  text-align: center;
  background: black !important;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

form .title {
  color: #d5d6d9;
  font-size: 24px;
}

form .first-name,
form .last-name {
  width: 100%;
}

form h2 {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin-top: 15px;
}

form input {
  background: none;
  border: 2px solid #fff;
  width: 100%;
  height: 30px;
  border-radius: 5px;
  margin-top: 10px;
  color: #fff;
  padding-left: 10px;
}

form input:hover {
  border-color: #ffffffdf;
}

form textarea {
  background: none;
  border: 2px solid #fff;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  margin-top: 10px;
  color: #fff;
  padding-left: 10px;
}

form textarea:hover {
  border-color: #ffffffdf;
}

form .submit {
  background-color: #ef8354;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  width: 80%;
  border: none;
  margin-top: 20px;
  padding: 0;
  height: 35px;
  cursor: pointer;
}

form .submit:hover {
  background-color: #ef8254ce;
}

form div {
  width: 80%;
}

form .address h2:nth-child(1) {
  color: #ef8354;
  font-weight: 600;
  margin: 0;
  margin-top: 15px;
}

form .address h2:nth-child(2) {
  font-size: 14px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 20px;
}

.bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.bg img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  form {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 30px;
    width: 70%;
  }
  form h2 {
    text-align: left;
  }
  form .title {
    margin-top: 0;
  }
  form .address h2:nth-child(2) {
    margin-bottom: 0;
  }
  form .name,
  form .email,
  form .tel,
  form .submit,
  form .message {
    width: 100%;
  }
  form .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  form .name .first-name,
  form .name .last-name {
    width: 47%;
  }
}

@media screen and (min-width: 1024px) {
  form {
    width: 60%;
  }
  form h2 {
    font-size: 26px;
  }
  form .title {
    font-size: 28px;
  }
  form .address h2:nth-child(2) {
    font-size: 24px;
    line-height: 30px;
  }
  form .submit {
    font-size: 24px;
    height: 40px;
  }
  form input {
    height: 35px;
  }
}

@media screen and (min-width: 1440px) {
  form {
    width: 50%;
  }
}
/*# sourceMappingURL=contact.css.map */