.site-hero {
  background: url("../images/assets/banner4.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 25px solid goldenrod;
}

.hero-inner {
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.5), rgba(7, 7, 7, 0.918));
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-item {
  padding: 20px;
}

.hero-item h1 {
  font-size: 80px;
  color: lightgray;
}

.hero-item p {
  color: white;
  font-size: 30px;
}

.hero-item button {
  width: 180px;
  height: 40px;
}

.reg-form-inner {
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  padding: 0px 40px;
}

.reg-h-chip {
  margin-top: 50px;
}

.reg-h-chip h3 {
  border-bottom: 2px solid goldenrod;
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}

.reg-h-chip h3 i {
  font-size: 20px;
}

.contact-card-help {
  background: lightgrey;
  padding: 20px;
  margin-top: 30px;
}

.contact-card-help ul {
  background: #313131;
  padding: 10px;
}

.contact-card-help li div {
  color: rgba(0, 155, 245, 0.966);
  font-family: "Titillium Web";
}

.cch-card {
  border-bottom: 1px solid grey;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.cch-card h4 {
  color: #6e6e6e;
}

.hc-icon {
  border: 2px solid rgba(0, 155, 245, 0.966);
  width: 30px;
  height: 30px;
  background: rgba(0, 155, 245, 0.966);
  color: lightgray;
  margin-right: 20px;
}

.f-header {
  background: rgba(0, 155, 245, 0.966);
  padding: 10px;
  text-align: center;
}

.f-header h2 {
  color: whitesmoke;
  font-size: 30px;
}

.f-header p {
  color: lightgray;
}

.form {
  margin-top: -50px;
  -webkit-box-shadow: 0px 3px 5px grey;
          box-shadow: 0px 3px 5px grey;
}

.form form {
  background: white;
  padding: 10px;
}

.form-card {
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  border-radius: 0px;
}

.f-input input {
  border: 1px solid rgba(0, 155, 245, 0.966);
  width: calc(100% - 15px);
  border-radius: 5px;
}

.f-input select {
  border: 1px solid rgba(0, 155, 245, 0.966);
  width: calc(100% - 5px);
  border-radius: 5px;
}

.message {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
}

.message textarea {
  height: 200px;
  border: 1px solid rgba(0, 155, 245, 0.966);
  width: calc(100% - 15px);
  border-radius: 5px;
  padding: 5px;
  outline: none;
  font-family: "Titillium Web";
  resize: none;
}

.reg-form-submit {
  text-align: right;
  margin-top: 20px;
}

.reg-form-submit button {
  width: 160px;
}

@media (max-width: 800px) {
  .reg-form-inner {
    padding: 0px 2px;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .form {
    margin-top: 30px;
  }
  .reg-h-chip {
    padding: 3px;
  }
  .contact-card-help {
    padding: 5px;
  }
}
/*# sourceMappingURL=contact.css.map */