@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf");
  font-weight: 100 900;
}
@font-face {
  font-family: "Open-Sans-Condensed";
  src: url("../fonts/OpenSans/OpenSans_SemiCondensed-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Open-Sans-Condensed";
  src: url("../fonts/OpenSans/OpenSans_SemiCondensed-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Open-Sans-Condensed";
  src: url("../fonts/OpenSans/OpenSans_SemiCondensed-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Open-Sans-Condensed";
  src: url("../fonts/OpenSans/OpenSans_SemiCondensed-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora/Lora-VariableFont_wght.ttf");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora/Lora-Italic-VariableFont_wght.ttf");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 2.25rem 0 0;
}
@media (max-width: 992px) {
  h1 {
    margin: 1.15rem 0 0 0;
  }
}
@media (max-width: 840px) {
  h1 {
    font-size: 1.65rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.35rem;
  }
}

h2 {
  font-size: 1.5rem;
  color: #9ec84e;
  font-weight: 600;
}

strong {
  font-weight: 600;
}

.visually-hidden, .what-we-do h2 {
  position: absolute !important;
  height: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

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

.button-wrapper {
  position: relative;
  z-index: 50;
}

.button {
  position: relative;
  z-index: 50;
  display: inline-block;
  background: #73AC42;
  padding: 0.15rem 1.65rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.35rem;
  border: solid 1px #9ec84e;
  transition: all ease 0.3s;
}
.button:hover, .button:focus {
  background: #ff725e;
  border-color: #DE604E;
}
@media (max-width: 576px) {
  .button {
    font-size: 0.9rem;
    padding: 0.15rem 1.25rem;
  }
}

form .form-item {
  margin-bottom: 1.5rem;
}
form label {
  display: inline-block;
  width: 5rem;
}
form input {
  width: 80%;
  padding: 0.25rem;
}
form textarea {
  width: 92%;
}
form input.button {
  padding: 0.35rem 1.65rem;
  font-size: 1rem;
  width: auto;
}
@media (max-width: 992px) {
  form input {
    width: 70%;
    padding: 0.25rem;
  }
  form textarea {
    width: 82%;
  }
}
@media (max-width: 840px) {
  form textarea {
    width: 92%;
  }
}
@media (max-width: 576px) {
  form input {
    width: 90%;
    padding: 0.25rem;
  }
  form textarea {
    width: 92%;
  }
}

.stars {
  position: absolute;
  background: url("../img/stars.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.container {
  display: flex;
}

.left-wrapper,
.right-wrapper {
  padding: 0 2rem;
}

.left-wrapper {
  position: relative;
  display: flex;
  justify-content: right;
  flex: 1;
}
.left-wrapper .stars {
  top: 30%;
  left: 0;
  width: 100%;
  height: 50%;
  rotate: 30deg;
}

.right-wrapper {
  position: relative;
  flex: 3;
}
.right-wrapper .stars {
  top: 50%;
  right: 0;
  width: 50%;
  height: 50%;
  opacity: 0.6;
}

@media (max-width: 840px) {
  .container {
    flex-direction: column;
  }
  .left-wrapper,
  .right-wrapper {
    display: block;
  }
}
.logo {
  transition: ease-in all 0.3s;
  padding: 0.5rem 1.5rem;
  margin: 1.1rem -2rem auto;
}
.logo img {
  max-width: 200px;
}
.logo:hover, .logo:focus {
  background: #f7f7f7;
}

.navbar {
  text-align: right;
  max-width: 15rem;
}

#menubutton {
  display: none;
}

.left-wrapper ul.menu {
  list-style-type: none;
  margin: 2rem 0 3rem 0;
}
.left-wrapper ul.menu a {
  position: relative;
  display: inline-block;
  color: #383e3c;
  font-weight: 400;
  text-decoration: none;
  padding: 0.35rem;
  margin-right: -0.35rem;
}
.left-wrapper ul.menu a:after {
  position: absolute;
  display: block;
  content: "";
  height: 3px;
  bottom: 0;
  left: 50%;
  width: 0;
  background: #ff725e;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.left-wrapper ul.menu a:hover {
  color: #000000;
}
.left-wrapper ul.menu a:hover:after {
  width: 100%;
  left: 0;
}
.left-wrapper ul.menu .menu-item--active-trail {
  position: relative;
}
.left-wrapper ul.menu .menu-item--active-trail a {
  color: #DE604E;
  font-weight: 500;
}
.left-wrapper ul.menu .menu-item--active-trail:after {
  content: "";
  display: block;
  z-index: 10;
  position: absolute;
  mask-image: url("../img/circle-chevron-right.svg");
  background-color: #ff725e;
  width: 2.5rem;
  height: 2.5rem;
  right: -2.85rem;
  top: 0;
}

@media (max-width: 992px) {
  .logo img {
    width: 150px;
  }
}
@media (max-width: 840px) {
  .navbar {
    display: flex;
    align-items: center;
    text-align: none;
    max-width: none;
    padding: 0.5rem 0;
  }
  .logo {
    flex: 1;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .logo img {
    width: 100px;
  }
  .menubar {
    flex: 2;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .contact {
    flex: 1;
    text-align: center;
  }
  #menubutton {
    float: right;
    display: block;
    z-index: 100;
    position: relative;
    width: 40px;
    height: 32px;
    border: none;
    background-color: transparent;
  }
  #menubutton span {
    position: absolute;
    display: block;
    background: #383e3c;
    height: 2px;
    width: 36px;
  }
  #menubutton span:nth-of-type(1) {
    background: #ff725e;
    top: 10%;
  }
  #menubutton span:nth-of-type(2) {
    background: #7396ab;
    top: 50%;
  }
  #menubutton span:nth-of-type(3) {
    top: 90%;
    background: #245b7c;
  }
  .left-wrapper ul.menu .menu-item--active-trail:after {
    content: none;
  }
  #menubutton.open span {
    background: #383e3c;
  }
  #menubutton.open span:nth-of-type(1) {
    top: 50%;
    rotate: 45deg;
  }
  #menubutton.open span:nth-of-type(2) {
    background-color: transparent;
  }
  #menubutton.open span:nth-of-type(3) {
    top: 50%;
    rotate: -45deg;
  }
  #menu {
    flex: 1;
    text-align: right;
    position: relative;
  }
  #menu ul.menu {
    display: none;
    position: absolute;
    right: -0.5rem;
    top: 2.5rem;
    z-index: 10;
    width: 80%;
    margin: 0;
    padding: 0 1rem;
    background: #9ec84e;
    border-top-left-radius: 0.35rem;
    border-bottom-left-radius: 0.35rem;
    text-align: left;
    box-shadow: -1px 2px 8px black;
  }
  #menu.open ul.menu {
    display: block;
  }
}
@media (max-width: 576px) {
  #menu ul.menu {
    width: auto;
  }
  nav, .contact {
    flex: auto;
  }
  .contact {
    font-size: 1rem;
  }
}
.main {
  background: linear-gradient(0deg, #235978 0%, #393e3c 100%);
}
.main.sticky {
  height: 100vh;
}
.main a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: solid 1px #7396ab;
}
.main a:hover, .main a:focus {
  border-bottom-color: #9ec84e;
}

header {
  padding: 1.65rem 0 1.35rem 0;
}

.header-line {
  margin: 0 0 2rem -25%;
  margin-left: -25%;
  background: #9ec84e;
  border: 0;
  height: 1px;
}

.content {
  color: #ffffff;
  max-width: 50rem;
  padding-bottom: 2rem;
}

@media (max-width: 840px) {
  header {
    padding: 1rem 0;
  }
}
footer {
  width: 100%;
}
footer.sticky {
  position: absolute;
  bottom: 0;
}
footer .footer-line {
  margin: -1px 2rem 0 -25%;
  background: #7396ab;
  border: 0;
  height: 1px;
}
footer .left-wrapper {
  background-color: #ffffff;
}
footer .left-wrapper p {
  max-width: 13rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-style: italic;
  text-align: right;
}
footer .right-wrapper {
  background-color: #7396ab;
  position: relative;
}
footer .cloud {
  position: absolute;
  right: 0;
  top: -2.2rem;
}
footer .cloud img {
  max-width: 350px;
}
footer .logos {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.65rem;
}
footer .logos > div {
  margin-right: 1rem;
}
footer .logos img {
  max-height: 35px;
}
footer .logos .tru img {
  max-height: 40px;
}
footer .logos .douglas img {
  max-height: 50px;
}
footer .logos .cwrp img {
  max-height: 30px;
}
footer .subfooter {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  color: #ffffff;
  text-transform: uppercase;
  border-top: solid 1px #245b7c;
  margin-top: 0.5rem;
  padding: 0.35rem 0;
}
footer .subfooter > div {
  display: flex;
  align-items: center;
  height: 1.5rem;
  margin-right: 10%;
}
footer .subfooter > div:nth-of-type(3) {
  margin-right: 0;
}
footer .subfooter a {
  color: #ffffff;
  text-decoration: none;
}
footer .subfooter a:hover, footer .subfooter a:focus {
  text-decoration: underline;
}
footer .subfooter img {
  width: 18px;
  padding: 0 0.5rem;
}
@media (max-width: 1100px) {
  footer .subfooter > div {
    margin-right: 5%;
  }
  footer .logos {
    justify-content: space-evenly;
  }
  footer .logos img {
    max-height: 30px;
  }
  footer .logos .tru img {
    max-height: 35px;
  }
  footer .logos .douglas img {
    max-height: 45px;
  }
}
@media (max-width: 992px) {
  footer .subfooter {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 840px) {
  footer {
    position: relative;
  }
  footer .left-wrapper {
    background-color: #5d839b;
    color: #f7f7f7;
  }
  footer .left-wrapper p {
    max-width: 70%;
    text-align: left;
    font-style: normal;
  }
  footer .logos {
    margin-top: 0.5rem;
  }
  footer .logos > div {
    margin-right: 0.5rem;
  }
  footer .logos img {
    max-height: 25px;
  }
  footer .logos .tru img {
    max-height: 30px;
  }
  footer .logos .douglas img {
    max-height: 35px;
  }
  footer .logos .cwrp img {
    max-height: 20px;
  }
}
@media (max-width: 576px) {
  footer .left-wrapper p {
    max-width: none;
    padding-bottom: 1rem;
  }
}

body {
  position: relative;
  font-family: "Open-Sans", Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.admin ul {
  list-style-type: none;
  display: flex;
  margin: 0.5rem 0 0;
  padding: 0;
}
.admin ul li a {
  display: block;
  background: #ffffff;
  color: #245b7c;
  padding: 0.25rem 1rem;
  border: solid 1px #c9c9c9;
  border-radius: 0.25rem;
  margin-right: 1rem;
}
.admin ul li a:hover, .admin ul li a:focus {
  background: #585858;
  color: #ffffff;
}

/*** LOGIN FORM ****/
.user-login-form .form-item {
  margin-bottom: 1rem;
}

.frontpage h1 {
  font-weight: 400;
  margin: 0;
}
.frontpage h1 .header-l1 {
  font-size: 2.5rem;
  font-weight: 300;
}
.frontpage h1 #adjective {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  color: #9ec84e;
}
.frontpage h1 .header-l2 {
  font-size: 2.25rem;
  display: block;
  margin-left: 3rem;
}
@media (max-width: 840px) {
  .frontpage h1 .header-l2 {
    margin-left: 0;
  }
}

.intro {
  font-size: 1.2rem;
}

.cardset {
  display: flex;
  flex-wrap: wrap;
}
.cardset .card-wrapper {
  width: 33%;
  display: flex;
}
.cardset .card-wrapper .card {
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem;
  padding: 1rem;
  border: solid 2px #7396ab;
  border-radius: 0.5rem;
  transition: ease-in-out all 0.3s;
  background-color: #406071;
}
.cardset .card-wrapper .card:hover, .cardset .card-wrapper .card:focus {
  border-color: #c9c9c9;
  cursor: pointer;
}
.cardset .card-wrapper .card:hover:after, .cardset .card-wrapper .card:focus:after {
  content: "";
  display: block;
  position: absolute;
  mask-image: url("../img/circle-chevron-right.svg");
  background-color: #ff725e;
  width: 2.5rem;
  height: 2.5rem;
  right: -6%;
  top: 15%;
}
.cardset .card-wrapper .card h3 {
  position: relative;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: center;
}
.cardset .card-wrapper .card h3 a {
  color: #ff725e;
  border: none;
}
.cardset .card-wrapper .card p {
  text-align: center;
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}
.cardset .card-wrapper:first-child {
  margin-left: 0;
}
.cardset .card-wrapper:last-child {
  margin-right: 0;
}
.cardset .clickable-card {
  position: relative;
}
.cardset .clickable-card a::before {
  content: "";
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .cardset .cardset {
    display: block;
  }
  .cardset .card-wrapper {
    width: 100%;
    padding: 0;
  }
  .cardset .card-wrapper .card {
    width: 100%;
    margin-bottom: 1rem;
  }
  .cardset .card-wrapper .card:hover, .cardset .card-wrapper .card:focus {
    border-color: #c9c9c9;
    cursor: pointer;
  }
  .cardset .card-wrapper .card:hover:after, .cardset .card-wrapper .card:focus:after {
    right: 0;
    top: 25%;
  }
}

.work-with-us {
  margin-top: 3rem;
}
.work-with-us h3 {
  color: #9ec84e;
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.work-with-us p {
  margin: 0 0 0 10%;
  font-size: 1.1rem;
}
@media (max-width: 840px) {
  .work-with-us h3 {
    font-size: 1.35rem;
  }
  .work-with-us p {
    margin: 0;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
