/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
* {
  outline: 0;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #1D1716;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: 18px;
  line-height: 30px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  display: block;
  font-style: normal;
}

h1,
.h1 {
  font-size: 85px;
  line-height: 74px;
  letter-spacing: 0.02em;
  font-family: "minerva-modern", serif;
  font-weight: 900;
  text-transform: uppercase;
}

h2,
.h2 {
  font-size: 60px;
  line-height: 62px;
  letter-spacing: -0.03em;
  font-family: "minerva-modern", serif;
  font-weight: 700;
  text-transform: none;
}

h3,
.h3 {
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -0.03em;
  font-family: "minerva-modern", serif;
  font-weight: 700;
}

h4,
.h4 {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

p,
li {
  margin: 0;
}

strong,
b {
  font-weight: 600;
}

#page blockquote {
  display: block;
  margin: 48px -9999rem 24px -9999rem;
  padding: 0px 9999rem 26px 9999rem;
}

#page blockquote p:first-child {
  color: #1D1716;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -0.03em;
  width: 100%;
  position: relative;
  font-family: "minerva-modern", serif;
}

#page blockquote p:first-child:before {
  content: "“";
  font-weight: 700;
  display: block;
  font-size: 60px;
  line-height: 60px;
  position: absolute;
  left: -44px;
  top: 5px;
  width: 34px;
  transition: color 0.3s linear;
}

#page blockquote:hover p:first-child:before {
  color: #1D1716;
}

#page blockquote:hover p:first-child strong {
  font-weight: 400;
}

#page blockquote p:not(:last-child) {
  margin-bottom: 38px;
}

#page blockquote p:not(:first-child) {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

#page blockquote cite {
  color: #7A7271;
  padding-left: 16px;
  position: relative;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: 18px;
  line-height: 30px;
  margin-top: 24px;
}

#page blockquote cite:before {
  content: "—";
  display: block;
  position: absolute;
  left: -7px;
}

#page blockquote cite br {
  display: none;
}

#page blockquote cite strong,
#page blockquote strong cite {
  font-style: normal;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ul.no-style {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.inline {
  font-size: 0;
  line-height: 0;
}

ul.inline li {
  float: left;
}

#page .black,
#page .black a,
#page .black a:hover {
  color: #1D1716;
}

#page .white,
#page .white a,
#page .white a:hover {
  color: #F7F5F3;
}

#page .grey,
#page .grey a,
#page .grey a:hover {
  color: #7A7271;
}

/* now pine, change php values later? */
#page .red,
#page .red a,
#page .red a:hover {
  color: #1B3C31;
}

p.dev-error {
  background: #eee;
  padding: 4px 8px;
  border: 1px solid #ccc;
  font-size: 11px;
  line-height: 13px;
}

p.dev-error code {
  font-size: 11px;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
  color: #1D1716;
  text-decoration: none;
  transition: all 0.3s linear;
  outline: 0;
}

a:hover {
  color: #1D1716;
}

a:hover,
a:focus,
a:active {
  outline: 0;
}

a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}

.cta {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

img {
  display: block;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

input[type],
textarea {
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  padding: 0;
  color: #1D1716;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s linear;
}

textarea {
  resize: none;
}

/*--------------------------------------------------------------
# Structure
--------------------------------------------------------------*/

body {
  background-color: #F7F5F3;
}

.wrap {
  padding: 0 44px;
  max-width: 1274px;
  margin: 0 auto;
  width: 100%;
}

#content {
  transition: all 0.4s ease-out;
  transition-delay: 0.5s;
}

.mobile,
.tablet {
  display: none;
}

/* Sections */

/* Section: Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 72vh;
  background-color: #1B3C31;
  /* min-height: 580px; */
  min-height: 776px;
}

.hero-section:not(.no-image):before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}

.hero-section .hero-section-banner {
  display: flex;
  align-items: center;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.hero-section .hero-section-banner .wrap {
  position: relative;
  width: 100%;
  padding: 0 44px 40px 148px;
}

.hero-section .hero-section-banner h1,
.hero-section .hero-section-banner h2,
.hero-section .hero-section-banner h3,
.hero-section .hero-section-banner span.h4 {
  color: #F7F5F3;
}

.hero-section:not(.no-image) .hero-section-banner h1,
.hero-section:not(.no-image) .hero-section-banner h2,
.hero-section:not(.no-image) .hero-section-banner h3,
.hero-section:not(.no-image) .hero-section-banner span.h4,
.hero-section:not(.no-image) .hero-section-banner a.cta {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.hero-section .hero-section-banner h1 {
  text-indent: -3px;
}

.hero-section .hero-section-banner span.h4 {
  padding-bottom: 10px;
  display: block;
}

.page-child .hero-section .hero-section-tagline {
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
}

.page-child .hero-section .hero-section-tagline:before {
  content: "";
  display: block;
  background-color: #E3D8CC;
  left: 0;
  position: absolute;
  width: 25%;
  height: 100%;
}

.page-child .hero-section .hero-section-tagline .wrap {
  padding: 0 0 0 148px;
}

.page-child .hero-section .hero-section-tagline .tagline-inner {
  display: flex;
  flex-direction: column;
  background-color: #E3D8CC;
  width: 402px;
  min-height: 212px;
  padding: 32px 32px 32px 0;
  position: relative;
}

.page-child .hero-section .hero-section-tagline .tagline-inner:before {
  content: "";
  display: block;
  background-color: #E3D8CC;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
}

.page-child .hero-section .hero-section-tagline p {
  font-weight: 500;
}

.hero-section .hero-section-contacts {
  padding-top: 24px;
  margin-top: auto;
  font-size: 16px;
  line-height: 20px;
}

.hero-section .hero-section-contacts span {
  margin-right: 8px;
}

.hero-section .hero-section-contacts a:not(:last-of-type) {
  margin-right: 8px;
}

.hero-section .hero-section-contacts a:hover {
  color: #1D1716 !important;
}

.hero-section.clear span.black::after {
  content: "Contact:";
}

.hero-section.clear .hero-section-contacts:has(#item-2) span.black::after {
  content: "Contacts:";
}

/* Hero No Image */
.hero-section.no-image {
  height: 33.33vh;
  min-height: inherit;
}

.hero-section.no-image .hero-section-banner {
  align-items: flex-end;
}

/* New Tagline, Parent Pages Only, only on .page, no CPTs */
body.page:not(.page-child) #page .hero-section {
  height: auto;
}

body.page:not(.page-child) #page .hero-section .hero-section-banner {
  height: 72vh;
  align-items: flex-end;
  min-height: 570px;
}

body.page:not(.page-child) #page .hero-section .hero-section-tagline {
  box-sizing: border-box;
  width: 100%;
  background: #1B3C31;
}

body.page:not(.page-child) #page .hero-section .hero-section-tagline:before {
  display: none;
}

body.page:not(.page-child) #page .hero-section .hero-section-tagline .wrap {
  padding: 0 148px;
}

@media only screen and (max-width: 767px) {
  body.page:not(.page-child) #page .hero-section .hero-section-tagline .wrap {
    padding: 0 24px;
  }
}

body.page:not(.page-child) #page .hero-section .hero-section-tagline .tagline-inner {
  padding: 60px 0 70px;
}

body.page:not(.page-child) #page .hero-section .hero-section-tagline .tagline-inner .black {
  color: #F7F5F3;
}

body.page:not(.page-child) #page .hero-section .hero-section-tagline .tagline-inner:before {
  display: none;
}

body.page:not(.page-child) #page .hero-section .hero-section-tagline p {
  font-size: 26px;
  line-height: 38px;
  color: #F7F5F3;
}

/* Fix CPT taglines */
body.single .hero-section .hero-section-tagline {
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
}

body.single .hero-section .hero-section-tagline:before {
  content: "";
  display: block;
  background-color: #E3D8CC;
  left: 0;
  position: absolute;
  width: 25%;
  height: 100%;
}

body.single .hero-section .hero-section-tagline .wrap {
  padding: 0 0 0 148px;
}

body.single .hero-section .hero-section-tagline .tagline-inner {
  display: flex;
  flex-direction: column;
  background-color: #E3D8CC;
  width: 402px;
  min-height: 212px;
  padding: 32px 32px 32px 0;
  position: relative;
}

body.single .hero-section .hero-section-tagline .tagline-inner:before {
  content: "";
  display: block;
  background-color: #E3D8CC;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
}

body.single .hero-section .hero-section-tagline p {
  font-weight: 500;
}

/* hide eyebrow on those pages ⬆ */
body.page:not(.page-child) #page .hero-section .hero-section-banner span.h4 {
  display: none;
}

/* Section: Children List */
#children-list {
  margin-bottom: 0;
}

#children-list li:not(:last-child) {
  margin-bottom: 16px;
}

#children-list li a {
  display: block;
}

#page #children-list li a:hover,
#page #children-list li.current_page_item a,
#page #children-list li.current-cat a,
#page #children-list li.current a {
  color: #1D1716;
}

/* Section: Content */
#page {
  overflow: hidden;
}

article.hentry {
  margin: 0;
}

.content-section {
  padding: 32px 44px 62px 148px;
  margin: 0 auto;
}

.content-section .col-wrap {
  display: flex;
}

.content-section .col-wrap > .col:first-child {
  flex: 0 1 402px;
  height: fit-content;
  position: relative;
}

.content-section .col-wrap > .col:only-child,
.content-section .col-wrap > .col:last-child {
  flex: 1;
}

.content-section .section-content h3 {
  margin-bottom: 16px;
}

.content-section .section-content h3:not(:first-child) {
  margin-top: 32px;
}

.content-section .section-content p:not(:last-of-type) {
  margin-bottom: 24px;
}

.content-section .section-content p:has(> strong:only-child) {
  margin-bottom: 10px;
}

.content-section .section-content p > a,
.content-section .section-content p > em a,
.content-section .section-content p > strong a {
  opacity: .6;
  text-decoration: underline;
} 

.content-section .section-content p > a:hover,
.content-section .section-content p > em a:hover,
.content-section .section-content p > strong a:hover {
  opacity: 1;
}

.content-section .section-content p > a[href*="_edn"] {
  font-size: 12px;
  vertical-align: super;
}

.content-section .section-content ul {
  margin-left: 32px;
  margin-bottom: 40px;
  list-style-type: none;
}

.content-section .section-content ul:last-child {
  margin-bottom: 0;
}

.content-section .section-content p:last-of-type + ul {
  margin-top: 24px;
}

.content-section .section-content li {
  position: relative;
  line-height: 26px;
}

.content-section .section-content li:not(:last-child) {
  margin-bottom: 20px;
}

.content-section .section-content ul li:before {
  content: "■";
  display: inline-block;
  position: absolute;
  left: -20px;
  color: #1D1716;
  font-size: 16px;
  line-height: 26px;
  top: 0;
}

.content-section .section-content ul ul {
  margin-top: 20px;
}

.content-section .section-content ul ul li:before {
  color: #838383;
}

.content-section .section-content ul ul ul li:before {
  color: #c1c1c1;
}

.content-section .section-content p img {
  margin-left: -94px;
  width: calc(100% + 94px);
  max-width: inherit;
  margin-bottom: 48px;
}

/* exceptions for staff announcements */
.single-post .content-section .section-content .category-staff-announcements p img {
  margin: 0px;
  width: 100%;
}

.content-section .section-content p iframe {
  margin-left: -94px;
  width: calc(100% + 94px);
  max-width: inherit;
  height: 282px;
}

.content-section .section-content a.image-attribution {
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
  text-transform: capitalize;
  margin-top: 40px;
  display: inline-block;
  float: right;
}

#page .content-section .section-content a.image-attribution:hover {
  color: #1D1716;
}

/* exceptions for offices */
#page .content-section .section-content .office:not(:last-child) {
  margin-bottom: 40px;
}

#page .content-section .section-content .office p.phone-fax a {
  opacity: 1;
  text-decoration: none;
}

#page .content-section .section-content .office p.phone-fax a span {
  text-decoration: underline;
}

#page .content-section .section-content .office p.phone-fax a span:not(:hover) {
  opacity: .6;
}

#page .content-section .section-content .office p.phone-fax a em {
  color: #1B3C31;
  text-decoration: none;
}

/* Page Sliders */
#page .slick-slider {
  position: relative;
  background: #1D1716;
}

#page .slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  margin-top: -50px;
  top: 50%;
  display: block;
  width: 17px;
  height: 36px;
  padding: 50px;
  z-index: 9999;
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 17px 36px;
  transition: opacity 0.4s ease-in;
}

#page .slick-arrow.slick-prev {
  left: 0;
  background-image: url(../images/carrot-left-softwhite.svg);
}

#page .slick-arrow.slick-prev.slick-disabled {
  cursor: default;
  opacity: 0.5;
}

#page .slick-arrow.slick-next {
  right: 0;
  background-image: url(../images/carrot-right-softwhite.svg);
}

#page .slick-arrow.slick-next.slick-disabled {
  cursor: default;
  opacity: 0.5;
}

#page .slick-slider .slick-dots {
  position: absolute;
  bottom: 50px;
  width: 100%;
  text-align: center;
  list-style-type: none;
  font-size: 0;
  line-height: 0;
}

#page .slick-slider .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}

#page .slick-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #F7F5F3;
  outline: 0;
  padding: 0;
  text-indent: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  display: block;
  border-radius: 50%;
}

#page .slick-slider .slick-dots li:hover button,
#page .slick-slider .slick-dots li.slick-active button {
  border: 0;
  background-color: #F7F5F3;
}

/* Paginator */
#paginator {
  margin-top: 50px;
  width: 100%;
}

#paginator a {
  display: block;
  padding: 18px 64px 18px 20px;
  background-repeat: no-repeat;
  background-size: 10px 20px;
  background-position: calc(100% - 20px) 50%;
  background-image: url(../images/carrot-right-black.svg);
  border: 1px solid #1D1716;
}

#paginator:hover a {
  color: #F7F5F3;
  border-color: #1B3C31;
  background-color: #1B3C31;
  background-image: url(../images/carrot-right-softwhite.svg);
}

#paginator:hover span {
  color: rgba(247, 245, 243, .6);
}

#paginator span,
#paginator strong {
  display: block;
}

#paginator span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

#paginator strong {
  font-weight: 400;
  margin-top: 4px;
  line-height: 24px;
}

/* Accordions */
#page #content [data-accordion].open {
  margin-bottom: 22px;
}

#page #content [data-accordion] > [data-control] {
  padding-left: 20px;
  cursor: pointer;
}

#page #content [data-accordion] > [data-control]:after {
  left: 0;
  top: 0;
  height: 100%;
  width: 12px;
  background-image: url(../images/carrot-down-grey.svg);
  background-repeat: no-repeat;
  background-position: 50% 49%;
  background-size: auto;
  transform: rotate(-90deg);
  transition: transform 0.4s ease-out;
}

#page #content [data-accordion].open > [data-control]:after {
  transform: rotate(0);
}

#page #content [data-accordion] [data-content] {
  margin-top: 18px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.4s all ease-out;
}

.site-header > .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 40px auto;
  height: 80px;
  transition: 0.4s all ease-out;
  transition-delay: 0.5s;
  overflow: hidden;
}

.site-branding {
  flex: 0 0 269px;
  height: 82px;
  position: relative;
  z-index: 200;
  margin-bottom: 39px;
}

.site-branding a {
  display: block;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  text-indent: -9999px;
  transition: none;
}

.site-header .menu-actions {
  margin-left: auto;
  position: relative;
  z-index: 200;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.site-header .menu-actions button {
  display: block;
  border: none;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  outline: 0;
  border-radius: 0;
}

.site-header .menu-actions span {
  width: 24px;
  height: 24px;
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

body:not(.hero-revert) .site-header .menu-actions span,
body:not(.hero-revert) .site-header .menu-actions a,
body:not(.hero-revert) .site-header .menu-actions input {
  transition-delay: 0.4s;
}

body:not(.hero-revert).nav-toggled .site-header .menu-actions span,
body:not(.hero-revert).nav-toggled .site-header .menu-actions a,
body:not(.hero-revert).nav-toggled .site-header .menu-actions input {
  transition-delay: 0s;
}

.site-header .menu-actions .menu-toggle span {
  background-image: url(../images/menu-softwhite.svg);
}

.site-header .menu-actions .menu-search {
  margin-right: 34px;
  display: flex;
  align-items: flex-start;
}

.site-header .menu-actions .menu-search span {
  background-image: url(../images/search-softwhite.svg);
}

.site-header .menu-actions .menu-search a {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: -16px;
  transform: translateY(5px);
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url(../images/menu-close-softwhite.svg);
  text-indent: -9999px;
  display: none;
}

.site-header .menu-actions .menu-search.active a {
  display: block;
}

.site-header .menu-actions .menu-search form {
  width: 0;
  height: 0;
  transition: width 0.4s ease-in;
}

.site-header .menu-actions .menu-search.active form {
  width: 318px;
  margin-left: 14px;
}

.site-header .menu-actions .menu-search form input[type="search"] {
  -webkit-appearance: none;
  font-size: 14px;
  line-height: 30px;
  border-bottom: 1px solid transparent;
  color: #F7F5F3;
  background-color: transparent;
  padding-right: 26px;
  transition-delay: 0s;
}

.site-header .menu-actions .menu-search.active form input[type="search"] {
  border-bottom: 1px solid #F7F5F3;
}

.nav-toggled .site-header .menu-search form input[type="search"] {
  color: #F7F5F3;
}

.nav-toggled .site-header .menu-search.active form input[type="search"] {
  border-bottom: 1px solid #F7F5F3;
}

.site-header .menu-actions .menu-search form input[type="search"]::-webkit-input-placeholder,
.site-header .menu-actions .menu-search form input[type="search"]::-moz-placeholder,
.site-header .menu-actions .menu-search form input[type="search"]:-ms-input-placeholder,
.site-header .menu-actions .menu-search form input[type="search"]:-moz-placeholder {
  color: #D0CAC8;
}

.site-header .menu-actions .menu-search form input[type="submit"] {
  display: none;
}

.site-header .main-navigation {
  flex: auto;
  float: none;
  margin-top: -110px;
  padding-left: 202px;
  opacity: 0;
  transition: all 1s ease-out;
  transition-delay: 0s;
  visibility: hidden;
}

.site-header .main-navigation ul#primary-menu {
  display: block;
  float: none;
  padding: 0;
  text-align: left;
  position: relative;
}

.site-header .main-navigation ul#primary-menu > li {
  float: none;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D0CAC8;
  padding-bottom: 10px;
  padding-top: 10px;
}

.site-header .main-navigation ul#primary-menu > li:first-child {
  padding-top: 0;
}

.site-header .main-navigation ul#primary-menu > li.menu-item-3795 {
  border-bottom: none;
}

.site-header .main-navigation ul#primary-menu > li:not(.is-contact) > a {
  color: #F7F5F3;
  flex: 0 1 30%;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -0.03em;
  font-family: "minerva-modern", serif;
  font-weight: 700;
}

.site-header .main-navigation ul#primary-menu li > a:hover,
.site-header .main-navigation ul#primary-menu li.current_page_item > a,
.site-header .main-navigation ul#primary-menu li.current-menu-item > a,
.site-header .main-navigation ul#primary-menu li.current-menu-parent > a {
  color: rgba(247, 245, 243, .6);
}

.site-header .main-navigation ul#primary-menu > li.stand-out {
  border-bottom: 0;
  padding-bottom: 0;
}

.site-header .main-navigation ul#primary-menu > li.stand-out > a {
  pointer-events: none;
  cursor: default;
}

.site-header .main-navigation ul#primary-menu > li.is-contact {
  border-bottom: 0;
  position: absolute;
  right: 0;
  bottom: -30px;
}

.site-header .main-navigation ul#primary-menu > li.is-contact a {
  padding: 4px 60px;
  color: #F7F5F3;
  font-size: 14px;
  border: 1px solid #F7F5F3;
  flex: inherit;
  line-height: 28px;
}

.site-header .main-navigation ul#primary-menu > li.is-contact a:hover {
  color: #1D1716;
  border-color: #F7F5F3;
  background-color: #F7F5F3;
}

/* Toggled */
body.nav-toggled .site-header {
  background-color: #1D1716;
}

body.nav-toggled .site-header > .wrap {
  height: 571px;
  position: relative;
  transition-delay: 0s;
}

body.nav-toggled .site-header .menu-actions .menu-toggle span {
  background-image: url(../images/menu-close-softwhite.svg);
}

body.nav-toggled .site-header .main-navigation {
  opacity: 1;
  transition-delay: 0.3s;
  visibility: unset;
}

body.nav-toggled #content {
  margin-top: 628px;
  transition-delay: 0s;
}

/* Submenu */
.site-header .main-navigation ul.sub-menu {
  box-shadow: none;
  position: inherit;
  float: none;
  top: inherit;
  left: inherit;
  z-index: inherit;
  flex: 0 1 70%;
}

.site-header .main-navigation ul.sub-menu li:not(:last-child) {
  margin-right: 24px;
}

.site-header .main-navigation ul.sub-menu li > a {
  color: #F7F5F3;
  font-size: 14px;
  line-height: 38px;
  display: block;
  width: auto;
}

.site-header .main-navigation ul.sub-menu li > a:hover,
.site-header .main-navigation ul.sub-menu li.current_page_item > a,
.site-header .main-navigation ul.sub-menu li.current-menu-item > a {
  color: #F7F5F3;
}

/* Exception for Careers Similinks */
#menu-item-2918 .sub-menu li:not(:first-child).current-menu-item.menu-item-type-custom > a {
  color: #F7F5F3;
}

#menu-item-2918 .sub-menu li:not(:first-child).current-menu-item.menu-item-type-custom > a:hover {
  color: #F7F5F3;
}

#menu-item-2918 .sub-menu li:not(:first-child).current-menu-item.menu-item-type-custom > a.mPS2id-clicked {
  color: #F7F5F3;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/

/* Tagline */
#tagline-wrap {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  height: calc(100vh - 155px);
  padding: 0;
  max-width: inherit;
}

#tagline-wrap h1 {
  text-indent: -3px;
  padding: 0 44px 40px 162px;
  max-width: 1274px;
  margin: 0 auto;
  width: 100%;
  cursor: default;
  position: relative;
  z-index: 10;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Slider */
.home .hero-section {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 155px);
  background-repeat: no-repeat;
  background-size: cover;
}

.home .hero-section .slick-slider,
.home .hero-section .slick-track,
.home .hero-section .slick-slide {
  height: calc(100vh - 155px);
}

.home .hero-section .slick-slide {
  height: 100%;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.home .hero-section .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home .hero-section .hero-section-banner {
  align-items: flex-end;
  padding-bottom: 72px;
  max-width: 1274px;
  margin: 0 auto;
}

.home .hero-section .hero-section-banner .wrap {
  max-width: 696px;
  margin: 0;
  padding: 0 44px 40px 162px;
}

.home .hero-section span {
  display: block;
  text-transform: uppercase;
}

.home .hero-section h2 {
  font-size: 60px;
  line-height: 75px;
}

.home .hero-section h3 {
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Practice Areas
--------------------------------------------------------------*/

/* Related Experience */
.single-practice-area #related-experience {
  margin-top: 30px;
}

.single-practice-area #related-experience h3.section-heading {
  margin-bottom: 25px;
}

.single-practice-area #related-experience.accordion ul {
  margin-top: 0;
  margin-left: 39px;
}

/*--------------------------------------------------------------
# Lawyers
--------------------------------------------------------------*/

/* Header */
@media only screen and (min-width: 767px) {
  body.post-type-archive-lawyer:not(.nav-toggled) .site-branding a {
    background-image: url(../images/hj-ironwood.svg) !important;
  }
}

/* Hero */
.post-type-archive-lawyer .hero-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #E3D8CC;
}

.post-type-archive-lawyer .hero-section:before {
  display: none;
}

.post-type-archive-lawyer .hero-section .hero-section-banner {
  flex: 1;
  justify-content: flex-end;
}

.post-type-archive-lawyer .hero-section .hero-section-banner .wrap {
  max-width: 422px;
  width: inherit;
  margin: 0;
  padding: 0 138px 0 44px;
}

.post-type-archive-lawyer .hero-section .hero-section-banner h1,
.post-type-archive-lawyer .hero-section .hero-section-banner h2,
.post-type-archive-lawyer .hero-section .hero-section-banner h3,
.post-type-archive-lawyer .hero-section .hero-section-banner h4,
.post-type-archive-lawyer .hero-section .hero-section-banner a.cta {
  text-shadow: none;
}

.hero-section .hero-section-banner h1 span {
  color: rgba(247, 245, 243, .6);
}

.post-type-archive-lawyer .hero-section .hero-section-banner h3 {
  line-height: 32px;
  font-weight: 600;
}

.post-type-archive-lawyer .hero-section .hero-section-banner p {
  font-weight: 600;
  line-height: 22px;
  padding-top: 18px;
}

.post-type-archive-lawyer .hero-section .lawyer-slider {
  width: 50%;
  position: relative;
}

.post-type-archive-lawyer .hero-section .slick-slider,
.post-type-archive-lawyer .hero-section .slick-track,
.post-type-archive-lawyer .hero-section .slick-slide,
.post-type-archive-lawyer .hero-section .slick-list {
  height: 100%;
}

.post-type-archive-lawyer .hero-section .slick-slide {
  height: 100%;
  position: relative;
  z-index: 1;
}

.post-type-archive-lawyer .hero-section ul li a {
  display: block;
}

.post-type-archive-lawyer .hero-section ul li {
  height: 100%;
  position: relative;
}

.post-type-archive-lawyer .hero-section ul li .lawyer-slide-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 42% 50%;
}

.post-type-archive-lawyer .hero-section ul li .lawyer-slide-title {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #1B3C31;
  padding: 14px 12px;
  box-sizing: border-box;
  text-align: center;
  max-width: 290px;
  width: 100%;
}

.post-type-archive-lawyer .hero-section ul li .lawyer-slide-title h3 {
  font-size: 22px;
  line-height: 38px;
}

.post-type-archive-lawyer .hero-section .lawyer-slide-counter {
  position: absolute;
  bottom: 0;
  left: -290px;
  background-color: #1D1716;
  padding: 14px 16px;
  box-sizing: border-box;
  text-align: center;
  max-width: 290px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-type-archive-lawyer .hero-section .lawyer-slide-counter span {
  font-size: 16px;
  line-height: 38px;
  width: 100%;
  letter-spacing: 0.08em;
}

.post-type-archive-lawyer .hero-section .lawyer-slide-counter button {
  width: 12px;
  height: 20px;
  border: 0;
  outline: 0;
  padding: 0;
  text-indent: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  display: block;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  transition: opacity 0.4s ease-in;
  background-color: transparent;
}

.post-type-archive-lawyer
  .hero-section
  .lawyer-slide-counter
  button.slick-disabled {
  cursor: default;
  opacity: 0.5;
}

.post-type-archive-lawyer
  .hero-section
  .lawyer-slide-counter
  button.slick-prev {
  margin-right: auto;
  background-image: url(../images/carrot-left-softwhite.svg);
}

.post-type-archive-lawyer
  .hero-section
  .lawyer-slide-counter
  button.slick-next {
  margin-left: auto;
  background-image: url(../images/carrot-right-softwhite.svg);
}

/* Content */
.post-type-archive-lawyer .content-section {
  padding: 66px 44px 0 44px;
}

/* Search Lawyers */
.post-type-archive-lawyer #search-lawyers {
  margin-bottom: 90px;
}

.post-type-archive-lawyer #search-lawyers form {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.post-type-archive-lawyer #search-lawyers form input[type="search"] {
  font-size: 16px;
  line-height: 39px;
  border-bottom: 1px solid #7A7271;
  background: transparent;
}

.post-type-archive-lawyer
  #search-lawyers
  form
  input[type="search"]::-webkit-input-placeholder {
  color: #7A7271;
}

.post-type-archive-lawyer
  #search-lawyers
  form
  input[type="search"]::-moz-placeholder {
  color: #7A7271;
}

.post-type-archive-lawyer
  #search-lawyers
  form
  input[type="search"]:-ms-input-placeholder {
  color: #7A7271;
}

.post-type-archive-lawyer
  #search-lawyers
  form
  input[type="search"]:-moz-placeholder {
  color: #7A7271;
}

.post-type-archive-lawyer #search-lawyers form input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  height: 40px;
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url(../images/search-black.svg);
  text-indent: -9999px;
  background-color: transparent;
}

/* Lawyers Results */
.post-type-archive-lawyer .content-section #lawyers-results {
  position: relative;
  min-height: 252px;
}

.post-type-archive-lawyer .content-section #lawyers-results ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -13px;
  background-color: #F7F5F3;
  position: relative;
  z-index: 10;
}

.post-type-archive-lawyer .content-section #lawyers-results ul li {
  flex: 0 1 calc(20% - 26px);
  margin: 0 13px 34px 13px;
}

.post-type-archive-lawyer .content-section #lawyers-results ul li a {
  display: block;
}

.post-type-archive-lawyer .content-section #lawyers-results ul li img {
  margin-bottom: 20px;
}

.post-type-archive-lawyer .content-section #lawyers-results ul li p {
  margin-bottom: 0;
}

.post-type-archive-lawyer .content-section #lawyers-results ul li p.lawyer-role {
  font-size: 16px;
  line-height: 20px;
}

/* Lawyers No Results */
.post-type-archive-lawyer #lawyers-no-results {
  position: absolute;
  z-index: 1;
  top: 0;
  text-align: center;
  width: 100%;
}

/*--------------------------------------------------------------
# Single Lawyer
--------------------------------------------------------------*/

/* Header */
@media only screen and (min-width: 767px) {
  body.single-lawyer:not(.nav-toggled) .site-branding a {
    background-image: url(../images/hj-ironwood.svg) !important;
  }
}

/* Hero */
.single-lawyer .hero-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #E3D8CC;
}

.single-lawyer .hero-section:before {
  display: none;
}

.single-lawyer .hero-section .hero-section-banner {
  flex: 1;
  justify-content: flex-end;
}

.single-lawyer .hero-section .hero-section-banner .wrap {
  max-width: 472px;
  width: 100%;
  margin: 0;
  padding: 0 156px 0 44px;
}

.single-lawyer .hero-section .hero-section-banner h3,
.single-lawyer .hero-section .hero-section-banner h4,
.single-lawyer .hero-section .hero-section-banner a.cta {
  text-shadow: none;
}

.single-lawyer .hero-section .hero-section-banner h3 {
  line-height: 32px;
  font-weight: 600;
  padding-bottom: 16px;
}

.single-lawyer .hero-section .hero-section-banner strong.lawyer-role {
  padding-bottom: 10px;
}

.single-lawyer .hero-section #lawyer-contact a {
  font-weight: 500;
  display: block;
  font-size: 14px;
  line-height: 22px;
}

.single-lawyer .hero-section #lawyer-contact a:hover {
  color: #1D1716;
}

.single-lawyer .hero-section #lawyer-contact a span {
  margin-left: 4px;
  color: #7A7271;
}

.single-lawyer .hero-section #lawyer-files {
  padding-top: 16px;
}

.single-lawyer .hero-section #lawyer-files a {
  font-size: 14px;
  line-height: 22px;
  color: #7A7271;
}

.single-lawyer .hero-section #lawyer-files a:not(:last-child):after {
  content: "|";
  margin: 0 5px;
  display: inline-block;
  color: #1D1716;
}

.single-lawyer .hero-section #lawyer-files a:hover {
  color: #1D1716;
}

.single-lawyer .hero-section .lawyer-slider {
  flex: 0 1 54%;
  position: relative;
  background-repeat: no-repeat;
  background-position: 42% 50%;
  background-size: cover;
}

/* Content */
.single-lawyer .wrap.content-section {
  padding: 32px 0 62px;
  max-width: inherit;
}

.single-lawyer .content-section .col-wrap > .col:first-child {
  flex: 0 1 46%;
}

.single-lawyer .content-section .col-wrap > .col:only-child,
.single-lawyer .content-section .col-wrap > .col:last-child {
  max-width: 680px;
}

.single-lawyer .content-section .col-wrap .section-content p {
  font-size: 18px;
  line-height: 30px;
}

.single-lawyer .lawyer-section {
  max-width: 472px;
  margin-left: auto;
  width: 100%;
  padding: 0 156px 0 44px;
}

.single-lawyer .lawyer-section > h3 {
  margin-top: 32px;
  font-size: 28px;
  line-height: 36px;
  padding-bottom: 12px;
}

.single-lawyer .lawyer-section > h3:only-of-type {
  margin-top: 0;
}

.single-lawyer #page .lawyer-section a,
.single-lawyer #page .lawyer-section p,
.single-lawyer #page .lawyer-section li {
  font-size: 14px;
  line-height: 20px;
  color: #7A7271;
}

.single-lawyer .lawyer-section a:not(:last-of-type),
.single-lawyer .lawyer-section p:not(:last-of-type),
.single-lawyer .lawyer-section li:not(:last-of-type) {
  margin-bottom: 10px;
}

.single-lawyer #page .lawyer-section a:hover {
  color: #1D1716;
}

.single-lawyer .section-content .accordion {
  margin-top: 30px;
}

.single-lawyer .section-content .accordion ul {
  margin-top: 0;
}

.single-lawyer .section-content .accordion [data-content] {
  padding-left: 20px;
}

.single-lawyer .section-content .accordion [data-content] h3 {
  font-size: 28px;
  line-height: 36px;
}

.lawyer-section.certification-logos {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 32px;
}

.lawyer-section.certification-logos .logo-item {
  padding: 0px 20px 20px 0px;
  justify-content: center;
  width: calc(100% - 20px);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/* Hero */
.page-template-page-contact .hero-section .hero-section-banner > .wrap {
  background: none;
}

.page-template-page-contact .hero-section .hero-section-tagline .tagline-inner {
  flex-direction: row;
  width: fit-content;
}

.page-template-page-contact .hero-section .hero-section-tagline .office {
  margin-right: 65px;
  margin-bottom: 32.5px;
}

.page-template-page-contact
  .hero-section
  .hero-section-tagline
  .office:last-of-type {
  margin-bottom: 0px;
}

.page-template-page-contact .hero-section .hero-section-tagline .office strong {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 22px;
  display: inline-block;
}

.page-template-page-contact .hero-section .hero-section-tagline .office div {
  min-height: 66px;
  margin-bottom: 10px;
}

.page-template-page-contact .hero-section .hero-section-tagline .office a {
  display: block;
}

.page-template-page-contact
  .hero-section
  .hero-section-tagline
  .office
  a:hover {
  color: #1D1716;
}

.page-template-page-contact .hero-section .hero-section-tagline .office a span {
  margin-left: 4px;
  color: rgba(247, 245, 243, .6);
}

/* Contact */
.page-template-page-contact .content-section .section-content h3 {
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-template-page-contact
  .content-section
  .section-content
  p:not(:last-of-type) {
  margin-bottom: 28px;
}

/* Map */
.page-template-page-contact #map {
  width: 100% !important;
  margin: 0;
  padding: 0;
}

.gm-style-iw > div:not(.gm-style-iw-chr) {
  max-width: 294px !important;
  display: block !important;
  margin: 0 auto;
  padding: 16px 0 0;
}

.gm-style-iw .gm-style-iw-chr {
  display: none;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}

.gm-style-iw p {
  max-width: 185px;
  margin: 0 auto;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #1D1716;
}

.gm-style-iw p a {
  color: #7A7271;
}

.gm-style-iw p a:hover {
  color: #1D1716;
}

img[src="https://maps.gstatic.com/mapfiles/api-3/images/mapcnt6.png"]
{
  display: none !important;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

/* Header */
.blog .hero-section .hero-section-banner span.h4 {
  display: none;
}

/* Posts */
.blog .content-section .col-wrap > .col:last-child {
  padding-right: 0;
}

.has-posts article {
  padding-bottom: 44px;
  margin-bottom: 38px;
  border-bottom: 1px solid #95989a;
}

.has-posts article:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.has-posts article .col-wrap .col:first-child {
  flex: 0 1 33.33%;
  padding-right: 20px;
}

.has-posts article .col-wrap .col:last-child {
  flex: 0 1 66.66%;
  padding-right: 0;
}

.has-posts article .post-image {
  margin-bottom: 25px;
}

.has-posts article .post-image a {
  display: block;
}

.has-posts article .post-image img {
  width: 100%;
}

.has-posts article .post-info {
  margin-bottom: 8px;
}

.has-posts article .post-info p {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.08em;
}

.has-posts article .post-title h3 {
  display: block;
  margin-bottom: 10px;
}

.has-posts article .post-summary p {
  line-height: 22px;
}

.has-posts article a.post-read-more {
  display: block;
  margin-top: 20px;
}

/* Sidebar */
#news-sidebar .sidebar-section:not(:last-child) {
  margin-bottom: 32px;
}

#news-sidebar .sidebar-title {
  display: block;
  margin-bottom: 18px;
}

#news-sidebar ul#children-list li {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Single
--------------------------------------------------------------*/

/* Hero */
.single-post .hero-section {
  height: 20vh;
  min-height: 250px;
}

.single-post .hero-section .hero-section-banner {
  display: none;
}

/* Content */
.single-post article .post-title {
  padding-right: 0;
  margin-bottom: 46px;
  padding-top: 10px;
}

.single-post article .post-title h2 {
  font-size: 38px;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.single-post article .post-summary p {
  line-height: 28px;
  word-break: break-word;
}

.single-post article .post-summary h3:not(.section-heading) {
  font-size: 28px;
  line-height: 36px;
  margin-top: 46px;
}

.single-post article .post-summary h3:not(.section-heading) span,
.single-post article .post-summary h3:not(.section-heading) strong {
  color: #1D1716;
}

.single-post article .post-summary ul {
  /* margin-top: -26px; */
}

/*--------------------------------------------------------------
# Case Studies
--------------------------------------------------------------*/
.post-type-archive-case-study #case-studies {
  padding: 60px 148px 40px;
}

.post-type-archive-case-study .case-studies-list {
  margin: 0 -13px;
}

.post-type-archive-case-study .case-study-item {
  width: calc(50% - 26px);
  margin: 0 13px 40px;
}

.post-type-archive-case-study .case-study-item .image {
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 220px;
  display: block;
}

.post-type-archive-case-study .case-study-item span.summary {
  margin-top: 6px;
  font-size: 16px;
  line-height: 22px;
  display: block;
  padding-right: 24px;
}

.post-type-archive-case-study .case-study-item h2 {
  padding-right: 24px;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.page-template-page-newsletter #newsletters,
.page-template-page-newsletter #newsletter-archive {
  padding: 60px 148px 40px;
}

.page-template-page-newsletter .newsletter-list {
  margin: 0 -13px;
}

.page-template-page-newsletter .newsletter-item {
  width: calc(50% - 26px);
  margin: 0 13px 40px;
}

.page-template-page-newsletter .newsletter-item .image {
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 220px;
  display: block;
}

.page-template-page-newsletter .newsletter-item span.season {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.08em;
  color: #1D1716;
  display: block;
}

.page-template-page-newsletter .newsletter-item h2 {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.02em;
  padding-right: 24px;
}

.page-template-page-newsletter .newsletter-item h2 a {
  color: #1D1716;
}

.page-template-page-newsletter .newsletter-item:hover h2 a,
.page-template-page-newsletter .newsletter-item h2 a:hover {
  color: #1B3C31;
}

.page-template-page-newsletter #newsletter-signup {
  background-color: #F7F5F3;
}

.page-template-page-newsletter #newsletter-signup .wrap {
  padding-left: 148px;
  padding-right: 148px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:first-child {
  padding-right: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1B3C31;
  position: relative;
  flex: 1;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:first-child:before {
  content: "";
  display: block;
  width: 1000%;
  left: -1000%;
  top: 0;
  position: absolute;
  height: 100%;
  background-color: #1B3C31;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:first-child
  h2 {
  color: #F7F5F3;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.01em;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:first-child
  p {
  color: #F7F5F3;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 26px;
  max-width: 465px;
  width: 100%;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p:not(.submit):not(.compliance) {
  margin-bottom: 15px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p:not(.compliance)
  label {
  display: none;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p
  span {
  display: block;
  margin: 0;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p
  input:not([type="checkbox"]) {
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.03em;
  color: #1D1716;
  padding: 15px 10px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.compliance {
  margin-top: 30px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.compliance
  label {
  display: flex;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.compliance
  label
  input {
  margin-right: 6px;
  margin-top: 4px;
  -webkit-appearance: checkbox;
  width: auto;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.compliance
  label
  span {
  flex: 1;
  font-size: 12px;
  line-height: 20px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.submit {
  margin-top: 15px;
  margin-left: 19px;
  display: flex;
  align-items: center;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.submit
  input {
  padding: 5px 40px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  display: inline-block;
  text-transform: inherit;
  border: 1px solid #1B3C31;
  color: #1B3C31;
  background: transparent;
  width: auto;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.submit
  input:hover {
  color: #F7F5F3;
  background: #1B3C31;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  p.submit
  .wpcf7-spinner {
  margin-left: 10px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  .wpcf7-not-valid-tip {
  font-size: 12px;
  line-height: 20px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form
  .signup-banner
  .col:last-child
  .form
  .wpcf7-response-output {
  border: 0;
  margin: 15px 0 0 19px;
  padding: 0;
  font-size: 12px;
  line-height: 20px;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form.invalid
  .signup-banner
  .col:last-child
  .form
  .wpcf7-response-output,
.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form.unaccepted
  .signup-banner
  .col:last-child
  .form
  .wpcf7-response-output,
.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form.payment-required
  .signup-banner
  .col:last-child
  .form
  .wpcf7-response-output {
  color: #1B3C31;
}

.page-template-page-newsletter
  #newsletter-signup
  .wrap
  form.sent
  .signup-banner
  .col:last-child
  .form
  .wpcf7-response-output {
  color: #46b450;
}

.page-template-page-newsletter #newsletter-archive .newsletter-title {
  margin-bottom: 20px;
  padding-top: 40px;
  border-top: 1px solid #707070;
}

.page-template-page-newsletter #newsletter-archive .newsletter-title h3 {
  color: #1D1716;
}

.page-template-page-newsletter
  #newsletter-archive
  .newsletter-title
  .newsletter-filter {
  margin-left: auto;
}

.page-template-page-newsletter
  #newsletter-archive
  .newsletter-title
  .newsletter-filter
  select {
  font-size: 16px;
  line-height: 23px;
  color: #838383;
  border: 1px solid #95989a;
  padding: 10px 16px;
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url(../images/select.svg);
  background-position: calc(100% - 16px) 50%;
  background-size: 20px auto;
  background-repeat: no-repeat;
}

.page-template-page-newsletter #newsletter-archive .no-results {
  height: 150px;
  border: 1px solid #eeeeee;
  padding: 20px;
  background: rgba(250, 250, 250, 0.5);
  border-radius: 3px;
  display: none;
}

/*--------------------------------------------------------------
# Search Results
--------------------------------------------------------------*/

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  margin-top: 50px;
  justify-content: space-between;
}

.pagination .next {
  width: 100%;
  max-width: 240px;
}

.pagination a {
  display: block;
  padding: 18px 20px;
  background-repeat: no-repeat;
  background-size: 10px 20px;
  border: 1px solid;
  line-height: 23px;
  font-size: 16px;
  border-radius: 0;
  max-width: 240px;
  width: 100%;
  background-color: transparent;
}

.pagination a:hover {
  color: #F7F5F3;
  border-color: #1B3C31;
  background-color: #1B3C31;
}

.pagination > a {
  /* Prev */
  text-align: right;
  background-image: url(../images/carrot-left-black.svg);
  background-position: 20px 50%;
}

.pagination > a:hover {
  /* Prev */
  color: #F7F5F3;
  background-image: url(../images/carrot-left-softwhite.svg);
}

.pagination .next a {
  text-align: left;
  background-image: url(../images/carrot-right-black.svg);
  background-position: calc(100% - 20px) 50%;
}

.pagination .next a:hover {
  color: #F7F5F3;
  background-image: url(../images/carrot-right-softwhite.svg);
}

/*--------------------------------------------------------------
# Error
--------------------------------------------------------------*/

.error404 .hero-section {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 155px);
  background-repeat: no-repeat;
  background-size: cover;
}

.error404 .hero-section .hero-section-banner .wrap h4 {
  color: #F7F5F3;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
  background-color: #1D1716;
}

.site-footer p {
  font-size: 12px;
  line-height: 16px;
  color: #F7F5F3;
}

.site-footer a {
  color: #F7F5F3;
}

.site-footer a:hover {
  color: rgba(247, 245, 243, .6);
}

/* Footer Navigation */
#footer-navigation {
  float: none;
}

#footer-navigation ul {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

#footer-navigation ul li {
  float: none;
}

#footer-navigation ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

#footer-navigation li > a:hover,
#footer-navigation li.current_page_item > a,
#footer-navigation li.current-menu-item > a,
#footer-navigation li.current-menu-parent > a {
  color: rgba(247, 245, 243, .6);
}

#footer-navigation ul .sub-menu {
  display: none;
}

#footer-menu li:not(.menu-item-has-children):not(.is-contact) {
  display: none;
}

#footer-navigation ul li.is-contact {
  margin-left: auto;
}

#footer-navigation ul li.is-contact a {
	padding: 6px 40px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.02em;
  font-weight: 400;
	display: inline-block;
	text-transform: inherit;
	border: 1px solid #F7F5F3;
	color: #F7F5F3;
}

#footer-navigation ul li.is-contact a:hover {
  color: #1D1716;
  border-color: #1D1716;
  background-color: #F7F5F3;
}

/* Footer Info */
#footer-info {
  padding-top: 22px;
  padding-bottom: 20px;
}

/* Footer Social */
#footer-social {
  display: flex;
  align-items: center;
}

#footer-social ul {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

#footer-social li:not(:last-child) {
  margin-right: 16px;
}

#footer-social li a {
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  height: 20px;
  width: 20px;
}

#footer-social li a:hover {
  opacity: .6;
}

#footer-social li a.linkedin {
  background-image: url(../images/linkedin-softwhite.svg);
}

#footer-social li a.twitter {
  background-image: url(../images/twitter-softwhite.svg);
}

#footer-social li a.instagram {
  background-image: url(../images/instagram-softwhite.svg);
}

#footer-social .mailing-list a {
  padding: 4px 32px;
  display: block;
  color: #F7F5F3;
  border: 1px solid #F7F5F3;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

#footer-social .mailing-list a:hover {
  color: #1D1716;
  border-color: #1D1716;
  background-color: #F7F5F3;
}

/* Footer Copyright */
#footer-info .footer-inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

#footer-copyright {
  margin-left: auto;
  text-align: right;
}

/* Dev */
.dev {
  background: yellow;
}

.grecaptcha-badge {
  display: none !important;
}

/* Latest fixes */
section.flexible > #how-we-work + #technology {
  margin-bottom: 60px;
}

.player .vp-title {
  display: none;
}