:root {
  --headings: #1c2014;
  --chocolate: #df6227;
  --hover-color: #b4440e;
  --sienna: #925335;
  --dark-bg: #1c2014;
  --active-color: #b65222;
  --light-grey: #ece4d9;
  --light-sea-green: #5abdba;
  --white: white;
  --tint: #ece4d9;
  --black: #0d0f09;
  --tan: #d5bd9d;
}

body {
  color: var(--headings);
  font-family: Libre Baskerville, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8rem;
}

h1 {
  margin-top: 0;
  margin-bottom: 18px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 4.55rem;
  font-weight: 400;
  line-height: 5.3rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.4rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 3.6rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.1rem;
}

h5 {
  margin-top: 0;
  margin-bottom: 9px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
}

h6 {
  margin-top: 0;
  margin-bottom: 6px;
  padding-top: 8px;
  font-family: League Gothic, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
}


p {
  margin-bottom: 18px;
}

a {
  color: var(--chocolate);
  text-decoration: none;
  transition: all .25s;
}

a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

ul {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 18px;
  list-style-type: none;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
  list-style-type: decimal;
}

li {
  margin-bottom: 12px;
  padding-left: 6px;
  list-style-type: disc;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 6px;
  font-size: .8rem;
  line-height: 1.5rem;
  display: block;
}

strong {
  font-weight: 700;
}

blockquote {
  border-left: 6px solid var(--sienna);
  color: var(--dark-bg);
  letter-spacing: .5px;
  margin-top: 48px;
  margin-bottom: 48px;
  margin-left: -38px;
  padding: 0 0 0 30px;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.p-large {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.p-small {
  flex: 0 auto;
  font-size: .9rem;
  line-height: 1.5rem;
}

.p-small.caption {
  margin-top: -36px;
  margin-bottom: 60px;
  font-style: italic;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 400px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.style-guide-color {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  display: flex;
}

.style-guide-color.active-color {
  background-color: var(--active-color);
}

.style-guide-color.headings {
  background-color: var(--headings);
}

.style-guide-color.hover-color {
  background-color: var(--hover-color);
}

.style-guide-color.light-grey {
  background-color: var(--light-grey);
}

.style-guide-color.cyan {
  background-color: var(--light-sea-green);
}


.button {
  min-width: 160px;
  background-color: var(--active-color);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 15px 48px;
  font-family: League Gothic, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.button.white {
  background: var(--white);
  color: var(--active-color);
}
.button:hover {
  background-color: var(--hover-color);
  color: var(--white);
  text-decoration: none;
  transform: translate(0, -3px);
}

.button.small {
  padding: 12px 36px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}



.section {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.section.no-t-padding {
  padding-top: 0;
}
.section.no-b-padding {
  padding-bottom: 0;
}

.section._404 {
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.tint {
  background-color: var(--light-grey);
}

.section.tint._50-p-right {
  background-image: linear-gradient(to right, var(--white) 50%, var(--tint) 50%);
}

.section.tint._50-p-left {
  background-image: linear-gradient(270deg, var(--white) 50%, var(--tint) 50%);
}

.section.dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.section.dark._70-p-left {
  background-image: linear-gradient(to right, var(--dark-bg) 70%, var(--white) 70%);
}

.section.dark._70-p-right {
  background-image: linear-gradient(270deg, var(--dark-bg) 70%, var(--white) 70%);
}

.section.block-w-image {
  padding-top: 0;
  padding-bottom: 0;
}

.section.block-w-image.large {
  min-height: 80vh;
  align-items: center;
  display: flex;
}

.section.sienna, .section.brown {
  background-color: var(--sienna);
  color: var(--white);
}

.section.brown._70-p-left {
  background-image: linear-gradient(to right, var(--sienna) 70%, var(--white) 70%);
}

.section.brown._70-p-right {
  background-image: linear-gradient(270deg, var(--sienna) 70%, var(--white) 70%);
}

.section.wood-texture {
  background-color: var(--dark-bg);
  color: var(--white);
}

.fluid-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 12px;
  position: relative;
}
.fluid-cell.align-left {
  order: 1
}
.fluid-cell.align-right {
  order: 2
}
.fluid-cell._67-p {
  width: 66.7%;
  flex: 0 auto;
}

.fluid-cell._50-p {
  width: 50%;
  flex: 0 auto;
}

.fluid-cell._25-p {
  width: 25%;
  flex: 0 auto;
}

.fluid-cell._70-p {
  width: 70%;
  flex: 0 auto;
}

.fluid-cell._70-p.faux-100-p {
  width: 100%;
  padding-right: 33.3%;
}

.fluid-cell._100-p {
  width: 100%;
  flex: 0 auto;
}

.fluid-cell._33-p {
  width: 33.3%;
  flex: 0 auto;
}

.fluid-cell._33-p.faux-50-p {
  width: 50%;
  padding-right: 16.3%;
}

.fluid-cell.center-object {
  justify-content: center;
  align-items: center;
  display: flex;
}

.fluid-cell._45-p {
  width: 45%;
  flex: 0 auto;
}

.fluid-cell.center-intro {
  width: 70%;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
}

.fluid-cell._40-p {
  width: 40%;
  flex: 0 auto;
}

.fluid-cell._40-p.footer-info {
  margin-right: 10%;
}

.fluid-cell.no-b-padding {
  padding-bottom: 0;
}

.fluid-cell._50-p-w-floating-block {
  width: 50%;
  flex: 0 auto;
}

.fluid-cell._45-p {
  width: 45%;
  flex: 0 auto;
}

.fluid-cell._w-image-card {
  width: 33.3%;
  flex: 0 auto;
}

.invert {
  color: #fff;
}

.subheading {
  color: var(--sienna);
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-top: 12px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
}

.subheading.no-b-margin {
  margin-bottom: 0;
}

.subheading.no-t-padding {
  padding-top: 0;
}

.text-field {
  min-height: 55px;
  border: 1px solid var(--light-grey);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 0;
  padding: 12px 18px;
  transition: all .2s;
}

.text-field:focus {
  border-color: var(--light-sea-green);
}

.text-field.text-area {
  min-height: 150px;
  padding-top: 12px;
}

.container {
  z-index: 3;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  padding-left: 84px;
  padding-right: 84px;
  display: flex;
  position: relative;
}

.container.center {
  justify-content: center;
}

.container.center-horizontal {
  justify-content: center;
  align-items: center;
}

.container.stretch {
  align-items: stretch;
}

.container.in-between {
  justify-content: space-between;
  align-items: center;
}

.container.block-w-image {
  height: 100%;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.container.block-w-image.right {
  justify-content: flex-end;
}

.container._w-image-cards {
  align-items: stretch;
}

.form {
  text-align: left;
  flex-flow: wrap;
  align-items: stretch;
  margin-left: -1%;
  display: flex;
}

.ordered-item {
  background-image: none;
  background-repeat: repeat;
  list-style-type: decimal;
}

.faux-h1 {
  margin-bottom: 18px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 4.55rem;
  font-weight: 400;
  line-height: 5.3rem;
}

.faux-h2 {
  margin-bottom: 15px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.4rem;
}

.faux-h3 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 3.6rem;
}

.faux-h4 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.1rem;
}

.faux-h5 {
  margin-bottom: 9px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
}
.faux-h5:hover {
  text-decoration: none;
}

.style-guide-color-block {
  border-bottom: 1px solid var(--light-grey);
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.form-item-wrap {
  width: 100%;
  margin-left: 1%;
  margin-right: 1%;
  padding-top: 1%;
  padding-bottom: 1%;
}

.form-item-wrap.half {
  width: 48%;
}

.form-item-wrap.action {
  margin-bottom: -18px;
  padding-bottom: 0%;
}

.center {
  text-align: center;
}

.faux-h6 {
  margin-bottom: 6px;
  padding-top: 8px;
  font-family: League Gothic, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
}


.faux-h6:hover {
  text-decoration: none;
}

.heading-link {
  color: var(--headings);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: all .2s;
}

.heading-link:hover {
  border-bottom: 1px solid var(--hover-color);
  color: var(--headings);
  text-decoration: none;
}

.img-in-text {
  min-width: 120%;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: -10%;
  display: block;
}

.link {
  color: var(--headings);
  letter-spacing: .5px;
  margin-top: 12px;
  margin-bottom: 18px;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6rem;
  display: inline-block;
  position: relative;
}

.link:hover {
  border-bottom-color: var(--headings);
  color: var(--active-color);
  text-decoration: none;
  transform: translate(0, -3px);
}

.link.invert {
  color: var(--white);
}

.link.invert:hover {
  border-bottom-color: var(--white);
  color: #e96627;
}

.footer-nav-link {
  color: var(--white);
  border-bottom: 1px solid rgba(182, 82, 34, .5);
  margin-bottom: 12px;
  font-size: .9rem;
  line-height: 1.5rem;
  text-decoration: none;
  display: inline-block;
}

.footer-nav-link:hover {
  border-bottom-color: var(--chocolate);
  color: var(--white);
  text-decoration: none;
}

.footer-nav-link.last {
  margin-bottom: 24px;
}

.thumb-img {
  min-width: 100%;
}

.button-hover {
  width: 100%;
  height: 200%;
  background-color: var(--hover-color);
  display: none;
  position: absolute;
  top: 101%;
  bottom: 0%;
  left: 0;
  right: auto;
}

.button-text {
  z-index: 2;
  position: relative;
}

.icon {
  width: 4rem;
  height: 4rem;
  color: var(--active-color);
  margin-top: 12px;
  margin-bottom: 18px;
}

.icon.white {
  color: var(--white);
}

.icon.t-margin {
  margin-top: 48px;
}

.logo-img {
  margin-right: 24px;
}

.child-link {
  width: 100%;
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 1px solid rgba(6, 26, 16, .15);
  padding: 12px 30px;
  font-weight: 700;
  transition: all .2s;
  display: inline-block;
}

.child-link:hover {
  background-color: var(--hover-color);
  color: var(--white);
  border-bottom-color: rgba(6, 26, 16, .2);
  text-decoration: none;
}

.child-link.w--current {
  color: #01c6e4;
}

.child-link.last {
  border-bottom-color: rgba(0, 0, 0, 0);
}

.child-link.last:hover {
  box-shadow: none;
}

.nav-link {
  color: var(--white);
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  margin-left: 1vw;
  margin-right: 1vw;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.5rem;
  transition: all .2s;
}

.nav-link:hover {
  color: var(--white);
  text-decoration: none;
}

.nav-link.w--current {
  border-bottom-color: var(--active-color);
}

.nav-link._w-dropdown {
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.nav-link.as-button {
  background-color: var(--active-color);
  color: var(--white);
  padding: 6px 24px 4px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
}

.nav-link.as-button:hover {
  background-color: var(--hover-color);
}

.nav {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.embedded-image {
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.header-large {
  min-height: 700px;
  color: var(--white);
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: center;
  padding-top: 12vh;
  padding-bottom: 6vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-bar {
  z-index: 1111;
  width: 100%;
  height: 108px;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: absolute;
  top: 0;
}

.nav-bar.standalone {
  background-color: var(--dark-bg);
  position: relative;
}

.nav-dropdown-content {
  background-color: var(--active-color);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 600;
  display: none;
  position: absolute;
  top: 48px;
  bottom: auto;
  left: auto;
  right: 0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .2);
}

.tittle-in-30-p-article {
  padding-right: 36px;
}

.article-thumb-tint {
  z-index: -1;
  background-color: rgba(236, 228, 217, .5);
  position: absolute;
  top: 36px;
  bottom: -36px;
  left: 36px;
  right: -36px;
}

.tittle-in-50-p-article {
  padding-right: 96px;
}

.thumb-link {
  z-index: 1;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.article-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 4vw 2vw;
}

.article-cell:hover {
  text-decoration: none;
}

.article-cell._40-p-article {
  width: 40%;
  flex: 0 auto;
  margin-left: 5%;
  margin-right: 5%;
  position: relative;
}

.article-cell._40-p-article.second {
  margin-top: 4vw;
}

.article-cell._50-p-article {
  width: 50%;
  flex: 0 auto;
  position: relative;
}

.article-cell._33-p-article {
  width: 33.3%;
  flex: 0 auto;
  margin-top: 4vw;
  margin-left: 8%;
  margin-right: 8%;
  position: relative;
}

.block {
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 36px;
  transition: all .25s;
  display: block;
}

.block:hover {
  color: var(--white);
  text-decoration: none;
  transform: translate(0, -3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.block.cyan {
  background-color: var(--light-sea-green);
  color: var(--white);
}

.block.yellow {
  background-color: var(--active-color);
  color: var(--white);
}

.article-share {
  margin-top: 24px;
}

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

.page-no {
  color: var(--headings);
  text-transform: uppercase;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 30px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 4px 12px 3px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.5rem;
  transition: all .2s;
  display: block;
}

.page-no:hover {
  border-color: var(--active-color);
  color: var(--headings);
  text-decoration: none;
}

.page-no.current {
  border-color: var(--active-color);
}

.tmln-wrap {
  z-index: 3;
  width: 100%;
  flex-wrap: wrap;
  flex: 0 auto;
  align-items: stretch;
  display: flex;
}

.tmln-wrap.last {
  padding-bottom: 2vw;
}

.tmln-circle {
  z-index: 11;
  width: 30px;
  height: 30px;
  background-color: var(--light-sea-green);
  border: 4px solid #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  right: -16px;
}

.tmln-circle.right {
  left: -16px;
  right: auto;
}

.tmln-dot {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 20px;
}

.tmln-cell {
  width: 50%;
  border-right: 2px solid var(--light-grey);
  text-align: right;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  padding: 2% 36px 2% 2%;
  display: flex;
  position: relative;
}

.tmln-cell.right {
  text-align: left;
  border-right-style: none;
  align-items: flex-start;
  padding-left: 36px;
  padding-right: 2%;
}

.banner-slider {
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.slider-arrow {
  width: 60px;
  height: 60px;
  background-color: var(--active-color);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 24px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.slider-arrow.left {
  top: 24px;
  bottom: auto;
  left: auto;
  right: 72px;
}

.hide {
  display: none;
}

.link-arrow {
  width: 19px;
  height: 19px;
  background-color: var(--active-color);
  background-image: url('../images/Link-Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 20px;
  position: absolute;
  top: 3px;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.embedded-media {
  z-index: 2;
  max-width: 80%;
  min-width: 60%;
  position: relative;
}

.embedded-media.rotate-right {
  transform: rotate(5deg);
}

.embedded-media.rotate-left {
  transform: rotate(-5deg);
}

.embedded-image-deco {
  z-index: -1;
  width: 12rem;
  height: 12rem;
  color: var(--light-grey);
  position: absolute;
  top: -60px;
  bottom: auto;
  left: auto;
  right: -60px;
}

.embedded-image-deco.bottom-left {
  top: auto;
  bottom: -60px;
  left: -60px;
  right: auto;
}

.dropdown-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.dropdown-wrap {
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  position: relative;
}

.dropdown-wrap.invert {
  border-bottom-color: rgba(255, 255, 255, .2);
}

.dropdown-trigger {
  z-index: 20;
  width: 100%;
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 18px;
  font-family: League Gothic, sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 3.3rem;
  display: flex;
  position: relative;
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  min-height: 18px;
  min-width: 18px;
  background-color: var(--active-color);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 24px;
  display: flex;
}

.dropdown-icon.faq {
  margin-top: 3px;
}

.dropdown-content-wrap {
  padding-bottom: 6px;
  padding-right: 24px;
}

.simple-slider-arrow-icon {
  color: var(--active-color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4rem;
}

.simple-slider-arrow-icon.down {
  margin-top: 1px;
  transform: rotate(90deg);
}

.select-field {
  height: 54px;
  border: 1px solid var(--active-color);
  background-color: var(--white);
  cursor: pointer;
  margin-bottom: 0;
  padding-left: 24px;
  font-weight: 700;
}

.text-block {
  height: 100%;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 48px 48px 36px;
  transition: all .25s;
  display: block;
}

.text-block.t-margin {
  margin-top: 48px;
}
.text-block:hover {
  color: var(--white);
  text-decoration: none;
}

.text-block.cyan {
  background-color: var(--light-sea-green);
  color: var(--headings);
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--active-color);
  border-radius: 30px;
  margin-left: 6px;
  margin-right: 6px;
  transition: all .2s;
}

.social-icon:hover {
  border-color: var(--hover-color);
  transform: translate(0, -3px);
}

.social-icon.facebook {
  background-image: url('../images/FB-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.social-icon.twitter {
  background-image: url('../images/TW-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.social-icon.linkedin {
  background-image: url('../images/IN-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.social-icon.email {
  background-image: url('../images/Email-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.article-thumb-wrap {
  position: relative;
}

.dropdown-trigger-2 {
  z-index: 20;
  width: 100%;
  color: #005689;
  cursor: pointer;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 60px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
  position: relative;
}

.nav-wrap {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-dropdown-trigger {
  z-index: 20;
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  display: inline-block;
  position: relative;
}

.nav-dropdown-trigger:hover {
  text-decoration: none;
}

.menu-open {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-icon-button {
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
}

.nav-icon-button._w-mobile-menu {
  display: none;
}

.nav-icon-buttons {
  margin-left: 12px;
  font-size: .9rem;
  line-height: 1.6rem;
  display: flex;
}

.header-bg-img {
  z-index: 1;
  width: 110%;
  height: 110%;
  max-width: 110%;
  object-fit: cover;
  position: absolute;
  top: -5%;
  bottom: 0%;
  left: -5%;
  right: 0%;
}

.header-full {
  z-index: 20;
  min-height: 100vh;
  background-color: var(--dark-bg);
  color: #fff;
  flex-direction: row;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  padding-top: 12vh;
  padding-bottom: 6vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-bg-overlay {
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .3));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.breadcrumbs {
  background-image: url('../images/Home-icon.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  padding-left: 30px;
  font-size: 14px;
  line-height: 26px;
  display: inline-block;
}

.breadcrumbs.invert {
  background-image: url('../images/Home-icon-white.svg');
}

.slash {
  color: #d1d7d7;
  padding-left: 6px;
  padding-right: 6px;
}

.header {
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 60px;
  padding-bottom: 48px;
  display: flex;
  position: relative;
}

.header.dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.header.tint {
  background-color: var(--light-grey);
}

.header-img-shadow {
  z-index: -2;
  width: 108%;
  background-color: var(--light-grey);
  position: absolute;
  top: 50%;
  bottom: -36px;
  left: -4%;
  right: 0;
}

.header-img-shadow.top {
  top: -60px;
  bottom: 50%;
}

.avatar-large {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 100px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.card-flip-large {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.flip-block-large {
  height: 400px;
  perspective: 1000px;
  justify-content: center;
  position: relative;
}

.card-flip-side-large {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1200px;
  padding: 24px 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.card-flip-side-large.back {
  background-color: var(--dark-bg);
  color: #fff;
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 30px 24px;
  display: flex;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
  box-shadow: 8px 8px 48px rgba(0, 0, 0, .15);
}

.card-flip-side-large.front {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
  transform: rotate(0);
}

.parallax-bg-image {
  z-index: 1;
  width: 100%;
  height: 116%;
  object-fit: cover;
  position: absolute;
  top: -8%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.parallax-bg-wrap {
  z-index: 0;
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.parallax-bg-wrap.left {
  width: 60%;
  right: auto;
}

.parallax-bg-wrap.right {
  width: 60%;
  left: auto;
}

.featured-image {
  min-width: 120%;
  margin-top: 60px;
  display: block;
}

.heading-line-x {
  width: 36px;
  height: 4px;
  background-color: var(--tan);
  margin-top: 6px;
  margin-bottom: 12px;
}

.hamburger-row {
  width: 28px;
  height: 2px;
  background-color: var(--chocolate);
  border-radius: 2px;
}

.hamburger {
  width: 40px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.col._33-p {
  width: 33.3%;
  flex-direction: column;
  display: flex;
}

.col._25-p {
  width: 25%;
  flex-direction: column;
  display: flex;
}

.full-card-image {
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.full-image-card {
  height: 100%;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  transition: all .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.full-image-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
}

.full-card-text {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 300px 36px 36px;
  display: flex;
}

.ppm-intro-page-link {
  width: 100%;
  color: var(--headings);
  background-color: #fff;
  border: 1px solid #e8eae9;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 12px 36px;
  font-weight: 700;
  display: block;
}

.ppm-intro-page-link:hover {
  border-color: var(--hover-color);
  color: var(--headings);
  text-decoration: none;
}

.faux-h1-large {
  letter-spacing: 2px;
  margin-bottom: 18px;
  padding-top: 12px;
  font-family: League Gothic, sans-serif;
  font-size: 6.75rem;
  font-weight: 400;
  line-height: 7.5rem;
}

.block-dark {
  width: 100%;
  background-color: var(--dark-bg);
  color: var(--white);
  border: 8px solid #fff;
  padding: 60px 60px 42px;
  box-shadow: 0 0 48px rgba(0, 0, 0, .3);
}

.image-tape {
  z-index: 10;
  width: 40%;
  opacity: .7;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -6%;
  bottom: -10%;
  left: -10%;
  right: -10%;
}

.masonry-grid-wrap {
  width: 100%;
  direction: ltr;
  column-count: 3;
  padding: 2vw 108px;
}

.ms-grid-item {
  margin-bottom: 20px;
}

.loader-circle {
  z-index: 0;
  width: 150vw;
  height: 150vw;
  background-color: var(--black);
/*  filter: blur(30px);*/
  border-radius: 0%;
  position: absolute;
}

.loader {
  z-index: 2222;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loader-logo {
  z-index: 1;
  height: 150px;
  position: relative;
}

.loader-image-wrap {
  display: flex;
  overflow: hidden;
}

.slide-in-wrap {
  overflow: hidden;
}

.testimonial-image {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 100%;
}

.testimonial-wrap-x {
  text-align: left;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 24px 12px;
  display: flex;
  position: relative;
}

.testimonial-image-wrap {
  width: 160px;
  height: 160px;
  border: 2px solid var(--light-grey);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial {
  border-right: 2px solid var(--light-grey);
  border-left: 2px solid var(--light-grey);
  margin-left: 72px;
  margin-right: 180px;
  padding-left: 72px;
  padding-right: 72px;
}

.underline {
  width: 0%;
  height: 2px;
  background-color: var(--chocolate);
}

.loader-symbol {
  z-index: 1;
  height: 150px;
  position: relative;
}

.div-block-2 {
  margin-right: 24px;
  overflow: hidden;
}

.heading {
  color: var(--headings);
}

@media screen and (min-width: 1440px) {
  .fluid-cell._50-p-w-floating-block {
    width: 50%;
  }

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

  .container.block-w-image {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .logo-img {
    max-width: 700px;
  }

  .nav-link {
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    font-size: 14px;
  }

  .banner-slider {
    max-width: 1606px;
    margin-left: auto;
    margin-right: auto;
  }

  .avatar-large {
    width: 180px;
    height: 180px;
  }

  .card-flip-side-large {
    padding: 36px;
  }

  .masonry-grid-wrap {
    column-count: 4;
  }
}

@media screen and (max-width: 991px) {
  body {
    background-image: none;
  }

  h1 {
    font-size: 4rem;
    line-height: 4.75rem;
  }

  h2 {
    font-size: 3.5rem;
    line-height: 4.25rem;
  }

  h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  h4 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  a:hover {
    color: var(--hover-color);
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.tint._50-p-right, .section.tint._50-p-left {
    background-image: none;
  }

  .section.block-w-image {
    flex-wrap: wrap-reverse;
    display: flex;
    overflow: visible;
  }

  .section.block-w-image.large {
    min-height: auto;
  }

  .fluid-cell {
    flex: 1;
  }

  .fluid-cell._67-p._50-p-tablet {
    width: 50%;
  }

  .fluid-cell._67-p._100-p-tablet {
    width: 100%;
  }

  .fluid-cell._25-p.footer-nav-col-1, .fluid-cell._25-p.footer-nav-col-2, .fluid-cell._25-p._50-p-on-tablet {
    width: 50%;
  }

  .fluid-cell._70-p {
    width: 80%;
  }

  .fluid-cell._33-p._100-p-tablet  {
    width: 100%;
  }

  .fluid-cell._33-p._50-p-tablet {
    width: 50%;
  }

  .fluid-cell._33-p.faux-50-p {
    width: 100%;
  }

  .fluid-cell._45-p {
    width: 50%;
  }

  .fluid-cell.center-intro {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .fluid-cell._40-p {
    width: 50%;
  }

  .fluid-cell._40-p.footer-info {
    width: 100%;
    margin-right: 0%;
  }

  .fluid-cell._50-p-w-floating-block {
    width: 100%;
  }

  .fluid-cell._w-image-card {
    width: 50%;
  }

  .fluid-cell._w-image-card._100-p-tablet {
    width: 100%;
  }

  .container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .container.block-w-image {
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: -200px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container.block-w-image.right {
    justify-content: flex-start;
  }

  .faux-h1 {
    font-size: 4rem;
    line-height: 4.75rem;
  }

  .faux-h2 {
    font-size: 3.5rem;
    line-height: 4.25rem;
  }

  .faux-h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .faux-h4 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  .logo-img {
    z-index: 3;
    height: 36px;
    position: relative;
  }

  .child-link {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0);
    border-bottom-style: none;
    padding-left: 0;
    padding-right: 0;
    font-weight: 400;
  }

  .child-link:hover {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-link {
    color: var(--white);
    margin: 12px 0;
    font-size: 1rem;
    line-height: 1.7rem;
    display: inline-block;
  }

  .nav-link:hover {
    color: var(--white);
  }

  .nav-link.w--current {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-link.w--current:hover {
    color: var(--white);
  }

  .nav-link._w-dropdown {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .nav-link.as-button {
    margin-top: 12px;
    margin-bottom: 18px;
  }

  .nav {
    z-index: 1;
    width: 100%;
    background-color: var(--black);
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 96px 36px 36px;
    display: none;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0%;
    right: 0%;
    overflow: auto;
    box-shadow: 0 24px 36px rgba(0, 0, 0, .15);
  }

  .nav-bar {
    height: 72px;
    padding: 12px 36px;
  }

  .nav-dropdown-content {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
    margin-bottom: 24px;
    padding-bottom: 24px;
    display: none;
    position: static;
  }

  .tittle-in-30-p-article {
    padding-right: 0;
  }

  .article-thumb-tint {
    top: 24px;
    bottom: -24px;
    left: 24px;
    right: -24px;
  }

  .thumb-link, .article-cell {
    flex: 1;
  }

  .block {
    padding: 36px;
  }

  .slider-arrow.left {
    top: 96px;
    right: 0;
  }

  .embedded-media {
    max-width: 100%;
    min-width: 100%;
  }

  .embedded-image-deco {
    top: -36px;
    right: -36px;
  }

  .embedded-image-deco.bottom-left {
    bottom: -36px;
    left: -36px;
  }

  .dropdown-trigger {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  .text-block {
    padding: 36px 36px 24px;
  }
  .text-block.t-margin {
    margin-top: 36px;
  }
  .dropdown-trigger-2 {
    padding-right: 36px;
  }

  .nav-dropdown-trigger {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-icon-button {
    width: 50px;
    height: 50px;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-icon-button._w-mobile-menu {
    display: block;
  }

  .nav-icon-buttons {
    z-index: 3;
    margin-left: 0;
    position: relative;
  }

  .header {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .header-img-shadow {
    width: 100%;
    bottom: -24px;
    left: 0%;
  }

  .header-img-shadow.top {
    top: -24px;
  }

  .avatar-large {
    width: 180px;
    height: 180px;
  }

  .card-flip-side-large {
    padding: 24px;
  }

  .parallax-bg-image {
    position: static;
  }

  .parallax-bg-wrap {
    height: 600px;
    align-items: center;
    display: flex;
    position: static;
  }

  .parallax-bg-wrap.left {
    width: 100%;
    right: 0;
  }

  .parallax-bg-wrap.right {
    width: 100%;
    left: 0;
  }

  .featured-image {
    margin-top: 36px;
  }

  .hamburger-row {
    width: 32px;
  }

  .hamburger {
    width: 50px;
    height: 20px;
  }

  .col._33-p, .col._25-p {
    width: 50%;
  }

  .faux-h1-large {
    font-size: 4rem;
    line-height: 4.75rem;
  }

  .block-dark {
    padding: 36px 36px 18px;
  }

  .masonry-grid-wrap {
    column-count: 3;
    padding-left: 60px;
    padding-right: 60px;
  }

  .loader-circle {
    width: 150vh;
    height: 150vh;
  }

  .loader-logo {
    height: 120px;
  }

  .testimonial-image {
    width: 120px;
    height: 120px;
  }

  .testimonial-wrap-x {
    border-right: 2px solid var(--light-grey);
    flex-direction: column;
    flex: 1;
    margin-right: 96px;
  }

  .testimonial-image-wrap {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
  }

  .testimonial {
    border-left-style: none;
    border-right-style: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .loader-symbol {
    height: 120px;
  }

  .div-block-2 {
    margin-right: 12px;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-position: -300px -20px;
  }

  h1 {
    margin-bottom: 12px;
    padding-top: 8px;
    font-size: 3.6rem;
    line-height: 4.2rem;
  }

  h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 3.1rem;
    line-height: 3.75rem;
  }

  h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.25rem;
  }

  h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.3rem;
    line-height: 3rem;
  }

  h5 {
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.7rem;
  }

  blockquote {
    margin-left: 0;
    font-size: 1.75rem;
    line-height: 2.6rem;
  }

  .p-large {
    margin-bottom: 18px;
  }

  .p-small.caption {
    margin-top: -24px;
    margin-bottom: 48px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section.dark._70-p-left, .section.dark._70-p-right, .section.brown._70-p-left, .section.brown._70-p-right {
    background-image: none;
  }

  .section._w-image-cards {
    padding-top: 0;
    padding-bottom: 0;
  }

  .fluid-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .fluid-cell._67-p, .fluid-cell._67-p._50-p-tablet, .fluid-cell._50-p, .fluid-cell._25-p {
    width: 100%;
  }

  .fluid-cell._25-p.footer-nav-col-1 {
    width: 100%;
    padding-bottom: 0;
  }

  .fluid-cell._25-p.footer-nav-col-2 {
    width: 100%;
    padding-top: 0;
  }

  .fluid-cell._25-p._50-p-on-tablet, .fluid-cell._70-p {
    width: 100%;
  }

  .fluid-cell._70-p.faux-100-p {
    padding-right: 12px;
  }

  .fluid-cell._33-p, .fluid-cell._33-p._50-p-tablet {
    width: 100%;
  }

  .fluid-cell.center-object.rotate-left, .fluid-cell.center-object.rotate-right {
    padding: 6%;
  }

  .fluid-cell._45-p {
    width: 100%;
  }

  .fluid-cell.center-intro {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell._40-p, .fluid-cell._45-p {
    width: 100%;
  }

  .fluid-cell._w-image-card {
    width: 100%;
    padding: 0;
  }

  .subheading {
    background-image: none;
    font-size: .9rem;
    line-height: 1.6rem;
  }

  .text-field {
    padding-right: 24px;
  }

  .container {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .container.center-horizontal {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .container.center-horizontal.reverse-mobile {
    flex-direction: column-reverse;
  }

  .container.in-between {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .container.block-w-image {
    flex-direction: column-reverse;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container._w-image-cards {
    padding-left: 0;
    padding-right: 0;
  }

  .faux-h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 3.6rem;
    line-height: 4.2rem;
  }

  .faux-h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 3.1rem;
    line-height: 3.75rem;
  }

  .faux-h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.25rem;
  }

  .faux-h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.3rem;
    line-height: 3rem;
  }

  .faux-h5 {
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.7rem;
  }

  .img-in-text {
    min-width: 100%;
    margin-top: 48px;
    margin-bottom: 48px;
    margin-left: 0%;
  }

  .thumb-img {
    min-width: 100%;
  }

  .header-large {
    min-height: 500px;
  }

  .nav-bar {
    padding-left: 6vw;
    padding-right: 5vw;
  }

  .article-thumb-tint {
    top: 18px;
    bottom: -18px;
    left: 18px;
    right: -18px;
  }

  .tittle-in-50-p-article {
    padding-right: 0;
  }

  .thumb-link {
    flex-direction: column;
    justify-content: flex-start;
  }

  .article-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding: 3vw;
  }

  .article-cell._40-p-article {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .article-cell._40-p-article.second {
    margin-top: 0;
  }

  .article-cell._50-p-article {
    width: 100%;
  }

  .article-cell._33-p-article {
    width: 100%;
    margin-top: 0;
    margin-left: 0%;
    margin-right: 0%;
  }

  .hide-mobile {
    display: none;
  }

  .block:hover {
    box-shadow: none;
    transform: none;
  }

  .block.cyan:hover, .block.yellow:hover {
    box-shadow: none;
  }

  .article-share {
    margin-top: 12px;
  }

  .pagination {
    justify-content: flex-start;
    margin-left: -12px;
  }

  .tmln-wrap.reverse {
    flex-direction: column-reverse;
  }

  .tmln-wrap.last {
    padding-bottom: 3vw;
  }

  .tmln-circle {
    left: -16px;
    right: auto;
  }

  .tmln-cell {
    width: 100%;
    text-align: left;
    border-left: 2px solid #e2ede8;
    border-right-style: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 12px;
    padding: 2% 3% 0% 24px;
  }

  .tmln-cell.right {
    border-left-color: #e2ede8;
    padding-left: 24px;
  }

  .slider-arrow {
    top: 18px;
    right: 12px;
  }

  .slider-arrow.left {
    right: 12px;
  }

  .embedded-image-deco {
    right: -24px;
  }

  .embedded-image-deco.bottom-left {
    left: -24px;
  }

  .dropdown-trigger {
    font-size: 2.3rem;
    line-height: 3rem;
  }

  .select-field {
    padding-left: 18px;
  }

  .menu-open {
    width: 100%;
    height: 100%;
  }

  .header {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .header-img-shadow {
    width: 100vw;
    height: 150px;
    top: auto;
    bottom: -24px;
    left: -18px;
    right: 0;
  }

  .header-img-shadow.top {
    top: auto;
    bottom: -24px;
  }

  .card-flip-large {
    position: static;
  }

  .flip-block-large {
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
  }

  .card-flip-side-large.back {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-size: 20px;
    line-height: 32px;
    position: static;
    transform: none;
  }

  .card-flip-side-large.front {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding-bottom: 18px;
    position: static;
    transform: none;
  }

  .parallax-bg-wrap.right {
    padding-left: 0;
    padding-right: 0;
  }

  .featured-image {
    min-width: 120%;
    margin-top: 48px;
    margin-bottom: -42px;
  }

  .col._33-p, .col._25-p {
    width: 100%;
  }

  .ppm-intro-page-link {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ppm-intro-page-link:hover {
    box-shadow: none;
    transform: none;
  }

  .faux-h1-large {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 3.6rem;
    line-height: 4.2rem;
  }

  .masonry-grid-wrap {
    column-count: 2;
    padding-left: 36px;
    padding-right: 36px;
  }

  .loader-logo {
    height: 100px;
  }

  .testimonial-wrap-x {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .loader-symbol {
    height: 100px;
  }
}

@media screen and (max-width: 479px) {
  body {
    background-position: -330px -20px;
  }

  h1 {
    line-height: 3.1rem;
  }

  p {
    margin-bottom: 12px;
  }

  blockquote {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }

  .p-large {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .p-small.caption {
    margin-top: -18px;
    margin-bottom: 36px;
  }

  .utility-page-content {
    width: 260px;
  }

  .button {
    padding-left: 36px;
    padding-right: 36px;
  }

  .section {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .fluid-cell {
    padding: 18px 0;
  }

  .fluid-cell._70-p.faux-100-p {
    padding-right: 0;
  }

  .container {
    align-items: stretch;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container.block-w-image {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .form {
    flex-direction: column;
    margin-left: 0;
  }

  .form-item-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .form-item-wrap.half {
    width: 100%;
  }

  .img-in-text {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .nav-link {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .nav-link.as-button {
    margin-top: 8px;
  }

  .nav {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .header-large {
    min-height: 400px;
  }

  .nav-bar {
    padding-left: 8vw;
    padding-right: 7vw;
  }

  .nav-dropdown-content {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .article-thumb-tint {
    top: 12px;
    bottom: -12px;
    left: 12px;
    right: -12px;
  }

  .thumb-link {
    margin-bottom: 12px;
  }

  .article-cell {
    padding: 18px 0;
  }

  .article-cell._40-p-article {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .block {
    padding: 24px;
  }

  .tmln-circle {
    top: auto;
    bottom: 0%;
    left: -16px;
    right: auto;
  }

  .tmln-cell {
    border-left-color: #e0e6eb;
    margin-left: 0;
    padding-right: 0;
  }

  .tmln-cell.right {
    border-left-color: #e0e6eb;
  }

  .slider-arrow, .slider-arrow.left {
    right: 0;
  }

  .text-block {
    padding: 24px 24px 12px;
  }
  .text-block.t-margin {
    margin-top: 24px;
  }

  .header {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .header-img-shadow {
    bottom: -12px;
    left: -8vw;
  }

  .header-img-shadow.top {
    bottom: -12px;
  }

  .avatar-large {
    margin-bottom: 18px;
  }

  .card-flip-side-large {
    padding: 24px;
  }

  .card-flip-side-large.back {
    padding-bottom: 18px;
  }

  .parallax-bg-image {
    min-height: 500px;
  }

  .parallax-bg-wrap {
    height: 500px;
  }

  .featured-image {
    margin-top: 36px;
    margin-bottom: -30px;
  }

  .block-dark {
    padding: 30px 30px 12px;
  }

  .masonry-grid-wrap {
    column-count: 2;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .loader-logo {
    height: 70px;
  }

  .testimonial-wrap-x {
    border-right-style: none;
    margin-right: 0;
    padding: 18px 0;
  }

  .loader-symbol {
    height: 70px;
  }

  .div-block-2 {
    margin-right: 6px;
  }
}


