html {
  height: 100%;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #595959;
  background: #ffffff;
  min-width: 320px;
  min-height: 100%;
  overflow-y: scroll;
}
.d-flex {
  display: flex;
}
.flex-grow-1 {
  flex-grow: 1;
}
.text-red {
  color: #f53946;
}
a.text-red {
  color: #f53946;
}
.mt-0 {
  margin-top: 0;
}

header,
footer {
  text-align: center;
}

.header-slim {
  padding: 8px 0;
  background-color: #fff;
}

.header-slim .logo img {
  height: 50px;
}

.banner-contact {
  padding: 50px 0;
  background: #f53946 url("../images/gvo-office.png") no-repeat center center;
  background-size: cover;
  color: #ffffff;
}
.banner-contact h1 {
  font-size: 50px;
}
.contact-form {
  padding: 60px 0;
}
.contactForm {
  padding: 30px 50px;
  background: #e8e6ed;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  -webkit-box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
.form-control {
  background-color: #faf9fc;
  border-radius: 2px;
  border-color: #dddddd;
  border-left: 4px solid #f53946;
  height: 42px;
  padding: 10px 12px;
  font-size: 16px;
}

.btn-submit {
  border: none;
  background-color: #f53946;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 18px;
  transition: background-color .2sease-in-out;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, .15);
  min-width: 260px;
  max-width: 100%;
  transition: all .2s;
}

.btn-submit:hover,
.btn-submit:focus {
  background-color: #c7353f;
  color: #fff;
}

.btn-submit:focus,
.btn-submit:active:focus {
  outline: 0;
}

.help-text {
  margin-top: 40px;
  margin-bottom: 10px;
}

.help-text a {
  text-decoration: underline;
}

.help-text a:hover {
  text-decoration: none;
}

footer .legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .legal-links li {
  display: inline;
  padding-right: 6px;
}

footer .legal-links li a {
  color: #595959 !important;
  text-decoration: none;
  display: inline;
}

footer .legal-links li a:hover {
  color: #000000 !important;
}

@media only screen and (max-width: 1300px) {
}
@media only screen and (max-width: 767px) {
  .logo img {
    width: 80px;
  }
  .banner-contact {
    padding: 30px 0;
  }
  .banner-contact h1 {
    font-size: 40px;
  }
  .contact-form {
    padding: 40px 0;
  }
}