@charset "UTF-8";

html {
  width: 100%;
  max-width: 100%;
}

body {
  position: relative;
  font-family: "Source Sans 3", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  background: #fff;
  width: 100%;
  max-width: 100vw;
  border: 0 none;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 1;
  -webkit-transition: opacity, background-color;
  transition: opacity, background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

.hide-body-animation body {
  opacity: 0;
}

body:before {
  z-index: -1;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  display: block;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity, visibility;
  transition: opacity, visibility;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.mobile-open body:before {
  z-index: 9999999999;
  width: 100%;
  height: 100vh;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.mobile-style body:before {
  opacity: 1;
  visibility: visible;
}

a,
button {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: color, background, border;
  transition: color, background, border;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

a:hover,
button:hover {
  color: #040404;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: bold;
  font-style: normal;
  font-family: "baskerville-urw", serif;
  text-transform: none;
  color: #040404;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 86px;
  line-height: normal;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: normal;
  color: #040404;
  margin-bottom: 18px;
}

h2.fancy-title {
  position: relative;
  font-size: 38px;
  line-height: 1.4736842105;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #786444;
  padding: 0 0 14px 21px;
  margin: 35px 0 44px;
  border-left: 2px solid #786444;
  border-bottom: 2px solid #786444;
}

h2.fancy-title:before,
h2.fancy-title:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #786444;
}

h2.fancy-title:after {
  top: auto;
  bottom: -4px;
  left: auto;
  right: -4px;
}

h3 {
  font-size: 24px;
  line-height: normal;
  font-family: "baskerville-urw", serif;
  font-weight: 700;
  color: #786444;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h4 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  color: #00573D;
  font-family: "Source Sans 3", sans-serif;
  margin-bottom: 5px;
}

.leading {
  font-size: 19px;
  line-height: normal;
  font-weight: 700;
  color: #00573D;
}

.leading-dark {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.012px;
  font-weight: 700;
  color: #040404;
}

b,
strong {
  font-weight: bold;
}

figure img {
  width: auto;
  height: auto;
}

figure.img img {
  max-width: 100%;
}

figure.full img {
  width: 100%;
}

figure.frame img {
  width: 100%;
  border: 11px solid #786444;
}

figure.cover {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

figure.cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

figure.sig {
  font-size: 20px;
  line-height: normal;
  font-family: "baskerville-urw", serif;
  color: #040404;
  margin-top: 38px;
}

figure.sig img {
  max-width: 100%;
  margin-bottom: 22px;
  display: block;
}

figure.sig strong {
  display: block;
}

blockquote.lines {
  position: relative;
  font-size: 20px;
  line-height: 1.2666666667;
  font-weight: 600;
  font-family: "baskerville-urw", serif;
  color: #786444;
  padding: 0 0 50px 50px;
  margin: 35px 0 44px;
  border-left: 2px solid #786444;
  border-bottom: 2px solid #786444;
}

blockquote.lines:before,
blockquote.lines:after {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: #786444;
}

blockquote.lines:after {
  top: auto;
  bottom: -7px;
  left: auto;
  right: -7px;
}

blockquote.lines q:before {
  position: absolute;
  top: -6px;
  left: 10px;
  font-size: 60px;
  line-height: 1;
}

cite {
  position: relative;
  font-size: 20px;
  line-height: normal;
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-top: 18px;
  padding-left: 15px;
  display: block;
}

cite:before {
  content: "–";
  position: absolute;
  top: 0;
  left: 0;
}

.button {
  position: relative;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
  color: #fff;
  text-align: left;
  padding: 15px 20px;
  text-decoration: none !important;
  border-radius: 40px;
  background: #00573D;
  display: inline-block;
  -webkit-transition: color, background-color;
  transition: color, background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.button.btn-square {
  border-radius: 0;
}

.button.btn-white {
  color: #040404;
  background: #fff;
}

.button:hover {
  color: #fff;
  background: #786444;
}

.button:hover.btn-white {
  color: #fff;
  background: #00573D;
}

.button:hover .icon-arrow:after {
  right: -5px;
}

.button:hover .icon-download:before {
  opacity: 0;
}

.button:hover .icon-download:after {
  opacity: 1;
}

.icon-arrow {
  position: relative;
  display: block;
  padding-right: 20px;
}

.icon-arrow:after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 10.8px;
  height: 12px;
  display: block;
  background: url("../images/icon-arrow.svg") no-repeat center center/100% 100%;
  -webkit-transition: right;
  transition: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.icon-download {
  position: relative;
  display: block;
  padding-right: 20px;
}

.icon-download:before,
.icon-download:after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 10.8px;
  height: 12px;
  display: block;
  opacity: 1;
  background: url("../images/icon-download.svg") no-repeat center center/100% 100%;
  -webkit-transition: opacity;
  transition: opacity;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.icon-download:after {
  opacity: 0;
  background-image: url("../images/icon-download-white.svg");
}

.footnotes {
  position: relative;
  font-size: 14px;
  line-height: normal;
  margin-left: 20px;
}

.footnotes .key {
  position: absolute;
  top: 0;
  right: calc(100% + 2px);
  font-size: 0.8em;
  white-space: nowrap;
  display: block;
}

#header {
  z-index: 9999999999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 33px 0 0;
}

#header .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

#logo {
  position: relative;
  width: 240px;
  height: 130px;
  max-width: calc(100% - 80px);
  float: left;
}

#logo .logo {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 239.814px;
}

#logo .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#header-menu {
  position: relative;
  width: calc(100% - 250px);
  padding: 43px 0 0;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#header-menu .menu-column {
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

#header-menu .menu-column-download {
  z-index: 1;
  position: relative;
  width: 120px;
  max-width: 120px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 120px;
  flex: 1 0 120px;
}

#header-menu .menu-column-navicon {
  width: 55px;
  max-width: 55px;
  padding-left: 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 55px;
  flex: 1 0 55px;
}

.header-button {
  position: relative;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
  color: #040404;
  padding: 12px 14px;
  text-decoration: none !important;
  background: #fff;
  display: block;
  -webkit-transition: color, background-color;
  transition: color, background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.header-button:hover {
  color: #fff;
  background: #00573D;
}

.header-button:hover .icon-download:before {
  opacity: 0;
}

.header-button:hover .icon-download:after {
  opacity: 1;
}

#main-menu {
  z-index: 10;
}

#main-menu .menu {
  font-size: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#main-menu .menu-link {
  text-decoration: none !important;
}

#main-menu .mobile-download {
  display: none;
}

#main-menu .mobile-download .header-button {
  color: #fff;
  margin-top: 50px;
  background: #00573D;
}

#main-menu .mobile-download .header-button .icon-download:before {
  opacity: 0;
}

#main-menu .mobile-download .header-button .icon-download:after {
  opacity: 1;
}

#main-menu .mobile-download .header-button:hover {
  background: #786444;
}

#navicon {
  z-index: 20;
  position: relative;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 40px;
  color: #040404;
  display: block;
  border: 0 none;
  background: #fff;
  -webkit-transition: background-color;
  transition: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

#navicon:hover {
  background: #00573D;
}

#navicon:hover .navicon,
#navicon:hover .navicon:before,
#navicon:hover .navicon:after {
  background: #fff;
}

.mobile-style #navicon:hover .navicon {
  background: transparent;
}

.mobile-style #navicon {
  position: fixed;
  right: 20px;
  top: 76px;
  background: #00573D;
}

.mobile-style #navicon .navicon {
  background: transparent;
}

.mobile-style #navicon .navicon:before,
.mobile-style #navicon .navicon:after {
  background: #fff;
}

.navicon {
  top: calc(50% - 2px);
}

.navicon,
.navicon:before,
.navicon:after {
  position: absolute;
  left: calc(50% - 15px);
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #00573D;
  display: block;
  -webkit-transition: top, background-color, -webkit-transform;
  transition: top, background-color, -webkit-transform;
  transition: top, transform, background-color;
  transition: top, transform, background-color, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.navicon:before,
.navicon:after {
  content: "";
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.navicon:before {
  top: -8px;
}

.navicon:after {
  top: 8px;
}

.header-light .navicon,
.header-light .navicon:before,
.header-light .navicon:after {
  background: #fff;
}

.mobile-style .navicon {
  background: transparent;
}

.mobile-style .navicon:before,
.mobile-style .navicon:after {
  top: 0;
}

.mobile-style .navicon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-style .navicon:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.homepage-panels {
  color: #040404;
  text-align: center;
}

.homepage-panels p {
  margin-bottom: 18px;
}

.message-headshot {
  z-index: 999;
  position: relative;
  width: 408px;
  max-width: 50%;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 700;
  color: #040404;
  padding: 19px 24px 17px;
  margin: -310px -289px 10px 45px;
  float: right;
  background: #F5F3EB;
}

.message-headshot img {
  width: 100%;
  margin-bottom: 8px;
  display: block;
}

.solutions-slider-navigation {
  position: relative;
  margin-top: 60px;
}

.solutions-slider-navigation:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  background: #786444;
}

#solutions-slider-navigation {
  position: relative;
  font-size: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#solutions-slider-navigation .button {
  z-index: 20;
  color: #040404;
  text-align: center;
  margin: 5px;
  padding: 20px 40px;
  background: #fff;
  border: 2px solid #786444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#solutions-slider-navigation .button > * {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

#solutions-slider-navigation .button:hover {
  color: #fff;
  background: #786444;
}

#solutions-slider-navigation .button.active {
  color: #fff;
  background: #040404;
}

#solutions-slider {
  color: #040404;
  line-height: normal;
}

#solutions-slider .slide-bold {
  color: #555;
  font-weight: bold;
}

#solutions-slider p + ul {
  margin-top: -10px;
}

#solutions-slider ul {
  padding-left: 23px;
}

#solutions-slider ul ul {
  list-style: disc;
}

#solutions-slider .slide-item {
  padding-top: 75px;
}

.svg-icon {
  position: relative;
  width: 32.643px;
  height: 18.781px;
  margin: 20px auto 0;
  display: block;
}

.svg-icon path {
  -webkit-transition: fill;
  transition: fill;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.testimonials {
  margin-top: -110px;
  margin-bottom: 70px;
}

.testimonials .row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonials .row .col > * {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.testimonials a {
  min-height: 240px;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  font-family: "baskerville-urw", serif;
  color: #786444;
  text-align: center;
  background: #F5F3EB;
  padding: 20px;
  margin-bottom: 16px;
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.testimonials a .testimonial-title {
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.testimonials a:hover {
  color: #fff;
  background: #786444;
}

.testimonials a:hover path {
  fill: #fff;
}

.testimonials-archive .row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonials-archive .row .col > * {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.testimonials-archive a {
  min-height: 158px;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  font-family: "baskerville-urw", serif;
  color: #040404;
  text-align: center;
  background: #fff;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #786444;
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.testimonials-archive a .testimonial-title {
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.testimonials-archive a:hover {
  color: #fff;
  background: #786444;
}

.table-highlights {
  color: #040404;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  border-bottom: 2px solid #786444;
}

.table-highlights > :not(:first-child) {
  border: 0 none;
}

.table-highlights > :not(caption) > * > * {
  border: 0 none;
}

.table-highlights td,
.table-highlights th {
  padding: 10px 16px;
  vertical-align: bottom;
}

.table-highlights td:first-child,
.table-highlights th:first-child {
  padding-left: 30px;
  text-indent: -15px;
  max-width: 440px;
}

.table-highlights td:first-child .td,
.table-highlights th:first-child .td {
  max-width: none;
  min-width: 200px;
}

.table-highlights td:not(:first-child),
.table-highlights th:not(:first-child) {
  white-space: nowrap;
}

.table-highlights td:nth-child(2),
.table-highlights th:nth-child(2) {
  background: rgba(232, 185, 9, 0.2);
}

.table-highlights td:nth-child(3) .td,
.table-highlights th:nth-child(3) .td {
  max-width: 113px;
}

.table-highlights td:nth-child(4) .td,
.table-highlights th:nth-child(4) .td {
  max-width: 105px;
}

.table-highlights td.ps-0,
.table-highlights th.ps-0 {
  text-indent: 0;
  font-weight: bold;
}

.table-highlights td {
  border: 0 none;
  text-align: right;
}

.table-highlights td:first-child {
  text-align: left;
}

.table-highlights .td {
  position: relative;
  display: block;
  max-width: 113px;
  margin: 0 auto;
  padding: 0 1em;
}

.table-highlights .td-dollar span:before {
  content: "$";
  position: absolute;
  right: calc(100% - 18px);
}

.table-highlights thead th {
  border-top: 2px solid #786444;
  border-bottom: 2px solid #786444;
  text-align: right;
}

.table-highlights thead th:first-child {
  text-align: left;
}

.table-highlights .has-percent {
  display: block;
  margin-right: -16px;
}

.table-highlights .firstline {
  display: block;
  max-width: 470px;
  padding-left: 20px;
  text-indent: -20px;
  white-space: normal;
}

.number-stats {
  text-align: center;
  margin-top: 96px;
}

.number-stats .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.number-stats .col {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.number {
  font-size: 40px;
  line-height: 1.1;
  font-family: "baskerville-urw", serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #040404;
  text-transform: uppercase;
}

.number-text {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  color: #040404;
  text-transform: uppercase;
}

.leader {
  color: #040404;
}

.leader + .leader {
  margin-top: 25px;
}

.leader .big {
  font-weight: bold;
  font-size: 19px;
  color: #013E2C;
}

.esg-photos figure {
  margin: 0;
  padding: 90% 0 0;
}

.esg-hero {
  margin: 30px 0 0;
  padding: 30% 0 0;
}

.esg-title {
  position: relative;
  text-align: center;
  padding: 0 20px;
  margin: 110px 0 42px;
}

.esg-title:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  background: #786444;
}

.esg-title .title-button {
  position: relative;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  color: #fff;
  padding: 20px 40px;
  display: inline-block;
  background: #040404;
  border: 2px solid #786444;
  border-radius: 65px;
}

.monial-panel {
  position: relative;
}

.monial-panel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  display: block;
  background: #F5F3EB;
}

.monial-panel .panel-body {
  position: relative;
  font-size: 20px;
  line-height: 1.75;
  font-weight: bold;
  padding: 46px 44px 0;
}

.monial-panel.no-image:before {
  height: 100%;
}

.monial-panel.no-image .panel-body {
  padding-bottom: 46px;
}

.push-right {
  width: 50%;
  margin-left: 15px;
  float: right;
}

.push-right img {
  max-width: 100%;
}

.testimonial-figures {
  margin-top: 50px;
}

.testimonial-figures figure {
  height: 400px;
}

.testimonial-figures.testimonial-figures-style2 {
  margin-top: 0;
}

.testimonial-figures.testimonial-figures-style2 figure {
  height: 310px;
}

.equestrian {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.equestrian img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1456px;
}

.wrapper.thin {
  max-width: 880px;
}

.wrapper.extra {
  max-width: 964px;
}

.wrapper.wide1 {
  max-width: 1168px;
}

.wrapper.wide2 {
  max-width: 1116px;
}

.wrapper.wide {
  max-width: 1487px;
}

.row.row9 {
  margin-left: -9px;
  margin-right: -9px;
}

.row.row9 > * {
  padding-left: 9px;
  padding-right: 9px;
}

.row.row18 {
  margin-left: -18px;
  margin-right: -18px;
}

.row.row18 > * {
  padding-left: 18px;
  padding-right: 18px;
}

.row.row48 {
  margin-left: -20px;
  margin-right: -20px;
}

.row.row48 > * {
  padding-left: 20px;
  padding-right: 20px;
}

.row.row50 {
  margin-left: -20px;
  margin-right: -20px;
}

.row.row50 > * {
  padding-left: 20px;
  padding-right: 20px;
}

.row .equal-columns > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row .equal-columns > * > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row .equal-columns > * > *,
.row .equal-columns > * > * > * {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.row.row-monials-4 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row.row-monials-4 .col {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.row.row-monials-6 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row.row-monials-6 .col {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

#page-header {
  position: relative;
  padding: 240px 0 111px;
  min-height: 550px;
  background: url("../images/page-header.jpg") no-repeat center center/cover #000;
}

.page-index #page-header {
  padding: 200px 0 111px;
  text-align: center;
  min-height: 100vh;
  background-image: url("../images/page-header-homepage.jpg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.page-index #page-header .content-wrapper {
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.page-index #page-header h1 {
  max-width: 1154px;
  margin: 0 auto 60px;
}

#scrolldown {
  border: 0 none;
  background: transparent;
}

.entry-content {
  z-index: 10;
  position: relative;
  padding: 70px 0;
}

.entry-content ul ul {
  list-style: disc;
}

.page-testimonial .entry-content {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.content-bold {
  font-weight: bold;
}

.content-corporate {
  line-height: 1.5625;
}

.content-corporate p + h4 {
  margin-top: 35px;
}

.content-shade {
  position: relative;
}

.content-shade:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 314px;
  opacity: 0.6;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(232, 185, 9, 0.5)), to(rgba(172, 147, 76, 0)));
  background: linear-gradient(180deg, rgba(232, 185, 9, 0.5) 0%, rgba(172, 147, 76, 0) 100%);
}

.panel {
  margin-bottom: 20px;
}

.panel .panel-body {
  padding: 65px 11%;
  background: #F5F3EB;
}

.table-responsive {
  margin-bottom: 56px;
}

.table {
  margin: 0;
}

.table.table-style1 {
  font-size: 16px;
  font-weight: bold;
  text-align: right;
}

.table.table-style1 > :not(caption) > * > * {
  padding: 13px 16px 17px;
  border-color: #D9D9D9;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.table.table-style1 > :not(caption) > * > *:first-child {
  border-top: 0 none;
}

.table.table-style1 th {
  color: #fff;
  background: #00573D;
  border: 0 none;
  border-bottom: 0 none;
}

.table.table-style1 th,
.table.table-style1 td {
  padding: 13px 16px 17px;
}

.table.table-style1 th:first-child,
.table.table-style1 td:first-child {
  text-align: left;
  max-width: 150px;
}

.table.table-style2 {
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}

.table.table-style2 > :not(caption) > * > * {
  border-bottom-width: 2px;
  border-bottom-color: #786444;
}

.table.table-style2 th,
.table.table-style2 td {
  padding: 15px 0.5rem;
}

.table.table-style2 th:not(:first-child) {
  color: #fff;
  background: #040404;
}

.table.table-style2 tr td:first-child {
  max-width: 210px;
  text-align: left;
  padding-left: 0;
}

.table.table-footnote {
  color: #555;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  border: 2px solid #555;
  margin-bottom: 10px;
}

.table.table-footnote td:not(:first-child) {
  border-left: 2px solid #555;
}

.hero {
  margin: 40px 0 73px;
  padding: 56px 0 48px;
  background: #F5F3EB;
}

.hero-dark {
  color: #040404;
  overflow: hidden;
  background: #FAF1CE;
}

.chart-title {
  font-size: 36px;
  line-height: 0.7222222222;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  color: #040404;
  margin-bottom: 13px;
}

.chart-subtitle {
  font-size: 16px;
  line-height: 1.625;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  margin-bottom: 17px;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-center .flex-wrap {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-end .flex-wrap {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-evenly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.flex-evenly .flex-wrap {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-around .flex-wrap {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-between .flex-wrap {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.testimonial-navigation {
  margin-top: 70px;
  margin-bottom: 81px;
}

.testimonial-navigation .row {
  margin-left: -5px;
  margin-right: -5px;
}

.testimonial-navigation .row > * {
  padding-left: 5px;
  padding-right: 5px;
}

.testimonial-navigation .button {
  font-size: 14px;
  text-align: center;
  background: #040404;
  border-color: #786444;
  display: block;
}

.testimonial-navigation .button.btn-prev:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 26px;
  width: 10px;
  height: 10px;
  display: block;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  -ms-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
}

.testimonial-navigation .button.btn-next:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 10px;
  height: 10px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

.testimonial-navigation .button:hover {
  color: #fff;
  background: #00573D;
}

.testimonial-navigation .btn-all {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  color: #040404;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  border: 2px solid #786444;
  background: #fff;
}

.testimonial-navigation .btn-all:hover {
  border-color: #00573D;
  background: #00573D;
}

.testimonial-navigation .col.monial-prev {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.testimonial-navigation .col.monial-prev .button {
  text-align: left;
  padding-left: 46px;
}

.testimonial-navigation .col.monial-prev .button i {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.testimonial-navigation .col.monial-next {
  width: 50%;
  max-width: 50%;
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.testimonial-navigation .col.monial-next .button {
  text-align: right;
  padding-right: 46px;
}

.testimonial-navigation .col.monial-next .button i {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.testimonial-navigation .col.monial-all {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

#footer {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  padding: 74px 0 52px;
  background: url("../images/page-footer.jpg") no-repeat center bottom/cover;
}

#footer h2 {
  color: #fff;
}

.footer-top {
  text-align: center;
  margin-bottom: 67px;
}

.footer-top h2 {
  color: #fff;
  margin-bottom: 36px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom a:hover {
  color: #AC934C;
}

.footer-bottom .row > * {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.footer-bottom ul {
  font-size: 0;
  padding: 0;
  margin: 0 -12px;
  list-style: none;
}

.footer-bottom ul li {
  font-size: 14px;
  padding: 0 12px;
  display: inline-block;
}

.d-ib {
  display: inline-block;
}

.rel {
  position: relative;
}

.text-prim {
  color: #786444;
}

.text-accent {
  color: #00573D;
}

.text-dark {
  color: #040404;
}

.align-right {
  width: 100%;
  margin: 0 0 20px;
  text-align: center;
}

.align-right img {
  width: auto;
  max-width: 100%;
}

mark {
  color: red;
  background: pink;
  padding: 3px 5px 0;
}

.z-0 {
  z-index: 0;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.z-15 {
  z-index: 15;
}

.z-20 {
  z-index: 20;
}

.z-25 {
  z-index: 25;
}

.z-30 {
  z-index: 30;
}

@media (min-width: 567px) {
  .number-stats .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .number-stats .col {
    width: auto;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }

  .number-stats .col:not(:last-child):before {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    width: 4px;
    height: 120px;
    max-height: 90%;
    display: block;
    background: #00573D;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .row.row-monials-4 .col {
    width: 33.3333333333%;
    max-width: 33.3333333333%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 33.3333333333%;
    flex: 1 0 33.3333333333%;
  }
}

@media screen and (min-width: 567px) {
  .align-right {
    float: right;
    margin-top: 20px;
    margin-left: 15px;
    margin-bottom: 10px;
    width: auto;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  blockquote.lines {
    font-size: 30px;
    padding: 0 0 98px 99px;
  }

  blockquote.lines q:before {
    left: 35px;
    font-size: 75px;
  }

  .number {
    font-size: 50px;
  }

  .row.row-monials-6 .col {
    width: 25%;
    max-width: 25%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
  }

  #page-header {
    padding-top: 270px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .two-columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }

  .two-columns li {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }

  .two-columns.p-break p {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }

  .two-columns.columns-gap {
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-gap: 90px;
  }

  .three-columns {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .three-columns li {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }

  .three-columns.p-break p {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
}

@media (min-width: 992px) {
  h2.h2-large {
    font-size: 66px;
    line-height: normal;
    margin-bottom: 55px;
  }

  .number-text {
    font-size: 32px;
  }

  .leader-columns > *:first-child .leader-column {
    padding-right: 50px;
    border-right: 3px solid #786444;
  }

  .leader-columns > *:last-child .leader-column {
    padding-left: 50px;
  }

  .monial-panel:before {
    height: calc(100% - 180px);
  }

  .row.row-monials-4 .col {
    width: 25%;
    max-width: 25%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
  }

  .row.row-monials-6 .col {
    width: 16.6666666667%;
    max-width: 16.6666666667%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 16.6666666667%;
    flex: 1 0 16.6666666667%;
  }

  .aside {
    max-width: 410px;
    margin-left: auto;
  }

  .testimonial-navigation .button {
    display: inline-block;
  }

  .testimonial-navigation .col.monial-prev {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(50% - 95px);
    max-width: calc(50% - 95px);
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 95px);
    flex: 1 0 calc(50% - 95px);
  }

  .testimonial-navigation .col.monial-next {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: calc(50% - 95px);
    max-width: calc(50% - 95px);
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 95px);
    flex: 1 0 calc(50% - 95px);
  }

  .testimonial-navigation .col.monial-all {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: auto;
    max-width: 190px;
    margin-top: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }

  .footer-bottom .footer-left {
    width: calc(100% - 195px);
    max-width: calc(100% - 195px);
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(100% - 195px);
    flex: 1 0 calc(100% - 195px);
  }

  .footer-bottom .footer-right {
    width: 195px;
    max-width: 195px;
    text-align: right;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 195px;
    flex: 1 0 195px;
  }
}

@media (min-width: 1040px) {
  #header-menu #main-menu {
    width: calc(100% - 120px);
    max-width: calc(100% - 120px);
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(100% - 120px);
    flex: 1 0 calc(100% - 120px);
  }

  #header-menu .menu-column-navicon {
    display: none;
  }

  #main-menu {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #main-menu .menu {
    max-width: 100%;
    padding-right: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  #main-menu .menu-item {
    position: relative;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    text-align: center;
    padding: 0 11px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #main-menu .menu-link {
    color: #fff;
    display: block;
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  #main-menu .menu-link:hover {
    color: #AC934C;
  }

  #main-menu .menu-item-inner {
    position: relative;
    display: block;
  }

  #main-menu .menu-item-active .menu-item-inner:before {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 100%;
    height: 4px;
    display: block;
    background: #AC934C;
    border-radius: 4px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@media (min-width: 1200px) {
  .row.row48 {
    margin-left: -48px;
    margin-right: -48px;
  }

  .row.row48 > * {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1300px) {
  .number {
    font-size: 96px;
  }
}

@media (min-width: 1400px) {
  #main-menu .menu-item-inner br {
    display: none;
  }

  .row.row50 {
    margin-left: -50px;
    margin-right: -50px;
  }

  .row.row50 > * {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1490px) {
  .message-headshot {
    margin-right: -130px;
  }
}

@media (max-width: 1250px) {
  .message-headshot {
    margin-top: -150px;
  }
}

@media (max-width: 1199px) {
  .equestrian {
    padding-top: 80%;
    margin-top: 30px;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
  }

  .equestrian img {
    -o-object-position: center 41%;
    object-position: center 41%;
  }
}

@media (max-width: 1150px) {
  .message-headshot {
    margin-right: -60px;
  }
}

@media (max-width: 1039px) {
  #main-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    display: block;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: opacity, visibility, -webkit-transform;
    transition: opacity, visibility, -webkit-transform;
    transition: transform, opacity, visibility;
    transition: transform, opacity, visibility, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }

  #main-menu .menu-item {
    padding: 10px 0;
  }

  #main-menu .menu-link {
    font-size: 22px;
    font-weight: 600;
    color: #555;
  }

  #main-menu .menu-link:hover {
    color: #040404;
  }

  #main-menu .menu-item-active .menu-link {
    color: #00573D;
  }

  #main-menu .mobile-download {
    display: block;
  }

  .mobile-open #main-menu {
    padding: 200px 20px 50px;
    width: 400px;
    height: 100vh;
    max-width: 90vw;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .mobile-style #main-menu {
    opacity: 1;
    visibility: visible;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@media (max-width: 1010px) {
  .message-headshot {
    margin-right: -20px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 65px;
  }

  .table.table-footnote {
    font-size: 14px;
  }

  .testimonial-navigation .col.monial-prev,
  .testimonial-navigation .col.monial-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .testimonial-navigation .col.monial-prev > .button,
  .testimonial-navigation .col.monial-next > .button {
    width: auto;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-bottom ul {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom ul li {
    margin: 10px 0;
  }

  .footer-bottom .footer-left {
    margin-bottom: 50px;
  }
}

@media (max-width: 900px) {
  .message-headshot {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2.fancy-title {
    font-size: 30px;
  }

  #solutions-slider-navigation .button {
    padding: 10px;
  }

  .testimonials a {
    padding: 10px;
    min-height: 180px;
  }

  .table-highlights .firstline {
    min-width: 40%;
  }

  .table-highlights {
    font-size: 14px;
  }

  .table-highlights .td-dollar span:before {
    right: calc(100% - 14px);
  }

  .esg-photos {
    margin-left: -2px;
    margin-right: -2px;
  }

  .esg-photos > * {
    padding-left: 2px;
    padding-right: 2px;
  }

  .esg-photos figure {
    padding-top: 155%;
  }

  .esg-hero {
    padding-top: 78%;
    margin-top: 4px;
  }

  .esg-title {
    margin-top: 50px;
  }
}

@media (max-width: 566px) {
  .message-headshot {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  #solutions-slider-navigation .button {
    font-size: 14px;
    line-height: 1;
  }

  .testimonial-navigation .btn-all {
    display: block;
  }
}

@media (max-width: 489px) {
  #header-menu .menu-column-download {
    display: none;
  }

  #navicon {
    height: 50px;
  }
}

@media (max-width: 1099px) and (min-width: 1040px) {
  #main-menu .menu-link {
    font-size: 14px;
  }
}
/*# sourceMappingURL=maps/style.css.map */
