@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap");
.mb-60 {
  margin-bottom: 60px;
}

.mb-30 {
  margin-bottom: 30px;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.42857143;
  color: #757575;
  margin-top: 80px;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0 0 16px 0;
}

h1 {
  font-size: 62px;
  line-height: 70px;
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
}

h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 600;
}
@media only screen and (max-width: 700px) {
  h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

h3 {
  font-size: 40px;
  line-height: 48px;
}

h4 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
@media only screen and (max-width: 700px) {
  h5 {
    font-size: 18px;
    line-height: 22px;
  }
}

h6 {
  font-size: 12px;
  line-height: 16px;
}

p {
  font-size: 18px;
  line-height: 26px;
}

.f-white {
  color: white;
}

.f-green {
  color: #4b8782;
}

.f-gray {
  color: #757575;
}

.f-black {
  color: black;
}

.f-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.f-light {
  font-weight: 300;
}

.f-reg {
  font-weight: 400;
}

.f-semib {
  font-weight: 600;
}

.f-bold {
  font-weight: 700;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.wrapper {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 850px) {
  .wrapper {
    max-width: 750px;
  }
}

.green-gradient {
  background: rgb(48, 141, 133);
  background: -moz-linear-gradient(90deg, rgb(48, 141, 133) 0%, rgb(80, 176, 168) 100%);
  background: -webkit-linear-gradient(90deg, rgb(48, 141, 133) 0%, rgb(80, 176, 168) 100%);
  background: linear-gradient(90deg, rgb(48, 141, 133) 0%, rgb(80, 176, 168) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#308d85",endColorstr="#50b0a8",GradientType=1);
}

.orange-gradient {
  background: rgb(242, 78, 42);
  background: -moz-linear-gradient(90deg, rgb(242, 78, 42) 0%, rgb(240, 110, 81) 100%);
  background: -webkit-linear-gradient(90deg, rgb(242, 78, 42) 0%, rgb(240, 110, 81) 100%);
  background: linear-gradient(90deg, rgb(242, 78, 42) 0%, rgb(240, 110, 81) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f24e2a",endColorstr="#f06e51",GradientType=1);
}

.button {
  text-transform: uppercase;
  color: white;
  display: inline-block;
  border: none;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}
.button:visited {
  color: white;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
  color: white;
}

.button-sm {
  padding: 15px 25px;
}

.button-med {
  padding: 15px 40px;
  font-size: 16px;
}

.button-lrg {
  font-size: 20px;
  padding: 15px 55px;
}
@media only screen and (max-width: 700px) {
  .button-lrg {
    font-size: 18px;
    padding: 15px 35px;
  }
}

.button-orange {
  background: rgb(242, 78, 42);
  background: -moz-linear-gradient(90deg, rgb(242, 78, 42) 0%, rgb(240, 110, 81) 100%);
  background: -webkit-linear-gradient(90deg, rgb(242, 78, 42) 0%, rgb(240, 110, 81) 100%);
  background: linear-gradient(90deg, rgb(242, 78, 42) 0%, rgb(240, 110, 81) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f24e2a",endColorstr="#f06e51",GradientType=1);
  -webkit-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}

.button-orange:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.cover-area-head h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}

#hero {
  background-image: url("../img/hero-bg.jpeg");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}
@media only screen and (max-width: 700px) {
  #hero {
    align-items: flex-end;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  #hero {
    min-height: 400px;
  }
}
#hero .hero-wrapper {
  max-width: 1290px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
#hero h1 {
  font-size: 62px;
  line-height: 70px;
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  #hero h1 {
    width: 70%;
  }
}
@media only screen and (max-width: 700px) {
  #hero h1 {
    font-size: 52px;
    line-height: 60px;
    width: 80%;
  }
}
@media only screen and (max-width: 500px) {
  #hero h1 {
    font-size: 30px;
    line-height: 38px;
    width: 100%;
  }
}
#hero p {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 700px) {
  #hero p {
    font-size: 18px;
    line-height: 27px;
  }
}

header {
  background: #308d85;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0 20px;
}
header .nav-wrapper {
  padding: 0;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
header .nav-logo {
  display: inline-block;
}
@media only screen and (max-width: 900px) {
  header .desktop-nav {
    display: none;
  }
}
header .mobile-nav {
  display: none;
}
@media only screen and (max-width: 900px) {
  header .mobile-nav {
    display: block;
  }
}
header .mobile-nav #mobile-menu {
  border: 1px solid white;
  padding: 5px;
}
header .mobile-nav #mobile-menu img {
  max-width: 100%;
  width: 30px;
  height: auto;
  cursor: pointer;
  padding: 2px;
}
header .mobile-nav #mobile-menu img:hover {
  cursor: pointer;
}
header .mobile-drawer {
  height: 100vh;
  width: 220px;
  background: #308d85;
  color: white;
  padding: 25px 10px 10px 10px;
  box-shadow: -5px 0px 5px 0px rgba(0, 0, 0, 0.3098039216);
  position: fixed;
  top: 0;
  right: -220px;
  z-index: 10000;
  -webkit-transition: right 0.25s ease-in-out;
  transition: right 0.25s ease-in-out;
}
header .mobile-drawer.show {
  right: 0;
}
header .mobile-drawer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header .mobile-drawer ul li {
  padding: 10px;
  display: block;
  list-style-type: none;
}
header .mobile-drawer ul li a {
  text-decoration: none;
  color: white;
  font-weight: 700;
}
header .mobile-drawer ul li a:visited {
  color: white;
  text-decoration: none;
}
header .mobile-drawer ul li a:hover {
  text-decoration: none;
  color: #f06e51;
}
header .mobile-drawer ul li .button-sm {
  padding: 10px 20px;
}
header .mobile-drawer ul li .button-sm:hover {
  color: white;
}
header .mobile-drawer ul li .button-sm:visited {
  color: white;
  text-decoration: none;
}
header .mobile-drawer #menu-close {
  cursor: pointer;
  width: 25px;
  border: 0;
  margin-bottom: 20px;
  margin-left: 5px;
}
header nav {
  display: inline-block;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header nav ul li {
  padding: 10px;
  display: inline;
  list-style-type: none;
}
header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
header nav ul li a:hover {
  text-decoration: none;
  color: #f06e51;
}
header nav ul li a:visited {
  color: white;
  text-decoration: none;
}
header nav .button-sm {
  padding: 10px 18px;
  min-height: unset;
}

footer {
  background: #ecf0f1;
  padding: 90px 0;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 400px) {
  footer {
    padding: 30px 0;
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  footer .col-xs-6 {
    width: 100%;
  }
}
footer p {
  font-size: 15px;
  line-height: 22px;
}
@media only screen and (max-width: 900px) {
  footer p {
    font-size: 13px;
    line-height: 17px;
  }
}
footer p.copyright {
  font-weight: 600;
}
footer p a {
  color: #757575;
  text-decoration: none;
}
footer p a:hover {
  text-decoration: none;
  color: #f06e51;
}
footer p a:visited {
  color: #F24E2A;
}
footer h5 {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 28px;
}
@media only screen and (max-width: 400px) {
  footer h5 {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 768px) {
  footer h5.xs-h5 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 400px) {
  footer h5.xs-h5 {
    margin-top: 15px;
  }
}
footer .button-sm {
  padding: 10px 30px;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
footer ul li {
  color: #757575;
  list-style-type: none;
  padding: 0 0 10px 0;
  font-size: 15px;
  line-height: 22px;
}
@media only screen and (max-width: 900px) {
  footer ul li {
    font-size: 13px;
    line-height: 17px;
  }
}
footer ul li a {
  color: #757575;
  text-decoration: none;
}
footer ul li a:hover {
  color: #f06e51;
  text-decoration: none;
}
footer .socials {
  margin-top: 25px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 50px 50px 50px;
  grid-template-rows: 50px;
}
@media only screen and (max-width: 900px) {
  footer .socials {
    grid-template-columns: 40px 40px 40px;
    grid-template-rows: 40px;
  }
}
@media only screen and (max-width: 768px) {
  footer .socials {
    grid-template-columns: 35px 35px 35px;
    grid-template-rows: 35px;
  }
}
@media only screen and (max-width: 400px) {
  footer .socials {
    justify-content: center;
    margin-top: 10px;
  }
}
footer .socials .item {
  background: white;
  border-radius: 100%;
  border: 1px solid #e2e2e2;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.27);
  -webkit-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}
footer .socials .item:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
footer .socials .item img {
  max-width: 100%;
  padding: 3px;
}
@media only screen and (max-width: 768px) {
  footer #f-col3 {
    clear: both;
  }
}

div.our-team-content {
  padding: 0 20px;
}

#resources-blurb {
  padding-top: 80px;
}
#resources-blurb h2 {
  font-size: 34px;
  line-height: 42px;
  margin-top: 40px;
}
#resources-blurb h2:last-child {
  margin: 0;
}
#resources-blurb hr {
  margin-top: 60px;
  margin-bottom: 60px;
}

/*# sourceMappingURL=new-nav.css.map */
