/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  height: auto;
  max-width: 100%;
}

svg {
  fill: currentColor;
  height: auto;
  max-width: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e0d0a6;
  margin: 1em auto;
  padding: 0;
}

address {
  font-style: normal;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: #fff;
  color: #231f20;
  font-family: 'Minion Pro', minion-pro, 'Times New Roman', Palatino, Garamond, Georgia, serif;
  font-size: 162.5%;
  font-style: normal;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h2,
.h2 {
  font-size: 36px;
  font-variant: small-caps;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  padding: 0;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  h2,
  .h2 {
    font-size: 50px;
  }
}

h3 {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.75;
  text-align: center;
}

h4 {
  border-bottom: 2px solid #ca7223;
  border-top: 2px solid #ca7223;
  color:#ca7223;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.5;
  margin-top: 2rem;
  padding: 1rem 0;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  h4 {
    font-size: 48px;
  }
}

h5,
.h5 {
  font-size: 30px;
  font-weight: 400;
}

h6,
.h6 {
  font-size: 18px;
  font-weight: 400;
}

a {
  color: #e0d0a6;
}

.skip-link:not(:focus),
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.skip-link:focus {
  background-color: #e0d0a6;
  color: #231f20;
  display: inline-block;
  font-weight: 700;
  left: 50%;
  line-height: 1;
  padding: .8rem 1.25rem 1rem 1.25rem;
  position: absolute;
  text-decoration: none;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}

@media only screen and (min-width: 600px) {
  .skip-link:focus {
    left: 0;
    transform: none;
  }
}

.flow > * + * {
  margin-top: 1em;
}

.header--global {
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

.logo {
  text-decoration: none;
}

.nav-global {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
}

@media only screen and (min-width: 600px) {
  .nav-global {
    display: block;
  }
}

.nav {
  bottom: .5rem;
  display: none;
  position: absolute;
  left: 0;
  opacity: 1;
  right: 0;
  text-align: center;
  transform: translateY(100%);
  visibility: visible;
  z-index: 1;
}

ul.nav {
  margin: 0 auto;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 600px) {
  ul.nav {
    padding-bottom: 0;
  }
}

.hamburger[aria-expanded="true"] + .nav {
  display: block;
}

@media only screen and (min-width: 600px) {
  .nav {
    bottom: auto;
    display: flex;
    justify-content: space-between;
    left: auto;
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    right: auto;
    transform: none;
    text-transform: uppercase;
    width: 910px;
  }
}

.nav a {
  font-size: 16px;
  display: block;
  line-height: 2.75;
  padding: 0 10px;
  position: relative;
  text-decoration: none;
  transition: background-color .25s ease;
}

.nav a:hover,
.nav a:focus {
  color: #ca7223;
}

.nav a::before {
  content: '';
  top: -16px;
  height: 4px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: background-color .25s ease;
}

.nav a::after {
  content: '';
  bottom: -16px;
  height: 4px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: background-color .25s ease;
}

.nav a:hover::before {
  background-color: #ca7223;
}

.logo--mobile {
  max-width: 150px;
  width: 30vw;
}

.logo--mobile svg {
  vertical-align: middle;
}

@media only screen and (min-width: 600px) {
  .logo--mobile {
    display: none;
  }
}

.hamburger {
  padding: 4px 7px 2px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

@media only screen and (min-width: 600px) {
  .hamburger {
    display: none;
  }
}

.hamburger * {
  pointer-events: none;
}

.hamburger:hover {
  opacity: .7;
}

.hamburger.is-active:hover {
  opacity: .7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ddd0ab;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
  transform: translateY(3px);
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #ddd0ab;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hero {
  background-color: #cfc4a5;
  background-image: linear-gradient(to bottom, #dfdacd 0%,#dfdacd 58%,#2b2923 62%,#2b2923 80%,#b0a472 89%,#b0a472 100%);
  background-position: 50% 50%;
  background-size: cover;
  height: 100vw;
  padding-top: 5vw;
  position: relative;
  text-align: center;
}

@media only screen and (min-width: 1440px) {
  .hero {
    padding-top: 50px;
  }
}

.no-webp .hero {
  background-image: url('images/hero-bg-sm.jpg');
}

@media only screen and (min-width: 600px) {
  .no-webp .hero {
    background-image: url('images/hero-bg-lg.jpg');
  }
}

.webp .hero {
  background-image: url('images/hero-bg-sm.jpg');
}

@media only screen and (min-width: 600px) {
  .webp .hero{
    background-image: url('images/hero-bg-lg.jpg');
  }
}

@media only screen and (min-width: 813px) {
  .hero {
    height: 813px;
  }
}

.hero h2 {
  bottom: 100px;
  color: #fff6de;
  font-size: 6vw;
  font-weight: bold;
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  text-shadow: 4px 3px 4px #000000;
}

@media only screen and (min-width: 800px) {
  .hero h2 {
    font-size: 50px;
  }
}

.logo--desktop {
  color: #1c1915;
  max-width: 520px;
  width: 70vw;
}

.block--dark {
  background-color: #231f20;
  color: #f3f0e5;
}

.block--dark a:focus {
  outline: 1px dashed #f3f0e5;
}

.block--light {
  background-color: #f3f0e5;
}

.block--light a {
  color: #231f20;
}

.block--light a:focus {
  outline: 1px dashed #221F20;
}

.block--dark .h2,
.block--light .h2,
.block--white .h2 {
  color: #ca7223;
}

.padding--sm {
  padding: 1rem;
}

@media only screen and (min-width: 600px) {
  .padding--sm {
    padding: 3rem 1rem;
  }
}

.padding--md {
  padding: 2rem 1rem;
}

@media only screen and (min-width: 600px) {
  .padding--md {
    padding: 5.25rem 1rem;
  }
}

.padding--lg {
  padding: 3rem 1rem;
}

@media only screen and (min-width: 600px) {
  .padding--lg {
    padding: 5rem 1rem;
  }
}

.bordered {
  border-bottom: 2px solid #cfcfcf;
}

#what,
#who,
#contact {
  scroll-margin-top: 76px;
}

.container {
  margin: 0 auto;
  max-width: 890px;
  padding: 0;
  width: 100%;
}

.container--sm {
  margin: 0 auto;
  max-width: 96%;
  padding: 0;
  width: 690px;
}

.map {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 600px) {
  .stacked__container {
    display: flex;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 600px) {
  ul.icons {
    margin-bottom: 2rem;
  }
}

.icons li {
  padding: 18px 0 18px 95px;
  position: relative;
}

.icons li::before {
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: '';
  display: block;
  height: 75px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
}

.icons li:nth-child(1)::before {
  background-image: url('images/icon-check.svg');
}

.icons li:nth-child(2)::before {
  background-image: url('images/icon-review.svg');
}

.icons li:nth-child(3)::before {
  background-image: url('images/icon-consult.svg');
}

.icons li:nth-child(4)::before {
  background-image: url('images/icon-assist.svg');
}

.icons li:nth-child(5)::before {
  background: url('images/icon-enroll.svg');
}

.small {
  color: #757575;
  font-size: 18px;
  text-align: center;
}

ul.clients {
  margin: 2rem auto 0;
  max-width: 600px;
}

@media only screen and (min-width: 600px) {
  ul.clients {
    display: flex;
    margin: 4rem auto 0;
    max-width: 820px;
  }
}

.client {
  color: #e0d0a6;
  font-size: 18px;
  margin: 0 30px;
  text-align: center;
}

.client__photo {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #221f20;
  display: flex;
  flex-direction: column;
  font-variant: small-caps;
  height: 350px;
  margin: 0 auto;
  max-width: 350px;
  padding-top: 50px;
}

.client__photo h4 {
  border: 0;
  color: #221f20;
  line-height: 1;
  margin-top: 0;
  padding: 0;
}

.webp .client:nth-child(1) .client__photo {
  background-color: #929A62;
  background-image: url('images/client1.jpg');
}

.no-webp .client:nth-child(1) .client__photo {
  background-color: #929A62;
  background-image: url('images/client1.jpg');
}

.webp .client:nth-child(2) .client__photo {
  background-color: #CF803E;
  background-image: url('images/client2.jpg');
}

.no-webp .client:nth-child(2) .client__photo {
  background-color: #CF803E;
  background-image: url('images/client2.jpg');
}

.client .intro {
  font-variant: small-caps;
  margin: 0 auto;
  padding: 1rem 0 .5rem;
}

.client__desc {
  margin: 0 auto;
  max-width: 60%;
}

.client hr {
  max-width: 38%;
}

form {
  background-color: #F6F6F6;
  padding: 1rem;
}

@media only screen and (min-width: 600px) {
  form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5rem;
  }
}

form input,
form textarea {
  border: 2px solid #ccc;
  border-radius: 10px;
  margin-top: 1rem;
  padding: 6px 1.5vw;
  width: 100%;
}

form input::placeholder,
form textarea::placeholder {
  color: #ccc;
}

form input:nth-child(-n+5) {
  margin-top: 0;
}

@media only screen and (min-width: 600px) {
  form input,
  form textarea {
    margin-top: 1.5rem;
  }
}

@media only screen and (min-width: 600px) {
  form input:not(.form--full) {
    width: 48%;
  }
}

form input[type="submit"] {
  background-color: #7da75e;
  color: #fff;
}

.footer-global {
  font-size: 16px;
  position: relative;
  text-align: center;
}

.footer-global::before {
  background-color: rgba(224, 208, 166, 0.3);
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  max-width: 890px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
