@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;
  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;
  }
}

.img-responsive {
  max-width: 100%;
}

.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);
}

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: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 #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;
}
header nav ul li a:visited {
  color: white;
  text-decoration: none;
}
header nav ul li a:hover {
  text-decoration: none;
  color: #f06e51;
}
header nav .button-sm {
  padding: 10px 18px;
  min-height: unset;
}

.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);
}

main section {
  padding: 90px 0 0 0;
}
@media only screen and (max-width: 900px) {
  main section {
    padding-top: 45px;
  }
}
main #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) {
  main #hero {
    align-items: flex-end;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  main #hero {
    min-height: 400px;
  }
}
main #hero .hero-wrapper {
  max-width: 1290px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
main #hero h1 {
  font-size: 62px;
  line-height: 70px;
}
@media only screen and (max-width: 700px) {
  main #hero h1 {
    font-size: 52px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 500px) {
  main #hero h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
main #hero p {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 700px) {
  main #hero p {
    font-size: 18px;
    line-height: 27px;
  }
}
main #goals .card {
  border: 1px solid #e2e2e2;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.27);
  border-radius: 25px;
  padding: 30px;
}
@media only screen and (max-width: 992px) {
  main #goals .card {
    margin-bottom: 30px;
  }
}
main #goals .card img {
  max-width: 100px;
  width: 100%;
}
main #goals h2 {
  font-weight: 600;
}
main #goals p {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
main #choose-us .choose-icons.one {
  margin-bottom: 40px;
}
main #choose-us .choose-icons img {
  margin: 0 auto;
  max-width: 100%;
}
main #choose-us .choose-icons .c-icon {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  background: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.27);
  border: 1px solid #e2e2e2;
}
main #choose-us .choose-icons p {
  margin-top: 20px;
}
main #reimagine.founder-bio {
  padding-bottom: 90px;
}
@media only screen and (max-width: 970px) {
  main #reimagine.founder-bio {
    padding-bottom: 45px;
  }
}
main #reimagine.founder-bio .wrapper {
  margin-bottom: 0;
}
@media only screen and (max-width: 700px) {
  main #reimagine.founder-bio .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 850px) {
  main #reimagine.founder-bio #sharina-img {
    max-width: 100%;
  }
}
main #reimagine .wrapper {
  max-width: 1100px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 900px) {
  main #reimagine .wrapper {
    max-width: 750px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
main #reimagine .wrapper .grid {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: auto;
  grid-gap: 40px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 970px) {
  main #reimagine .wrapper .grid {
    grid-template-columns: 50% 1fr;
  }
}
@media only screen and (max-width: 850px) {
  main #reimagine .wrapper .grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
main #reimagine .wrapper .grid.left {
  grid-template-columns: 1fr 60%;
}
@media only screen and (max-width: 970px) {
  main #reimagine .wrapper .grid.left {
    grid-template-columns: 1fr 50%;
  }
}
@media only screen and (max-width: 850px) {
  main #reimagine .wrapper .grid.left {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
main #reimagine .wrapper .grid.right {
  grid-template-areas: "col-1 col-2";
}
main #reimagine .wrapper .grid.right .item:nth-child(1) {
  grid-area: col-1;
}
main #reimagine .wrapper .grid.right .item:nth-child(2) {
  grid-area: col-2;
}
@media only screen and (max-width: 850px) {
  main #reimagine .wrapper .grid.right {
    grid-template-areas: "col-2" "col-1";
  }
}
@media only screen and (max-width: 850px) {
  main #reimagine .wrapper .grid .item .img-responsive {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 600px) {
  main #reimagine .wrapper .grid .item .img-responsive {
    max-width: 300px;
  }
}
main #reimagine .wrapper .app-store {
  display: grid;
  grid-template-columns: 200px 200px;
  grid-template-rows: auto;
  grid-gap: 20px;
}
@media only screen and (max-width: 900px) {
  main #reimagine .wrapper .app-store {
    grid-template-columns: 150px 150px;
  }
}
@media only screen and (max-width: 600px) {
  main #reimagine .wrapper .app-store {
    grid-template-columns: 130px 130px;
  }
}
@media only screen and (max-width: 500px) {
  main #reimagine .wrapper .app-store {
    grid-template-columns: 200px;
    grid-template-rows: auto auto;
  }
}
main #reimagine .wrapper .app-store img {
  max-width: 100%;
  -webkit-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}
main #reimagine .wrapper .app-store img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
main #improves {
  padding: 60px 0;
}
main #improves h2 {
  font-weight: 600;
  margin: 0 auto;
  font-size: 39px;
  line-height: 50px;
}
@media only screen and (max-width: 700px) {
  main #improves h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 480px) {
  main #improves h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
main #connects .wrapper {
  max-width: 1100px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 900px) {
  main #connects .wrapper {
    max-width: 750px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 600px) {
  main #connects .wrapper {
    margin-bottom: 30px;
  }
}
main #connects .wrapper .grid {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: auto;
  grid-gap: 40px;
  align-items: center;
  justify-content: center;
}
main #connects .wrapper .grid.left {
  grid-template-columns: 1fr 60%;
}
@media only screen and (max-width: 900px) {
  main #connects .wrapper .grid.left {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
main #connects ol {
  font-size: 18px;
  line-height: 28px;
  list-style: none;
  counter-reset: circle-counter;
  padding-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  main #connects ol {
    padding-left: 0;
  }
}
main #connects ol li {
  counter-increment: circle-counter;
  position: relative;
  padding-left: 50px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  main #connects ol li {
    padding-bottom: 20px;
    padding-left: 40px;
  }
}
main #connects ol li:before {
  content: counter(circle-counter);
  background: #308d85;
  color: white;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  width: 40px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-weight: 600;
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 900px) {
  main #connects ol li:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
main .blog-news {
  padding-top: 45px;
}
@media only screen and (max-width: 900px) {
  main .blog-news {
    padding-top: 0;
  }
}
main .blog-news .wrapper {
  max-width: 1100px;
}
@media only screen and (max-width: 900px) {
  main .blog-news .wrapper {
    max-width: 550px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
main .blog-news .browse-all {
  margin-top: 45px;
}
main .blog-news .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 40px;
  justify-content: center;
}
@media only screen and (max-width: 900px) {
  main .blog-news .grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
}
main .blog-news .blog-card {
  padding: 10px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.27);
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  position: relative;
}
main .blog-news .blog-card .type-tag {
  background: #308d85;
  font-size: 12px;
  color: white;
  padding: 3px 11px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  z-index: 2;
  margin: 0;
  font-weight: 600;
  left: 0;
  top: 25px;
  letter-spacing: 1px;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.4117647059);
}
main .blog-news .blog-card .blog-detail {
  padding: 20px 10px 10px 10px;
}
main .blog-news .blog-card .blog-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 20px;
}
main .blog-news .blog-card .blog-copy {
  font-size: 14px;
  line-height: 17px;
  text-align: left;
}
main .blog-news .blog-card .blog-img img {
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 150px;
}
main .blog-news .blog-card .button-sm {
  padding: 8px 25px;
}
main #blog {
  padding-bottom: 90px;
}
main #news {
  padding-top: 90px;
}
main #end-demo {
  padding: 60px 0;
}

footer {
  background: #ecf0f1;
  padding: 90px 0;
  text-align: left;
}
@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;
}
@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;
  }
}

body.blog-template .blog-body-copy .type-tag {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 5px;
  background: #308d85;
  display: inline-block;
  color: white;
  padding: 2px 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
body.blog-template .blog-body-copy h1 {
  margin-bottom: 0;
  padding-bottom: 50px;
  border-bottom: 1px solid #308d85;
}
body.blog-template .blog-body-copy p {
  font-size: 18px;
  line-height: 40px;
  color: black;
}
body.blog-template .blog-body-copy .posted {
  margin-top: 30px;
  font-weight: 400;
}
body.blog-template .blog-body-copy .blog-full-width {
  width: 100%;
  margin: 20px 0;
  height: 300px;
  object-fit: cover;
}
body.blog-template .blog-body-copy .blog-full-width.tall {
  height: 400px;
}
body.blog-template .blog-body-copy h4 {
  text-transform: uppercase;
  margin-top: 40px;
}
body.blog-template .browse-all {
  margin-top: 0;
}

body.tribe #hero .hero-wrapper h1 {
  max-width: 500px;
  width: 100%;
}
body.tribe #hero .hero-wrapper p {
  max-width: 500px;
  width: 100%;
}
body.tribe #our-team h2, body.tribe #our-partners h2 {
  margin-bottom: 45px;
}
body.tribe #our-partners {
  padding-bottom: 30px;
}
body.tribe #our-partners .grid.team-pics {
  align-items: center;
}
@media only screen and (max-width: 660px) {
  body.tribe #our-partners .grid.team-pics {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-gap: 15px;
  }
}
@media only screen and (max-width: 475px) {
  body.tribe #our-partners .grid.team-pics {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}
body.tribe .grid.team-pics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  grid-gap: 40px;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 660px) {
  body.tribe .grid.team-pics {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-gap: 15px;
  }
}
@media only screen and (max-width: 475px) {
  body.tribe .grid.team-pics {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}
body.tribe .grid.team-pics .item {
  text-align: center;
}
body.tribe .grid.team-pics .item img {
  max-width: 80%;
}
body.tribe .grid.team-pics .t-name {
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 15px;
}
@media only screen and (max-width: 660px) {
  body.tribe .grid.team-pics .t-name {
    font-size: 15px;
  }
}
body.tribe .grid.team-pics .t-name a {
  color: black;
  text-decoration: underline;
}
body.tribe .grid.team-pics .t-name a:hover {
  text-decoration: underline;
  color: #f06e51;
}
body.tribe .grid.team-pics .t-title {
  font-size: 15px;
  line-height: 17px;
}
@media only screen and (max-width: 660px) {
  body.tribe .grid.team-pics .t-title {
    font-size: 12px;
    line-height: 15px;
  }
}
body.tribe #improves h2 {
  font-size: 30px;
  line-height: 40px;
  font-style: italic;
}

body.contact h5 {
  text-transform: uppercase;
}
body.contact #contact-header {
  text-align: center;
}
body.contact #contact-form {
  padding-top: 0;
  padding-bottom: 90px;
}
body.contact #contact-form form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
body.contact #contact-form div.elem-group {
  margin: 20px 0;
}
body.contact #contact-form div.elem-group:nth-child(1) {
  margin-top: 0;
}
body.contact #contact-form label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  padding-bottom: 4px;
  font-size: 14px;
}
body.contact #contact-form input, body.contact #contact-form select, body.contact #contact-form textarea {
  border-radius: 5px;
  border: 1px solid #757575;
  box-sizing: border-box;
  font-size: 18px;
  font-family: "Source Sans Pro", sans-serif;
  width: 100%;
  padding: 8px;
}
body.contact #contact-form textarea {
  height: 170px;
}
body.contact #contact-form.contact-php {
  text-align: center;
  padding-top: 90px;
  min-height: 400px;
}
body.contact #contact-form.contact-php p, body.contact #contact-form.contact-php h2, body.contact #contact-form.contact-php h5 {
  text-align: center;
}
body.contact #contact-form.contact-php h5 {
  color: #308d85;
  margin-bottom: 20px;
}
body.contact #contact-form.contact-php h2 {
  color: black;
}
body.contact #contact-form .contact-form-wrapper {
  padding-left: 200px;
  padding-right: 200px;
}
@media screen and (max-width: 991px) {
  body.contact #contact-form .contact-form-wrapper {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
/*# sourceMappingURL=styles.css.map */
