/* Colors */
/* Fonts */
/* Border Radius' */
/* Screen Sizes */
.red-gradient {
  background: #c93032;
  background: linear-gradient(310deg, #C95000, #c93032);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0.5px 0.5px 2px #b11010;
}
.red-gradient h1 {
  margin: 0;
  line-height: 1;
}
.red-gradient a:hover, .red-gradient a:focus {
  text-shadow: none;
  color: black;
}
.red-gradient a.btn-ghost {
  background: rgba(0, 0, 0, 0);
  font-size: 1.1em;
  border: 2px solid #ffffff;
  border-radius: 5px;
}
.red-gradient a.btn-ghost:hover {
  color: #ffffff;
  text-decoration: underline;
  background: rgb(159.8313253012, 38.1686746988, 39.7590361446);
}

.green-gradient {
  background: #08b55a;
  background: linear-gradient(310deg, #85bc19, #08b55a);
}

.blue-gradient {
  background: #1a85c1;
  background: linear-gradient(310deg, #0bada8, #1a85c1);
}

.purple-gradient {
  background: #8342b2;
  background: linear-gradient(310deg, #af2cc6, #8342b2);
}

main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1em;
}

.services-wrapper {
  max-width: 700px;
  margin-top: 3em;
}

.service-container {
  display: flex;
  margin-top: -1em;
  padding-top: 3em;
}
.service-container h3 {
  margin-top: 0;
}
.service-container img {
  margin-right: 1em;
}

.space {
  margin: 4em 0;
}

.main-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .main-wrapper {
    flex-direction: column;
  }
}
.main-wrapper > section {
  margin-top: 2em;
}
.main-wrapper .contact-section {
  width: 35%;
  margin-left: 5%;
}
@media (max-width: 992px) {
  .main-wrapper .contact-section {
    width: 55%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .main-wrapper .contact-section {
    width: 100%;
  }
}
.main-wrapper .contact-section form label[for="contact[add_listserv]"] {
  display: inline;
  margin-left: 5px;
}
.main-wrapper .services-wrapper {
  width: 65%;
  max-width: none;
}
@media (max-width: 992px) {
  .main-wrapper .services-wrapper {
    width: 100%;
  }
}
