:root {
  --white: #fff;
  --gold: #b59d6f;
  --black: black;
  --color: #b8b8b8;
  --off-black: #333;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
}

h2 {
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

h3 {
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Italiana, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

h4, h5, h6 {
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Italiana, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

p {
  color: var(--black);
  max-width: 700px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 2;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
}

.sitewrapper {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
}

.header-sect {
  background-color: #cc7979;
  background-image: linear-gradient(#fff 23%, rgba(181, 157, 111, .8) 81%), url('../images/pexels-matt-hardy-1533720_1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 55vh;
  transition: background-color .6s;
  display: flex;
}

.header-sect.about {
  background-image: linear-gradient(#fff 23%, rgba(181, 157, 111, .8) 81%), url('../images/leaves.webp');
}

.header-sect.services {
  background-image: linear-gradient(#fff 23%, rgba(181, 157, 111, .8) 81%), url('../images/wood.webp');
}

.header-sect.contact {
  background-image: linear-gradient(#fff 23%, rgba(181, 157, 111, .8) 81%), url('../images/stones-1.webp');
}

.header-sect.training-program {
  opacity: 1;
  background-image: linear-gradient(#fff, rgba(181, 157, 111, .8) 76%), url('../images/trees2.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.intro-sect {
  color: var(--color);
  padding: 60px 20px;
  transition: background-color .6s;
}

.footer-sect {
  background-color: #b59d6f;
  height: auto;
  min-height: 100px;
  padding: 60px 20px;
}

.nav-wrapper {
  background-color: #fff;
  height: auto;
  padding: 15px 20px;
  transition: background-color .2s;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-wrapper:hover {
  background-color: #fff;
}

.logo {
  height: 140px;
}

.navbar {
  background-color: rgba(221, 221, 221, 0);
}

.container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  height: 50px;
  display: flex;
}

.nav-link {
  color: #b59d6f;
  background-color: #fff;
  padding-right: 20px;
}

.nav-link.w--current {
  color: var(--off-black);
  text-decoration: underline;
}

.container-wrapper {
  width: auto;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.heading {
  color: #b59d6f;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.gen-sect {
  padding: 91px 20px 60px;
  transition: background-color .6s;
}

.grid {
  grid-column-gap: 30px;
  grid-template-columns: .5fr 1fr;
}

.grid-2 {
  border-bottom: 1px solid #f5f5f5;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.grid-2.last {
  border-bottom-style: none;
  margin-bottom: 0;
}

.feature-header {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
}

.nums {
  color: var(--color);
  font-size: .7rem;
}

.sub-h2 {
  color: var(--black);
  margin-top: 0;
  font-size: 18px;
  line-height: 36px;
}

.tag-line {
  opacity: 1;
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 6vw;
  font-weight: 300;
  line-height: .8;
}

.image {
  width: 180px;
}

.column {
  color: var(--white);
  text-align: right;
}

.heading-2 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 4rem;
  font-weight: 500;
}

.div-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.ft-divider {
  margin-left: 9px;
  margin-right: 9px;
}

.ft-link {
  color: var(--white);
  line-height: 1;
}

.columns {
  justify-content: center;
  align-items: center;
  display: flex;
}

.ft-container {
  opacity: .35;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 100px;
  display: flex;
}

.text-block-2 {
  text-align: right;
}

.grid-3 {
  grid-template-rows: auto;
  width: 100%;
}

.text-block-3 {
  text-align: right;
}

.ft-txt, .link {
  color: var(--white);
  font-size: .8rem;
}

.section {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 600px;
  display: flex;
}

.div-block-2 {
  background-image: url('../images/pexels-cottonbro-4098369_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 100%;
}

.div-block-3 {
  background-color: var(--color);
  background-image: linear-gradient(to bottom, var(--color), var(--color)), url('../images/istockphoto-488516834-1024x1024_1.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  width: 50%;
  height: 100%;
  padding: 138px;
}

.hero-title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero-link {
  color: var(--black);
  margin-top: 40px;
  display: block;
}

.ico-link {
  border: 1px solid var(--color);
  background-color: var(--white);
  text-transform: lowercase;
  border-radius: 72px;
  width: 20px;
  height: 20px;
}

.paragraph {
  color: var(--black);
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comp-name {
  color: var(--black);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-family: Italiana, sans-serif;
  font-weight: 400;
}

.comp-name.internal-name {
  opacity: .5;
  margin-bottom: 0;
  font-size: .8rem;
}

.text-block-4 {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-size: .9rem;
  line-height: 2;
  display: block;
  overflow: visible;
}

.footer-banner {
  background-color: var(--white);
  background-image: linear-gradient(#edece6, #edece6);
  height: auto;
  padding: 60px 20px;
}

.grid-4 {
  grid-template-rows: 115px;
  grid-template-columns: .25fr 1fr .5fr;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-4 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.ft-link-2 {
  color: var(--black);
  margin-bottom: 10px;
  text-decoration: none;
}

.ft-link-2:hover {
  text-decoration: underline;
}

.div-block-5 {
  text-align: left;
}

.section-2 {
  background-color: #edece6;
  padding: 62px 20px;
}

.main-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 1080px;
  min-height: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

._1 {
  min-width: 20%;
}

._2 {
  width: 60%;
}

._3 {
  width: 20%;
}

.text-block-5 {
  max-width: 700px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.section-3 {
  background-image: url('../images/pexels-matt-hardy-1533720_1.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 25px 20px;
  display: flex;
}

.div-block-6 {
  background-color: rgba(255, 255, 255, .85);
  border-radius: 3px;
  max-width: 500px;
  padding: 34px;
  transition: background-color .4s;
}

.div-block-6:hover {
  background-color: #fff;
}

.heading-3 {
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Italiana, sans-serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}

.rte {
  color: var(--black);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: normal;
  font-weight: 400;
}

.heading-4, .heading-5 {
  color: var(--gold);
}

.img-em {
  margin-bottom: 20px;
  margin-right: 20px;
}

.heading-6 {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.contact-pic {
  display: block;
}

.heading-7 {
  font-weight: 300;
}

.heading-8 {
  font-size: 2.7rem;
  font-weight: 300;
}

.paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5 {
  padding-left: 20px;
}

.paragraph-6 {
  padding-left: 19px;
}

.paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10, .paragraph-11, .paragraph-12, .paragraph-13, .paragraph-14, .paragraph-15 {
  padding-left: 20px;
}

.paragraph-16 {
  padding-left: 0;
}

.paragraph-17 {
  padding-left: 20px;
}

.paragraph-18 {
  padding-left: 0;
}

.paragraph-19, .paragraph-20, .paragraph-21, .paragraph-22, .paragraph-23, .paragraph-24, .paragraph-25 {
  padding-left: 20px;
}

.margin-bottom-30 {
  margin-bottom: 60px;
}

.section-4 {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.slider {
  background-color: rgba(221, 221, 221, 0);
  justify-content: center;
  align-items: center;
  display: flex;
}

.testomonial-wraper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.right-arrow, .left-arrow {
  display: none;
}

.text-block-6, .text-block-7 {
  text-align: right;
}

.slide-nav {
  opacity: .33;
  padding-bottom: 0;
}

.underline {
  font-weight: 400;
  text-decoration: underline;
}

.paragraph-32 {
  float: left;
}

@media screen and (max-width: 991px) {
  .header-sect.services {
    height: 55vh;
  }

  .div-block-4 {
    padding-right: 21px;
  }

  .rte {
    padding-left: 0;
  }

  .slider {
    height: auto;
  }

  .mask {
    width: 100%;
    height: 100%;
  }

  .slide-nav {
    margin-top: 0;
    margin-bottom: -50px;
  }
}

@media screen and (max-width: 767px) {
  .header-sect.about {
    height: 40vh;
  }

  .heading-2 {
    font-size: 3rem;
  }

  .div-block-4 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .main-wrapper {
    flex-flow: column;
  }

  ._2 {
    width: 100%;
    margin-bottom: 20px;
  }

  ._3 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .testomonial-wraper {
    width: 100%;
  }

  .heading-9 {
    text-align: center;
    font-size: 4rem;
  }

  .block-quote {
    padding-left: 20px;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 1.2rem;
  }

  li {
    padding-bottom: 10px;
  }

  .header-sect.about {
    height: 30dvh;
  }

  .container-wrapper {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-2 {
    text-align: center;
    font-size: 2.5rem;
  }

  .div-block {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .text-block-3 {
    text-align: center;
  }

  .text-block-4 {
    margin-bottom: 50px;
  }

  .div-block-4 {
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .main-wrapper {
    flex-flow: column;
    max-width: none;
  }

  ._2, ._3 {
    width: 100%;
  }

  .text-block-5 {
    text-align: center;
  }

  .rte {
    text-align: left;
  }

  .img-em {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: block;
    position: static;
  }

  .contact-pic {
    height: auto;
    margin-left: 0;
    padding-left: 0;
  }

  .paragraph-2, .paragraph-3.tab, .paragraph-4, .paragraph-5, .paragraph-6, .paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10, .paragraph-11, .paragraph-12, .paragraph-13, .paragraph-14, .paragraph-15 {
    text-align: left;
  }

  .heading-9 {
    font-size: 3.8rem;
  }

  .heading-10 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .bold-text {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-11 {
    text-align: center;
    font-size: 3rem;
  }

  .paragraph-26, .paragraph-27, .paragraph-28, .paragraph-29, .list {
    text-align: left;
  }

  .list-item {
    padding-bottom: 10px;
  }

  .paragraph-30, .paragraph-31 {
    text-align: left;
  }

  .block-quote {
    border-left-style: none;
    padding-left: 0;
    padding-right: 0;
  }

  .image-2 {
    aspect-ratio: auto;
    display: block;
  }

  .link-2 {
    clear: none;
    white-space: normal;
    word-break: break-all;
    line-height: 1;
  }
}


