body {
  margin: 0;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 0.95rem;
  line-height: 1.6;
}
.wrapper {
  border-bottom: 200px solid white;
  height: calc(100vh - 200px);
}
.hero {
  background-image: url(/assets/images/rps-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  min-height: 80vh;
}
.logo {
  padding: 60px;
  margin: 0;
}
@media (min-width: 768px) {
  .logo img {
    width: 300px;
    height: auto;
  }
}
.logo img {
  width: 500px;
  height: auto;
}
.container {
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 768px) {
  .container {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .grid {
    display: flex;
    justify-content: space-between;
    grid-gap: 10%;
  }
  .grid-col {
    flex: 1;
  }
}
.section {
  padding-top: 5%;
  padding-bottom: 5%;
}
.section-default {
  background-color: #fff;
  color: #2e2e30;
}
.section-default a, .section-default a:hover, .section-default a:focus {
  color: #d4290d;
  text-decoration: none;
}
.section-dark {
  background-color: #2e2e30;
  color: #fff;
}
.section-dark a, .section-dark a:hover, .section-dark a:focus {
  color: #fff;
  text-decoration: underline;
}
.section-header {
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  margin: 0 0 30px;
}
.section-header:after {
  content: "";
  display: block;
  width: 30%;
  height: 5px;
  background-color: #d4290d;
  margin: 15px auto 0;
}
.section-dark .section-header:after {
  background-color: #fff;
}
.section-services {
  background-image: url(/assets/images/gear-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}
.service-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto 30px;
}
.footer {
  background-color: #1c1f23;
  color: #fff;
  padding: 60px;
  text-align: center;
}
.footer a, .footer a:hover, .footer a:focus {
  color: #fff;
  text-decoration: underline;
}

.field {
  margin: 0 0 30px;
}

input[type="text"], input[type="email"] {
  height: 30px;
  padding: 5px;
}

input[type="text"], input[type="email"], textarea {
  display: block;
  border: 1px solid #ccc;
  border-radius: 0;
  width: 100%;
}

textarea {
  min-height: 100px;
}

label {
  display: flex;
  justify-content: space-between;
}

.required {
  font-size: 0.8rem;
  opacity: 0.9;
}

button {
  background-color: #d4290d;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
}

img, video {
  max-width: 100%;
  height: auto;
}