body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}

strong {
  font-weight: 700;
}

a {
  color: #e3000e;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
a:before {
  content: "";
  height: 0.175em;
  width: 100%;
  background: #ca000c;
  position: absolute;
  bottom: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
  -webkit-transition: cubic-bezier(0.35, 0, 0, 0.7) 0.25s;
  -o-transition: cubic-bezier(0.35, 0, 0, 0.7) 0.25s;
  transition: cubic-bezier(0.35, 0, 0, 0.7) 0.25s;
}
a:hover, a:focus {
  color: #ca000c;
  text-decoration: none;
}
a:hover:before, a:focus:before {
  content: "";
  height: 0.175em;
  width: 100%;
  background: #ca000c;
  position: absolute;
  bottom: 0;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: cubic-bezier(0.35, 0, 0, 0.7) 0.25s;
  -o-transition: cubic-bezier(0.35, 0, 0, 0.7) 0.25s;
  transition: cubic-bezier(0.35, 0, 0, 0.7) 0.25s;
}
a.no-fx {
  display: inherit;
}
a.no-fx:before {
  display: none;
}

.bg-primary a,
.bg-secondary a {
  color: #fff;
}
.bg-primary a:before,
.bg-secondary a:before {
  background: #f2f2f2;
}

.btn-primary {
  background: #e3000e;
  border-color: #e3000e;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: #ca000c !important;
  border-color: #ca000c !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

#formbox {
  -webkit-transform: translate(0, -3rem);
      -ms-transform: translate(0, -3rem);
          transform: translate(0, -3rem);
}

.form-control {
  margin-bottom: 0.75rem;
  padding: 0.575rem 0.95rem;
  height: auto;
  border: 0.2rem solid transparent;
  border-radius: 0.35rem;
}
.form-control:focus {
  border-color: #6c6d6e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 109, 110, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(108, 109, 110, 0.25);
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #e3000e;
  background-color: #e3000e;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #e3000e;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(227, 0, 14, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(227, 0, 14, 0.25);
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #fff;
}

@media (max-width: 992px) {
  .form_wrapper {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-bottom: 8.5rem;
  }
}
#hero {
  background: url(../images/bg-home.jpg) no-repeat center top;
  background-size: cover;
  position: relative;
  height: 80vh;
}
#hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.bg-primary {
  background: #e3000e !important;
}

.bg-secondary {
  background: #6c6d6e !important;
}

::-moz-selection {
  color: #fff;
  background: rgba(227, 0, 14, 0.9);
}

::selection {
  color: #fff;
  background: rgba(227, 0, 14, 0.9);
}