/*
  Table of Content
==================================================

  01. Normalize
  02. Reset
  03. Animation
  04. Plugin
  05. Layout
  06. Toolbar
  07. Header
  08. Footer
  09. Nav
  10. Banner
  11. Category
  12. Intro
  13. Post
  14. Testimonial
  15. Newsletter
  16. Contact
  17. Editor
  18. Popup

*/

/**
--------------------------------------------------
  Normalize
--------------------------------------------------
**/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
          text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/**
--------------------------------------------------
  Reset
--------------------------------------------------
**/
html {
  font-family: "proxima-nova", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  color: #434343;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
}

img {
  vertical-align: top;
}

svg {
  display: block;
  fill: currentColor;
  -webkit-transition: color 0.25s ease-out;
          transition: color 0.25s ease-out;
}

a,
button,
input,
textarea {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-property: background-color, border-color, color;
          transition-property: background-color, border-color, color;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  vertical-align: top;
}

button {
  outline: 0;
  cursor: pointer;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
  opacity: 1;
}

input:focus,
textarea:focus {
  outline: 0;
}

input {
  line-height: normal;
}

textarea {
  resize: none;
}

/**
--------------------------------------------------
  Animation
--------------------------------------------------
**/
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
          animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

/**
--------------------------------------------------
  Plugin
--------------------------------------------------
**/
.owl-carousel,
.owl-stage,
.owl-stage-outer,
.owl-item {
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.owl-carousel.owl-loaded,
.owl-carousel.owl-loading {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor:         grab;
}

.owl-stage {
  -ms-touch-action: pan-Y;
      touch-action: manipulation;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.owl-stage::after {
  display: table;
  clear: both;
  pointer-events: none;
  content: "";
}

.owl-stage-outer {
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.owl-wrapper,
.owl-item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.owl-item {
  min-height: 1px;
  float: left;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-nav.disabled,
.owl-dots.disabled {
  display: none;
}

.owl-prev,
.owl-next,
.owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.owl-prev span,
.owl-next span,
.owl-dot span {
  display: none;
}

.owl-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.owl-dot {
  width: 16px;
  height: 16px;
  margin: 0 8px;
  padding: 0;
  outline: none;
  background-color: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 50%;
}
.owl-dot.active {
  background-color: #fff;
}

.owl-height {
  -webkit-transition: height 0.15s ease-out;
          transition: height 0.15s ease-out;
}

.mfp-bg,
.mfp-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mfp-bg {
  z-index: 1042;
  overflow: hidden;
  background-color: #0b3729;
  opacity: 0.5;
}

.mfp-wrap {
  z-index: 1043;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.mfp-container::before {
  display: inline-block;
  height: 100%;
  pointer-events: none;
  content: "";
  vertical-align: middle;
}

.mfp-align-top .mfp-container::before {
  display: none;
}

.mfp-content {
  position: relative;
  z-index: 1045;
  display: inline-block;
  margin: 0 auto;
  padding: 0 15px;
  vertical-align: middle;
  text-align: left;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-hide {
  display: none !important;
}

.mfp-zoom .mfp-popup {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.mfp-zoom.mfp-ready .mfp-popup {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mfp-zoom.mfp-removing .mfp-popup {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.mfp-zoom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
          transition: opacity 0.3s ease-out;
}

.mfp-zoom.mfp-ready.mfp-bg {
  opacity: 0.5;
}

.mfp-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
--------------------------------------------------
  Layout
--------------------------------------------------
**/
.wrapper {
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: auto;
}

.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.container.fluid {
  width: auto;
  max-width: 1366px;
}

/* mobile */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 690px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .container {
    max-width: 930px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1110px;
  }
}

/**
--------------------------------------------------
  Toolbar
--------------------------------------------------
**/
.toolbar {
  line-height: 1;
  background-color: #026b49;
}
.toolbar-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #e98a39;
}
.toolbar-icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 2000px;
  pointer-events: none;
  content: "";
  background-color: #e98a39;
}
.toolbar-icon ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.toolbar-icon a {
  display: block;
  color: #fff;
}
.toolbar-icon a:hover {
  color: #026b49;
}
.toolbar-link {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.toolbar-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.toolbar-link a {
  display: block;
  color: #bccfc7;
}
.toolbar-link a:hover,
.toolbar-link a.active {
  color: #e98a39;
}

/* mobile */
@media (max-width: 767px) {
  .toolbar {
    position: relative;
    height: 10px;
  }
  .toolbar::before,
  .toolbar::after {
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    content: "";
  }
  .toolbar::before {
    right: 50%;
    left: 0;
    background-color: #e98a39;
  }
  .toolbar::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 12px;
    background-color: #fff;
  }
  .toolbar-icon,
  .toolbar-link {
    display: none;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .toolbar-icon {
    width: 128px;
    padding-right: 10px;
    border-right: #fff solid 10px;
  }
  .toolbar-icon a {
    padding: 8px 6px;
  }
  .toolbar-icon svg {
    width: 14px;
    height: 14px;
  }
  .toolbar-link {
    padding-right: 12px;
    font-size: 8px;
  }
  .toolbar-link a {
    padding: 11px 8px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .toolbar-icon {
    width: 150px;
    padding-right: 13px;
    border-right: #fff solid 12px;
  }
  .toolbar-icon a {
    padding: 10px 7px;
  }
  .toolbar-icon svg {
    width: 18px;
    height: 18px;
  }
  .toolbar-link {
    padding-right: 18px;
    font-size: 12px;
  }
  .toolbar-link a {
    padding: 13px 12px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .toolbar-icon {
    width: 176px;
    padding-right: 15px;
    border-right: #fff solid 15px;
  }
  .toolbar-icon a {
    padding: 11px 10px;
  }
  .toolbar-icon svg {
    width: 22px;
    height: 22px;
  }
  .toolbar-link {
    padding-right: 15px;
    font-size: 14px;
  }
  .toolbar-link a {
    padding: 15px;
  }
}

/**
--------------------------------------------------
  Header
--------------------------------------------------
**/
.header {
  line-height: 1;
  background-color: #fff;
}
.header-title {
  display: none;
}
.header-logo a {
  display: block;
}
.header-logo img {
  width: auto;
}
.header-toggle button {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: #026b49;
}
.header-toggle svg {
  width: 40px;
  height: 40px;
}
.header-nav {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-nav a {
  display: block;
  color: #026b49;
}
.header-nav a:hover,
.header-nav a.active {
  color: #e98a39;
}

/* mobile */
@media (max-width: 767px) {
  .header-logo {
    padding: 30px 0;
  }
  .header-logo img {
    height: 40px;
  }
  .header-toggle {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-nav {
    display: none;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .header-logo {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-toggle {
    display: none;
  }
  .header-button {
    position: relative;
    z-index: 1;
  }
  .header-button::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 2000px;
    pointer-events: none;
    content: "";
    background-color: #e98a39;
  }
  .header-button a {
    background-color: #e98a39;
    color: #fff;
  }
  .header-button a:hover {
    background-color: #026b49;
    -webkit-box-shadow: 2px 1px 26px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 1px 26px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .header-logo img {
    height: 40px;
  }
  .header-nav {
    font-size: 10px;
  }
  .header-nav a {
    padding: 33px 10px;
  }
  .header-button {
    margin-left: 10px;
  }
  .header-button a {
    padding: 33px 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1450px) {
  .header-logo img {
    height: 60px;
  }
  .header-nav {
    font-size: 15px;
  }
  .header-nav a {
    padding: 40px 15px;
  }
  .header-button {
    margin-left: 15px;
  }
  .header-button a {
    padding: 40px 30px;
  }
}

/* desktop */
@media (min-width: 1451px) {
  .header-logo img {
    height: 55px;
  }
  .header-nav {
    font-size: 18px;
  }
  .header-nav a {
    padding: 46px 15px;
  }
  .header-button {
    margin-left: 15px;
  }
  .header-button a {
    padding: 46px 30px;
  }
}

/**
--------------------------------------------------
  Footer
--------------------------------------------------
**/
.footer {
  line-height: 1;
  text-transform: uppercase;
  background-color: #2c2c2c;
}
.footer-link {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.footer-link a {
  display: block;
  color: #979797;
}
.footer-link a:hover,
.footer-link a.active {
  color: #e98a39;
}
.footer-logo,
.footer-brand {
  opacity: 0.3;
}
.footer-logo a,
.footer-brand a {
  display: block;
}
.footer-logo img,
.footer-brand img {
  width: auto;
}
.footer-icon a,
.footer-info a {
  color: rgba(255, 255, 255, 0.3);
}
.footer-icon a:hover,
.footer-info a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-icon ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-icon a {
  display: block;
  padding: 10px;
}
.footer-info {
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
}
.footer-group {
  border-top: rgba(255, 255, 255, 0.3) solid 2px;
}

/* mobile */
@media (max-width: 767px) {
  .footer-link {
    padding: 30px 0;
    font-size: 17px;
  }
  .footer-link a {
    padding: 9px 0;
  }
  .footer-logo {
    display: none;
  }
  .footer-brand img {
    height: 70px;
  }
  .footer-icon {
    padding: 15px 0;
  }
  .footer-icon svg {
    width: 16px;
    height: 16px;
  }
  .footer-info {
    font-size: 14px;
  }
  .footer-info p {
    margin-top: 9px;
  }
  .footer-info p:first-child {
    margin-top: 0;
  }
  .footer-grid {
    padding: 30px 20px;
    text-align: center;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .footer {
    position: relative;
  }
  .footer-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-logo {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer-brand {
    display: none;
  }
  .footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-info p {
    position: relative;
    margin-left: 25px;
  }
  .footer-info p::before {
    position: absolute;
    bottom: 0;
    left: -13px;
    width: 1px;
    pointer-events: none;
    content: "";
    background-color: currentColor;
  }
  .footer-info p:first-child {
    margin-left: 0;
  }
  .footer-info p:first-child::before {
    display: none;
  }
  .footer-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-link {
    padding: 30px 0;
    font-size: 11px;
  }
  .footer-link ul {
    margin-right: 50px;
  }
  .footer-link a {
    padding: 5px 0;
  }
  .footer-logo img {
    height: 48px;
  }
  .footer-icon svg {
    width: 12px;
    height: 12px;
  }
  .footer-info {
    font-size: 10px;
  }
  .footer-info p::before {
    top: 0;
  }
  .footer-grid {
    padding: 10px 20px 10px 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .footer-link {
    padding: 40px 0;
    font-size: 14px;
  }
  .footer-link ul {
    margin-right: 70px;
  }
  .footer-link a {
    padding: 7px 0;
  }
  .footer-logo img {
    height: 60px;
  }
  .footer-icon svg {
    width: 14px;
    height: 14px;
  }
  .footer-info {
    font-size: 12px;
  }
  .footer-info p::before {
    top: 0;
  }
  .footer-grid {
    padding: 10px 30px 10px 20px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .footer-link {
    padding: 50px 0;
    font-size: 17px;
  }
  .footer-link ul {
    margin-right: 80px;
  }
  .footer-link a {
    padding: 9px 0;
  }
  .footer-logo img {
    height: 70px;
  }
  .footer-icon svg {
    width: 16px;
    height: 16px;
  }
  .footer-info {
    font-size: 14px;
  }
  .footer-info p::before {
    top: -2px;
  }
  .footer-grid {
    padding: 15px 35px 15px 25px;
  }
}

/**
--------------------------------------------------
  nav
--------------------------------------------------
**/
.nav {
  display: none;
  line-height: 1;
  background-color: #e98a39;
}
.nav-logo {
  padding: 30px 20px;
}
.nav-logo img {
  width: auto;
  height: 55px;
}
.nav-toggle {
  position: absolute;
  top: 35px;
  right: 20px;
}
.nav-toggle button {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: #fff;
}
.nav-toggle svg {
  width: 45px;
  height: 45px;
}
.nav-link {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-link ul {
  border-bottom: rgba(255, 255, 255, 0.15) solid 2px;
}
.nav-link li {
  border-top: rgba(255, 255, 255, 0.15) solid 2px;
}
.nav-link a {
  display: block;
  padding: 15px 20px;
  color: #fff;
}
.nav-link a:hover,
.nav-link a.active {
  color: #026b49;
}
.nav-icon {
  padding: 5px 10px;
}
.nav-icon ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-icon a {
  display: block;
  padding: 15px 10px;
  color: #fff;
}
.nav-icon a:hover {
  color: #026b49;
}
.nav-icon svg {
  width: 30px;
  height: 30px;
}

/* mobile */
@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-transition-duration: 0.35s;
            transition-duration: 0.35s;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
            transition-property: opacity, visibility, -webkit-transform;
            transition-property: opacity, visibility, transform;
            transition-property: opacity, visibility, transform, -webkit-transform;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/**
--------------------------------------------------
  Banner
--------------------------------------------------
**/
.banner {
  position: relative;
  font-weight: 700;
  text-align: center;
  background-color: #026b49;
}
.banner-image {
  position: relative;
  z-index: 1;
  background-color: #eaeaea;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-image::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  content: "";
  background-color: rgba(2, 107, 73, 0.75);
}
.banner-image img {
  display: none;
  width: 100%;
  height: auto;
}
.banner-body {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.banner-text {
  font-family: "brandon-grotesque", sans-serif;
  font-style: italic;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #e98a39;
}
.banner-description {
  line-height: calc(1em + 4px);
  color: #fff;
}
.banner-button,
.banner-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.banner-button a,
.banner-icon a {
  display: block;
}
.banner-button {
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.banner-button a {
  border: #fff solid 2px;
  border-radius: 2em;
  color: #fff;
}
.banner-button a:hover {
  background-color: #e98a39;
}
.banner-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
}
.banner-icon a {
  padding: 20px;
  color: #e98a39;
}

/* mobile */
@media (max-width: 767px) {
  .banner-image {
    min-height: 400px;
    height: calc(100vh - 110px);
  }
  .banner-text {
    display: none;
  }
  .banner-description {
    font-size: 36px;
  }
  .banner-button {
    margin-top: 30px;
    font-size: 16px;
  }
  .banner-button a {
    padding: 15px 45px;
  }
  .banner-icon svg {
    width: 32px;
    height: 20px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .banner-description span {
    display: block;
  }
  .banner-icon svg {
    width: 24px;
    height: 15px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .banner-image {
    height: 425px;
  }
  .banner-text {
    font-size: 30px;
  }
  .banner-description,
  .banner-button {
    margin-top: 20px;
  }
  .banner-description {
    font-size: 52px;
  }
  .banner-button {
    font-size: 15px;
  }
  .banner-button a {
    padding: 13px 35px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .banner-image {
    height: 520px;
  }
  .banner-text {
    font-size: 36px;
  }
  .banner-description,
  .banner-button {
    margin-top: 25px;
  }
  .banner-description {
    font-size: 64px;
  }
  .banner-button {
    font-size: 18px;
  }
  .banner-button a {
    padding: 15px 45px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .banner-image {
    height: 612px;
  }
  .banner-text {
    font-size: 42px;
  }
  .banner-description,
  .banner-button {
    margin-top: 35px;
  }
  .banner-description {
    font-size: 76px;
  }
  .banner-button {
    font-size: 22px;
  }
  .banner-button a {
    padding: 17px 50px;
  }
}/**
--------------------------------------------------
  Banner
--------------------------------------------------
**/
.banner {
  position: relative;
  font-weight: 700;
  text-align: center;
  background-color: #026b49;
}
.banner-image {
  position: relative;
  z-index: 1;
  background-color: #eaeaea;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-image::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  content: "";
  background-color: rgba(2, 107, 73, 0.75);
}
.banner-image img {
  display: none;
  width: 100%;
  height: auto;
}
.banner-body {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.banner-text {
  font-family: "brandon-grotesque", sans-serif;
  font-style: italic;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #e98a39;
}
.banner-description {
  line-height: calc(1em + 4px);
  color: #fff;
}
.banner-button,
.banner-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.banner-button a,
.banner-icon a {
  display: block;
}
.banner-button {
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.banner-button a {
  border: #fff solid 2px;
  border-radius: 2em;
  color: #fff;
}
.banner-button a:hover {
  background-color: #e98a39;
}
.banner-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
}
.banner-icon a {
  padding: 20px;
  color: #e98a39;
}

/* mobile */
@media (max-width: 767px) {
  .banner-image {
    min-height: 400px;
    height: calc(100vh - 110px);
  }
  .banner-text {
    display: none;
  }
  .banner-description {
    font-size: 36px;
  }
  .banner-button {
    margin-top: 30px;
    font-size: 16px;
  }
  .banner-button a {
    padding: 15px 45px;
  }
  .banner-icon svg {
    width: 32px;
    height: 20px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .banner-description span {
    display: block;
  }
  .banner-icon svg {
    width: 24px;
    height: 15px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .banner-image {
    height: 425px;
  }
  .banner-text {
    font-size: 30px;
  }
  .banner-description,
  .banner-button {
    margin-top: 20px;
  }
  .banner-description {
    font-size: 52px;
  }
  .banner-button {
    font-size: 15px;
  }
  .banner-button a {
    padding: 13px 35px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .banner-image {
    height: 520px;
  }
  .banner-text {
    font-size: 36px;
  }
  .banner-description,
  .banner-button {
    margin-top: 25px;
  }
  .banner-description {
    font-size: 64px;
  }
  .banner-button {
    font-size: 18px;
  }
  .banner-button a {
    padding: 15px 45px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .banner-image {
    height: 612px;
  }
  .banner-text {
    font-size: 42px;
  }
  .banner-description,
  .banner-button {
    margin-top: 35px;
  }
  .banner-description {
    font-size: 76px;
  }
  .banner-button {
    font-size: 22px;
  }
  .banner-button a {
    padding: 17px 50px;
  }
}
/**
--------------------------------------------------
  Category
--------------------------------------------------
**/
.category {
  position: relative;
  background-color: #026b49;
  border-bottom-color: #e98a39;
  border-bottom-style: solid;
}
.category-image {
  position: relative;
  z-index: 1;
  background-color: #eaeaea;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.category-image::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  content: "";
  background-color: rgba(2, 107, 73, 0.75);
}
.category-image img {
  display: none;
  width: 100%;
  height: auto;
}
.category-body {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.category-title {
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

/* mobile */
@media (max-width: 767px) {
  .category {
    border-bottom-width: 10px;
  }
  .category-image {
    height: 200px;
  }
  .category-title {
    font-size: 35px;
  }
}

/* tablet - desktop */
/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .category {
    border-bottom-width: 10px;
  }
  .category-image {
    height: 210px;
  }
  .category-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .category {
    border-bottom-width: 10px;
  }
  .category-image {
    height: 250px;
  }
  .category-title {
    font-size: 45px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .category {
    border-bottom-width: 15px;
  }
  .category-image {
    height: 300px;
  }
  .category-title {
    font-size: 55px;
  }
}

/**
--------------------------------------------------
  Intro
--------------------------------------------------
**/
.intro {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
}
.intro-title,
.intro-description {
  font-weight: 500;
  line-height: calc(1em + 8px);
}
.intro-title {
  font-family: "brandon-grotesque", sans-serif;
}
.intro-description p {
  margin-top: 1em;
}
.intro-description p:first-child {
  margin-top: 0;
}
.intro-button {
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
}
.intro-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2em;
  border-style: solid;
  border-width: 3px;
  color: #fff;
}
.intro-button a:hover {
  -webkit-box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
}
.intro-button a.i1 {
  background-color: #026b49;
  border-color: #026b49;
}
.intro-button a.i1:hover {
  background-color: #fff;
  color: #026b49;
}
.intro-button a.i2 {
  background-color: #e98a39;
  border-color: #e98a39;
}
.intro-button a.i2:hover {
  background-color: #fff;
  color: #e98a39;
}
.intro-button span,
.intro-button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

/* mobile */
@media (max-width: 767px) {
  .intro-body {
    padding: 30px 0;
  }
  .intro-image {
    display: none;
  }
  .intro-title {
    font-size: 34px;
  }
  .intro-description,
  .intro-button {
    margin-top: 30px;
  }
  .intro-description {
    font-size: 17px;
  }
  .intro-button {
    font-size: 14px;
  }
  .intro-button a {
    height: 44px;
    margin-top: 20px;
    padding: 0 17px 0 22px;
  }
  .intro-button a:first-child {
    margin-top: 0;
  }
  .intro-button a.i1 svg {
    width: 10px;
    height: 16px;
  }
  .intro-button a.i2 svg {
    width: 16px;
    height: 10px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .intro {
    position: relative;
  }
  .intro-image {
    position: absolute;
    right: 0;
  }
  .intro-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .intro-button a:first-child {
    margin-left: 0;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .intro-image {
    top: 45px;
  }
  .intro-image img {
    width: 210px;
    height: 210px;
  }
  .intro-body {
    min-height: 300px;
    padding: 60px 210px 60px 30px;
  }
  .intro-title {
    font-size: 32px;
  }
  .intro-description,
  .intro-button {
    margin-top: 30px;
  }
  .intro-description {
    font-size: 15px;
  }
  .intro-button {
    font-size: 10px;
  }
  .intro-button a {
    width: 210px;
    height: 34px;
    margin-left: 20px;
    padding: 0 12px 0 17px;
  }
  .intro-button a.i1 svg {
    width: 8px;
    height: 12px;
  }
  .intro-button a.i2 svg {
    width: 12px;
    height: 8px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .intro-image {
    top: 55px;
  }
  .intro-image img {
    width: 340px;
    height: 340px;
  }
  .intro-body {
    min-height: 450px;
    padding: 80px 340px 80px 30px;
  }
  .intro-title {
    font-size: 40px;
  }
  .intro-description,
  .intro-button {
    margin-top: 40px;
  }
  .intro-description {
    font-size: 18px;
  }
  .intro-button {
    font-size: 12px;
  }
  .intro-button a {
    width: 250px;
    height: 42px;
    margin-left: 20px;
    padding: 0 12px 0 17px;
  }
  .intro-button a.i1 svg {
    width: 8px;
    height: 12px;
  }
  .intro-button a.i2 svg {
    width: 12px;
    height: 8px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .intro-image {
    top: 65px;
  }
  .intro-image img {
    width: 410px;
    height: 410px;
  }
  .intro-body {
    min-height: 540px;
    padding: 90px 410px 90px 30px;
  }
  .intro-title {
    font-size: 47px;
  }
  .intro-description,
  .intro-button {
    margin-top: 50px;
  }
  .intro-description {
    font-size: 18px;
  }
  .intro-button {
    font-size: 14px;
  }
  .intro-button a {
    width: 300px;
    height: 48px;
    margin-left: 25px;
    padding: 0 17px 0 27px;
  }
  .intro-button a.i1 svg {
    width: 10px;
    height: 16px;
  }
  .intro-button a.i2 svg {
    width: 16px;
    height: 10px;
  }
}

/**
--------------------------------------------------
  Post
--------------------------------------------------
**/
.post-item {
  position: relative;
}

.post-image img {
  width: 100%;
  height: auto;
}

.post-category,
.post-title,
.post-button {
  font-weight: 700;
}

.post-category {
  position: absolute;
  z-index: 2;
  letter-spacing: 0.35em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.post-description {
  line-height: calc(1em + 6px);
}

.post-button {
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
}
.post-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #026b49;
  border: #026b49 solid 3px;
  border-radius: 2em;
  color: #fff;
}
.post-button a:hover {
  background-color: #fff;
  -webkit-box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
  color: #026b49;
}
.post-button span,
.post-button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.post-listing.primary {
  background-color: rgba(215, 215, 215, 0.15);
}

.post-listing.primary .post-category {
  background-color: #e98a39;
}

.post-listing.primary .post-title {
  font-family: "brandon-grotesque", sans-serif;
  line-height: calc(1em + 8px);
}

.post-listing.secondary {
  background-color: #fff;
}

.post-listing.secondary .post-category {
  background-color: #026b49;
}

.post-listing.secondary .post-title {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  letter-spacing: 0.25em;
  line-height: calc(1em + 4px);
  text-transform: uppercase;
}
.post-listing.secondary .post-title a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e98a39;
  color: #fff;
}
.post-listing.secondary .post-title a:hover {
  background-color: #026b49;
}
.post-listing.secondary .post-title svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* mobile */
@media (max-width: 767px) {
  .post-description {
    margin-top: 10px;
    font-size: 15px;
  }
  .post-button {
    margin-top: 25px;
    font-size: 14px;
  }
  .post-button a {
    width: 230px;
    height: 44px;
    padding: 0 17px 0 22px;
  }
  .post-button svg {
    width: 10px;
    height: 16px;
  }
  .post-listing.primary {
    padding: 10px 0;
  }
  .post-listing.primary .post-body {
    margin-top: 20px;
    padding: 0 10px;
  }
  .post-listing.primary .post-category {
    top: 15px;
    right: -10px;
    left: -10px;
    padding: 12px 20px;
    font-size: 12px;
  }
  .post-listing.primary .post-title {
    font-size: 28px;
  }
  .post-listing.primary .post-grid {
    margin: 0 -20px;
  }
  .post-listing.primary .post-grid--item {
    padding: 30px;
    border-top: rgba(215, 215, 215, 0.75) solid 2px;
  }
  .post-listing.primary .post-grid--item:first-child {
    border-top: 0;
  }
  .post-listing.secondary {
    padding: 25px 0;
  }
  .post-listing.secondary .post-category {
    top: 20px;
    left: 0;
    padding: 12px 10px;
    font-size: 12px;
  }
  .post-listing.secondary .post-title {
    font-size: 14px;
  }
  .post-listing.secondary .post-title a {
    width: 260px;
    height: 60px;
    padding: 10px 40px 10px 15px;
  }
  .post-listing.secondary .post-title svg {
    right: 10px;
    width: 10px;
    height: 16px;
  }
  .post-listing.secondary .post-grid--item {
    padding: 15px 10px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .post-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post-image img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.75s ease-out;
            transition: -webkit-transform 0.75s ease-out;
            transition:         transform 0.75s ease-out;
            transition:         transform 0.75s ease-out, -webkit-transform 0.75s ease-out;
  }
  .post-item:hover .post-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .post-category {
    left: 0;
  }
  .post-listing.primary .post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .post-listing.primary .post-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  }
  .post-listing.primary .post-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }
  .post-listing.secondary .post-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .post-listing.secondary .post-grid--item {
    width: 50%;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .post-description {
    margin-top: 10px;
    font-size: 12px;
  }
  .post-button {
    margin-top: 30px;
    font-size: 10px;
  }
  .post-button a {
    width: 180px;
    height: 34px;
    padding: 0 12px 0 17px;
  }
  .post-button svg {
    width: 8px;
    height: 12px;
  }
  .post-listing.primary {
    padding: 35px 0;
  }
  .post-listing.primary .post-image {
    width: 310px;
  }
  .post-listing.primary .post-body {
    padding: 90px 70px 0 30px;
  }
  .post-listing.primary .post-category {
    top: 25px;
    right: 180px;
    padding: 15px 30px;
    font-size: 14px;
  }
  .post-listing.primary .post-title {
    font-size: 24px;
  }
  .post-listing.primary .post-grid--item {
    padding: 20px 0;
  }
  .post-listing.secondary {
    padding: 40px 0;
  }
  .post-listing.secondary .post-category {
    top: 25px;
    padding: 9px 10px;
    font-size: 10px;
  }
  .post-listing.secondary .post-title {
    font-size: 12px;
  }
  .post-listing.secondary .post-title a {
    width: 260px;
    height: 64px;
    padding: 15px 80px 15px 20px;
  }
  .post-listing.secondary .post-title svg {
    right: 15px;
    width: 10px;
    height: 16px;
  }
  .post-listing.secondary .post-grid {
    margin: 0 -15px;
  }
  .post-listing.secondary .post-grid--item {
    padding: 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .post-description {
    margin-top: 15px;
    font-size: 15px;
  }
  .post-button {
    margin-top: 35px;
    font-size: 12px;
  }
  .post-button a {
    width: 220px;
    height: 42px;
    padding: 0 12px 0 17px;
  }
  .post-button svg {
    width: 8px;
    height: 12px;
  }
  .post-listing.primary {
    padding: 65px 0;
  }
  .post-listing.primary .post-image {
    width: 490px;
  }
  .post-listing.primary .post-body {
    padding: 110px 60px 0 30px;
  }
  .post-listing.primary .post-category {
    top: 30px;
    right: 300px;
    padding: 18px 30px;
    font-size: 16px;
  }
  .post-listing.primary .post-title {
    font-size: 30px;
  }
  .post-listing.primary .post-grid--item {
    padding: 20px 0;
  }
  .post-listing.secondary {
    padding: 70px 0;
  }
  .post-listing.secondary .post-category {
    top: 35px;
    padding: 11px 15px;
    font-size: 12px;
  }
  .post-listing.secondary .post-title {
    font-size: 16px;
  }
  .post-listing.secondary .post-title a {
    width: 350px;
    height: 85px;
    padding: 15px 80px 15px 25px;
  }
  .post-listing.secondary .post-title svg {
    right: 20px;
    width: 13px;
    height: 21px;
  }
  .post-listing.secondary .post-grid {
    margin: 0 -15px;
  }
  .post-listing.secondary .post-grid--item {
    padding: 15px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .post-description {
    margin-top: 20px;
    font-size: 17px;
  }
  .post-button {
    margin-top: 40px;
    font-size: 14px;
  }
  .post-button a {
    width: 256px;
    height: 48px;
    padding: 0 17px 0 27px;
  }
  .post-button svg {
    width: 10px;
    height: 16px;
  }
  .post-listing.primary {
    padding: 75px 0;
  }
  .post-listing.primary .post-image {
    width: 570px;
  }
  .post-listing.primary .post-body {
    padding: 130px 100px 0 30px;
  }
  .post-listing.primary .post-category {
    top: 35px;
    right: 380px;
    padding: 21px 30px;
    font-size: 18px;
  }
  .post-listing.primary .post-title {
    font-size: 35px;
  }
  .post-listing.primary .post-grid--item {
    padding: 25px 0;
  }
  .post-listing.secondary {
    padding: 80px 0;
  }
  .post-listing.secondary .post-category {
    top: 40px;
    padding: 13px 15px;
    font-size: 14px;
  }
  .post-listing.secondary .post-title {
    font-size: 18px;
  }
  .post-listing.secondary .post-title a {
    width: 410px;
    height: 100px;
    padding: 15px 80px 15px 30px;
  }
  .post-listing.secondary .post-title svg {
    right: 25px;
    width: 15px;
    height: 24px;
  }
  .post-listing.secondary .post-grid {
    margin: 0 -20px;
  }
  .post-listing.secondary .post-grid--item {
    padding: 20px;
  }
}

/**
--------------------------------------------------
  Testimonial
--------------------------------------------------
**/
.testimonial {
  font-weight: 500;
  text-align: center;
  background-color: #026b49;
  color: #fff;
}
.testimonial-image {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-image::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  content: "";
  background-color: rgba(2, 107, 73, 0.75);
}
.testimonial-body {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.testimonial-quote {
  padding: 0 20px;
}
.testimonial-quote p {
  font-family: "brandon-grotesque", sans-serif;
  font-style: italic;
  line-height: calc(1em + 2px);
}
.testimonial-quote footer {
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
.testimonial-prev,
.testimonial-next {
  padding: 10px;
  background-color: transparent;
  border: 0;
  color: #fff;
}

/* mobile */
@media (max-width: 767px) {
  .testimonial-image {
    min-height: 400px;
    height: 100vh;
  }
  .testimonial-quote p {
    font-size: 34px;
  }
  .testimonial-quote footer {
    margin-top: 20px;
    font-size: 15px;
  }
  .testimonial-quote footer span {
    display: none;
  }
  .testimonial-prev,
  .testimonial-next {
    display: none;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .testimonial {
    position: relative;
  }
  .testimonial-slider {
    z-index: 1;
  }
  .testimonial-prev,
  .testimonial-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonial-image {
    height: 400px;
  }
  .testimonial-quote p {
    font-size: 30px;
  }
  .testimonial-quote footer {
    margin-top: 25px;
    font-size: 12px;
  }
  .testimonial-prev svg,
  .testimonial-next svg {
    width: 10px;
    height: 16px;
  }
  .testimonial-prev {
    left: 15px;
  }
  .testimonial-next {
    right: 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .testimonial-image {
    height: 535px;
  }
  .testimonial-quote p {
    font-size: 40px;
  }
  .testimonial-quote footer {
    margin-top: 35px;
    font-size: 16px;
  }
  .testimonial-prev svg,
  .testimonial-next svg {
    width: 15px;
    height: 24px;
  }
  .testimonial-prev {
    left: 20px;
  }
  .testimonial-next {
    right: 20px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .testimonial-image {
    height: 628px;
  }
  .testimonial-quote p {
    font-size: 48px;
  }
  .testimonial-quote footer {
    margin-top: 45px;
    font-size: 20px;
  }
  .testimonial-prev svg,
  .testimonial-next svg {
    width: 20px;
    height: 32px;
  }
  .testimonial-prev {
    left: 40px;
  }
  .testimonial-next {
    right: 40px;
  }
}

/**
--------------------------------------------------
  Newsletter
--------------------------------------------------
**/
.newsletter {
  background-color: #e98a39;
  color: #fff;
}
.newsletter-info {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.newsletter-form--input,
.newsletter-form--message {
  background-color: #fff;
  border-radius: 10px;
}
.newsletter-form--input {
  position: relative;
  z-index: 1;
}
.newsletter-form--input input,
.newsletter-form--input button {
  padding: 10px;
  background-color: transparent;
  border: 0;
}
.newsletter-form--input input {
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #2c2c2c;
}
.newsletter-form--input input::-webkit-input-placeholder {
  text-transform: uppercase;
  color: #aaa;
}
.newsletter-form--input input::-moz-placeholder {
  text-transform: uppercase;
  color: #aaa;
}
.newsletter-form--input input:-ms-input-placeholder {
  text-transform: uppercase;
  color: #aaa;
}
.newsletter-form--input input::-ms-input-placeholder {
  text-transform: uppercase;
  color: #aaa;
}
.newsletter-form--input input::placeholder {
  text-transform: uppercase;
  color: #aaa;
}
.newsletter-form--input button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #026b49;
}
.newsletter-form--message {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  border: #026b49 solid 3px;
  color: #026b49;
}
.newsletter-form--message.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.newsletter-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 2em;
  color: #e98a39;
}
.newsletter-button a:hover {
  background-color: #026b49;
  color: #fff;
}

/* mobile */
@media (max-width: 767px) {
  .newsletter {
    padding: 40px 0;
  }
  .newsletter-info {
    font-size: 27px;
    text-align: center;
  }
  .newsletter-info::first-letter {
    text-transform: uppercase;
  }
  .newsletter-info span {
    display: none;
  }
  .newsletter-form,
  .newsletter-button {
    margin-top: 20px;
  }
  .newsletter-form {
    position: relative;
  }
  .newsletter-form--input {
    padding: 10px 60px 10px 10px;
  }
  .newsletter-form--input input {
    height: 39px;
    font-size: 14px;
  }
  .newsletter-form--input button {
    right: 10px;
  }
  .newsletter-form--input svg {
    width: 23px;
    height: 23px;
  }
  .newsletter-form--message {
    font-size: 15px;
  }
  .newsletter-form--message svg {
    width: 26px;
    height: 21px;
    margin-right: 10px;
  }
  .newsletter-button {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }
  .newsletter-button a {
    padding: 15px 30px;
    font-size: 16px;
  }
  .newsletter-button svg {
    margin-right: 15px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .newsletter-form,
  .newsletter-button {
    position: absolute;
    top: 50%;
    right: 6%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .newsletter {
    padding: 50px 0;
  }
  .newsletter-info {
    font-size: 23px;
  }
  .newsletter-form {
    width: 230px;
  }
  .newsletter-form--input {
    padding: 5px 60px 5px 10px;
  }
  .newsletter-form--input input {
    height: 39px;
    font-size: 10px;
  }
  .newsletter-form--input button {
    right: 10px;
  }
  .newsletter-form--input svg {
    width: 17px;
    height: 17px;
  }
  .newsletter-form--message {
    font-size: 11px;
  }
  .newsletter-form--message svg {
    width: 19px;
    height: 15px;
    margin-right: 10px;
  }
  .newsletter-button a {
    padding: 13px 25px;
    font-size: 11px;
  }
  .newsletter-button svg {
    width: 20px;
    height: 15px;
    margin-right: 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .newsletter {
    padding: 60px 0;
  }
  .newsletter-info {
    font-size: 31px;
  }
  .newsletter-form {
    width: 300px;
  }
  .newsletter-form--input {
    padding: 10px 60px 10px 10px;
  }
  .newsletter-form--input input {
    height: 39px;
    font-size: 12px;
  }
  .newsletter-form--input button {
    right: 10px;
  }
  .newsletter-form--input svg {
    width: 21px;
    height: 21px;
  }
  .newsletter-form--message {
    font-size: 15px;
  }
  .newsletter-form--message svg {
    width: 24px;
    height: 19px;
    margin-right: 15px;
  }
  .newsletter-button a {
    padding: 17px 30px;
    font-size: 14px;
  }
  .newsletter-button svg {
    width: 28px;
    height: 21px;
    margin-right: 15px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .newsletter {
    padding: 80px 0;
  }
  .newsletter-info {
    font-size: 37px;
  }
  .newsletter-form {
    width: 350px;
  }
  .newsletter-form--input {
    padding: 15px 70px 15px 15px;
  }
  .newsletter-form--input input {
    height: 39px;
    font-size: 14px;
  }
  .newsletter-form--input button {
    right: 15px;
  }
  .newsletter-form--input svg {
    width: 23px;
    height: 23px;
  }
  .newsletter-form--message {
    font-size: 17px;
  }
  .newsletter-form--message svg {
    width: 26px;
    height: 21px;
    margin-right: 15px;
  }
  .newsletter-button a {
    padding: 20px 40px;
    font-size: 16px;
  }
  .newsletter-button svg {
    width: 32px;
    height: 24px;
    margin-right: 20px;
  }
}

/**
--------------------------------------------------
  Contact
--------------------------------------------------
**/
.contact {
  text-align: center;
}
.contact-title {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #e98a39;
}
.contact-description,
.contact-info {
  line-height: calc(1em + 8px);
}
.contact-description {
  font-weight: 500;
}
.contact-info {
  font-weight: 700;
  color: #026b49;
}
.contact-info span {
  text-transform: uppercase;
}
.contact-info address {
  margin-top: 5px;
  font-style: normal;
}
.contact-form--input input,
.contact-form--input textarea,
.contact-form--input button {
  font-weight: 700;
  border-style: solid;
  border-width: 2px;
}
.contact-form--input input,
.contact-form--input textarea {
  width: 100%;
  font-family: "brandon-grotesque", sans-serif;
  background-color: #fff;
  border-color: #cfcfcf;
  border-radius: 5px;
  color: #2c2c2c;
}
.contact-form--input input::-webkit-input-placeholder,
.contact-form--input textarea::-webkit-input-placeholder {
  color: #cfcfcf;
}
.contact-form--input input::-moz-placeholder,
.contact-form--input textarea::-moz-placeholder {
  color: #cfcfcf;
}
.contact-form--input input:-ms-input-placeholder,
.contact-form--input textarea:-ms-input-placeholder {
  color: #cfcfcf;
}
.contact-form--input input::-ms-input-placeholder,
.contact-form--input textarea::-ms-input-placeholder {
  color: #cfcfcf;
}
.contact-form--input input::placeholder,
.contact-form--input textarea::placeholder {
  color: #cfcfcf;
}
.contact-form--input input:focus,
.contact-form--input textarea:focus {
  border-color: #aaa;
}
.contact-form--input input:first-child,
.contact-form--input textarea:first-child {
  margin-top: 0;
}
.contact-form--input button, .contact-form--input input[type="submit"] {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background-color: #e98a39;
  border-color: #e98a39;
  border-radius: 2em;
  color: #fff;
}
.contact-form--input button:hover {
  background-color: #fff;
  -webkit-box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
  color: #e98a39;
}
.contact-form--message {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  border: #026b49 solid 3px;
  border-radius: 5px;
  color: #026b49;
}
.contact-form--message.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* mobile */
@media (max-width: 767px) {
  .contact {
    padding: 35px 0;
  }
  .contact-title {
    font-size: 25px;
  }
  .contact-description,
  .contact-info {
    font-size: 17px;
  }
  .contact-description {
    margin-top: 20px;
  }
  .contact-info {
    margin-top: 10px;
  }
  .contact-form {
    margin-top: 30px;
  }
  .contact-form--input input,
  .contact-form--input textarea {
    margin-top: 10px;
    padding: 11px 20px;
    font-size: 20px;
  }
  .contact-form--input button {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 16px;
  }
  .contact-form--message {
    padding: 20px 0;
    font-size: 13px;
  }
  .contact-form--message svg {
    width: 19px;
    height: 15px;
    margin-right: 10px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .contact {
    margin-right: auto;
    margin-left: auto;
  }
  .contact-description {
    margin-top: 30px;
  }
  .contact-info {
    margin-top: 15px;
  }
  .contact-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-info li {
    position: relative;
  }
  .contact-info li::before {
    position: absolute;
    left: 0;
    width: 2px;
    pointer-events: none;
    content: "";
    background-color: currentColor;
  }
  .contact-info li:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .contact-info li:first-child::before {
    display: none;
  }
  .contact-form {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact {
    max-width: 650px;
    padding: 45px 0;
  }
  .contact-title {
    font-size: 21px;
  }
  .contact-description,
  .contact-info {
    font-size: 15px;
  }
  .contact-info li {
    margin-left: 13px;
    padding-left: 15px;
  }
  .contact-info li::before {
    top: 8px;
    height: 10px;
  }
  .contact-form {
    width: 400px;
  }
  .contact-form--input input,
  .contact-form--input textarea {
    margin-top: 10px;
    padding: 12px;
    font-size: 17px;
  }
  .contact-form--input button {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 12px;
  }
  .contact-form--message {
    padding: 20px 0;
    font-size: 11px;
  }
  .contact-form--message svg {
    width: 19px;
    height: 15px;
    margin-right: 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .contact {
    max-width: 720px;
    padding: 65px 0;
  }
  .contact-title {
    font-size: 25px;
  }
  .contact-description,
  .contact-info {
    font-size: 18px;
  }
  .contact-info li {
    margin-left: 15px;
    padding-left: 17px;
  }
  .contact-info li::before {
    top: 8px;
    height: 12px;
  }
  .contact-form {
    width: 460px;
  }
  .contact-form--input input,
  .contact-form--input textarea {
    margin-top: 12px;
    padding: 15px;
    font-size: 21px;
  }
  .contact-form--input button {
    margin-top: 24px;
    padding: 15px 35px;
    font-size: 14px;
  }
  .contact-form--message {
    padding: 25px 0;
    font-size: 15px;
  }
  .contact-form--message svg {
    width: 24px;
    height: 19px;
    margin-right: 15px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .contact {
    max-width: 850px;
    padding: 65px 0;
  }
  .contact-title {
    font-size: 30px;
  }
  .contact-description,
  .contact-info {
    font-size: 22px;
  }
  .contact-info li {
    margin-left: 20px;
    padding-left: 22px;
  }
  .contact-info li::before {
    top: 10px;
    height: 15px;
  }
  .contact-form {
    width: 560px;
  }
  .contact-form--input input,
  .contact-form--input textarea {
    margin-top: 15px;
    padding: 18px 20px;
    font-size: 25px;
  }
  .contact-form--input button {
    margin-top: 30px;
    padding: 17px 40px;
    font-size: 17px;
  }
  .contact-form--message {
    padding: 30px 0;
    font-size: 17px;
  }
  .contact-form--message svg {
    width: 26px;
    height: 21px;
    margin-right: 15px;
  }
}

/**
--------------------------------------------------
  Dditor
--------------------------------------------------
**/
.editor-description:first-child,
.editor-accordion:first-child,
.editor-gallery:first-child,
.editor-cta:first-child {
  margin-top: 0;
}

.editor-description {
  line-height: calc(1em + 8px);
}
.editor-description h2:first-child,
.editor-description h3:first-child,
.editor-description p:first-child,
.editor-description ol:first-child,
.editor-description ul:first-child,
.editor-description li:first-child,
.editor-accordion ul:first-child {
  margin-top: 0;
}
.editor-description h2,
.editor-description h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.editor-description h2 {
  color: #e98a39;
}
.editor-description ol {
  list-style: decimal;
}
.editor-description ul, .editor-accordion ul {
  list-style: disc;
}
.editor-description li, .editor-accordion li {
  margin-top: 5px;
}
.editor-description a {
  color: #e98a39;
}
.editor-description a:hover {
  color: #026b49;
}
.editor-description strong {
  font-weight: 700;
}
.editor-description blockquote {
  font-weight: 500;
  text-align: center;
}
.editor-description blockquote p {
  font-family: "brandon-grotesque", sans-serif;
  font-style: italic;
  line-height: calc(1em + 2px);
}
.editor-description blockquote footer {
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  color: #818181;
}

.editor-accordion {
  border-bottom: #eaeaea solid 2px;
}
.editor-accordion--item {
  border-top: #eaeaea solid 2px;
}
.editor-accordion--header {
  position: relative;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #026b49;
  cursor: pointer;
  -webkit-transition: color 0.25s ease-out;
          transition: color 0.25s ease-out;
}
.editor-accordion--header::before,
.editor-accordion--header::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  content: "";
  background-color: currentColor;
}
.editor-accordion--header::before {
  right: 15px;
  width: 18px;
  height: 2px;
}
.editor-accordion--header::after {
  right: 23px;
  width: 2px;
  height: 18px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
}
.editor-accordion--header:hover {
  color: #e98a39;
}
.editor-accordion--body {
  display: none;
  line-height: calc(1em + 8px);
}
.editor-accordion--body p:first-child {
  margin-top: 0;
}
.editor-accordion--body a {
  color: #e98a39;
}
.editor-accordion--body a:hover {
  color: #026b49;
}
.editor-accordion--body a.button {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  background-color: #026b49;
  border: #026b49 solid 3px;
  border-radius: 2em;
  color: #fff;
}
.editor-accordion--body a.button:hover {
  background-color: #fff;
  -webkit-box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
  color: #026b49;
}
.editor-accordion--body strong {
  font-weight: 700;
}
.editor-accordion--item.active .editor-accordion--header {
  opacity: 0.75;
}
.editor-accordion--item.active .editor-accordion--header::after {
  opacity: 0;
}
.editor-accordion--item.active .editor-accordion--body {
  display: block;
}

.editor-gallery--image {
  background-color: #eaeaea;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.editor-gallery--image img {
  display: none;
  width: 100%;
  height: auto;
}

.editor-cta a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  background-color: #e98a39;
  border: #e98a39 solid 3px;
  border-radius: 2em;
  color: #fff;
}
.editor-cta a:hover {
  background-color: #fff;
  -webkit-box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
  color: #e98a39;
}

.editor-cta svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.editor-note {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: calc(1em + 5px);
  text-align: center;
}
.editor-note a {
  color: #434343;
}
.editor-note a:hover {
  color: #026b49;
}

/* mobile */
@media (max-width: 767px) {
  .editor {
    padding: 40px 0;
  }
  .editor-description,
  .editor-accordion,
  .editor-gallery,
  .editor-cta {
    margin-top: 30px;
  }
  .editor-description h2,
  .editor-description h3 {
    margin-top: 30px;
  }
  .editor-description h2 {
    font-size: 25px;
  }
  .editor-description h3 {
    font-size: 20px;
  }
  .editor-description p,
  .editor-description ol,
  .editor-description ul,
  .editor-description blockquote, .editor-accordion ul {
    margin-top: 20px;
  }
  .editor-description ol,
  .editor-description ul, .editor-accordion ul {
    margin-left: 30px;
  }
  .editor-description blockquote {
    padding: 25px 20px;
  }
  .editor-description blockquote p {
    font-size: 34px;
  }
  .editor-description blockquote footer {
    margin-top: 20px;
    font-size: 15px;
  }
  .editor-description blockquote footer span {
    display: none;
  }
  .editor-accordion--header {
    padding: 15px 50px 15px 15px;
    font-size: 15px;
  }
  .editor-accordion--body {
    padding: 10px 50px 30px 15px;
    font-size: 16px;
  }
  .editor-accordion--body p {
    margin-top: 20px;
  }
  .editor-accordion--body a.button {
    padding: 12px 25px;
    font-size: 12px;
  }
  .editor-gallery--item {
    margin-top: 20px;
  }
  .editor-gallery--item:first-child {
    margin-top: 0;
  }
  .editor-gallery--image {
    height: 180px;
  }
  .editor-cta {
    font-size: 14px;
  }
  .editor-cta a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 11px 17px 11px 22px;
  }
  .editor-cta svg {
    width: 10px;
    height: 16px;
  }
  .editor-note {
    margin-top: 15px;
    font-size: 16px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .editor-description,
  .editor-accordion,
  .editor-gallery,
  .editor-cta {
    margin-top: 40px;
  }
  .editor-description,
  .editor-accordion {
    margin-right: auto;
    margin-left: auto;
  }
  .editor-accordion--header {
    padding: 20px 50px 20px 15px;
  }
  .editor-accordion--body {
    padding: 10px 50px 40px 15px;
  }
  .editor-gallery {
    margin-right: -15px;
    margin-left: -15px;
  }
  .editor-gallery::after {
    display: table;
    clear: both;
    pointer-events: none;
    content: "";
  }
  .editor-gallery--item {
    float: left;
    padding: 15px;
  }
  .editor-gallery.i1 .editor-gallery--item {
    width: 100%;
  }
  .editor-gallery.i2 .editor-gallery--item,
  .editor-gallery.i3 .editor-gallery--item {
    width: 50%;
  }
  .editor-cta {
    text-align: center;
  }
  .editor-cta a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .editor-note {
    margin-top: 20px;
    font-size: 18px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .editor {
    padding: 60px 0;
  }
  .editor-description,
  .editor-accordion {
    max-width: 650px;
  }
  .editor-description {
    font-size: 15px;
  }
  .editor-description h2,
  .editor-description h3 {
    margin-top: 30px;
  }
  .editor-description h2 {
    font-size: 21px;
  }
  .editor-description h3 {
    font-size: 18px;
  }
  .editor-description p,
  .editor-description ol,
  .editor-description ul,
  .editor-description blockquote, .editor-accordion ul {
    margin-top: 20px;
  }
  .editor-description ol,
  .editor-description ul, .editor-accordion ul {
    margin-left: 30px;
  }
  .editor-description blockquote {
    margin-right: -45px;
    margin-left: -45px;
    padding: 25px 20px;
  }
  .editor-description blockquote p {
    font-size: 30px;
  }
  .editor-description blockquote footer {
    margin-top: 25px;
    font-size: 12px;
  }
  .editor-accordion--header {
    font-size: 15px;
  }
  .editor-accordion--body {
    font-size: 16px;
  }
  .editor-accordion--body p {
    margin-top: 20px;
  }
  .editor-accordion--body a.button {
    padding: 12px 25px;
    font-size: 12px;
  }
  .editor-gallery.i1 .editor-gallery--image {
    height: 360px;
  }
  .editor-gallery.i2 .editor-gallery--image {
    height: 230px;
  }
  .editor-gallery.i3 .editor-gallery--item:nth-child(1) .editor-gallery--image {
    height: 450px;
  }
  .editor-gallery.i3 .editor-gallery--item:nth-child(2) .editor-gallery--image,
  .editor-gallery.i3 .editor-gallery--item:nth-child(3) .editor-gallery--image {
    height: 210px;
  }
  .editor-cta {
    font-size: 13px;
  }
  .editor-cta a {
    padding: 14px 30px;
  }
  .editor-cta svg {
    width: 8px;
    height: 13px;
    margin-left: 11px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .editor {
    padding: 80px 0;
  }
  .editor-description,
  .editor-accordion {
    max-width: 720px;
  }
  .editor-description {
    font-size: 18px;
  }
  .editor-description h2,
  .editor-description h3 {
    margin-top: 40px;
  }
  .editor-description h2 {
    font-size: 25px;
  }
  .editor-description h3 {
    font-size: 20px;
  }
  .editor-description p,
  .editor-description ol,
  .editor-description ul,
  .editor-description blockquote, .editor-accordion ul {
    margin-top: 25px;
  }
  .editor-description ol,
  .editor-description ul, .editor-accordion ul {
    margin-left: 40px;
  }
  .editor-description blockquote {
    margin-right: -95px;
    margin-left: -95px;
    padding: 30px 20px;
  }
  .editor-description blockquote p {
    font-size: 40px;
  }
  .editor-description blockquote footer {
    margin-top: 30px;
    font-size: 14px;
  }
  .editor-accordion--header {
    font-size: 15px;
  }
  .editor-accordion--body {
    font-size: 16px;
  }
  .editor-accordion--body p {
    margin-top: 20px;
  }
  .editor-accordion--body a.button {
    padding: 12px 25px;
    font-size: 12px;
  }
  .editor-gallery.i1 .editor-gallery--image {
    height: 460px;
  }
  .editor-gallery.i2 .editor-gallery--image {
    height: 290px;
  }
  .editor-gallery.i3 .editor-gallery--item:nth-child(1) .editor-gallery--image {
    height: 550px;
  }
  .editor-gallery.i3 .editor-gallery--item:nth-child(2) .editor-gallery--image,
  .editor-gallery.i3 .editor-gallery--item:nth-child(3) .editor-gallery--image {
    height: 260px;
  }
  .editor-cta {
    font-size: 15px;
  }
  .editor-cta a {
    padding: 15px 30px;
  }
  .editor-cta svg {
    width: 9px;
    height: 15px;
    margin-left: 13px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .editor {
    padding: 100px 0;
  }
  .editor-description,
  .editor-accordion {
    max-width: 850px;
  }
  .editor-description {
    font-size: 22px;
  }
  .editor-description h2,
  .editor-description h3 {
    margin-top: 50px;
  }
  .editor-description h2 {
    font-size: 30px;
  }
  .editor-description h3 {
    font-size: 24px;
  }
  .editor-description p,
  .editor-description ol,
  .editor-description ul,
  .editor-description blockquote, .editor-accordion ul {
    margin-top: 30px;
  }
  .editor-description ol,
  .editor-description ul, .editor-accordion ul {
    margin-left: 50px;
  }
  .editor-description blockquote {
    margin-right: -120px;
    margin-left: -120px;
    padding: 35px 20px;
  }
  .editor-description blockquote p {
    font-size: 48px;
  }
  .editor-description blockquote footer {
    margin-top: 35px;
    font-size: 16px;
  }
  .editor-accordion--header {
    font-size: 18px;
  }
  .editor-accordion--body {
    font-size: 20px;
  }
  .editor-accordion--body p {
    margin-top: 25px;
  }
  .editor-accordion--body a.button {
    padding: 14px 30px;
    font-size: 14px;
  }
  .editor-gallery.i1 .editor-gallery--image {
    height: 550px;
  }
  .editor-gallery.i2 .editor-gallery--image {
    height: 340px;
  }
  .editor-gallery.i3 .editor-gallery--item:nth-child(1) .editor-gallery--image {
    height: 650px;
  }
  .editor-gallery.i3 .editor-gallery--item:nth-child(2) .editor-gallery--image,
  .editor-gallery.i3 .editor-gallery--item:nth-child(3) .editor-gallery--image {
    height: 310px;
  }
  .editor-cta {
    font-size: 17px;
  }
  .editor-cta a {
    padding: 20px 40px;
  }
  .editor-cta svg {
    width: 11px;
    height: 17px;
    margin-left: 15px;
  }
}

/**
--------------------------------------------------
  Popup
--------------------------------------------------
**/
.popup {
  position: relative;
  margin: 15px auto;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 7px 4px 43px 27px rgba(0, 0, 0, 0.2);
          box-shadow: 7px 4px 43px 27px rgba(0, 0, 0, 0.2);
}
.popup-close {
  position: absolute;
  padding: 0;
  background-color: transparent;
  border: 0;
  color: #e98a39;
}
.popup-title,
.popup-description {
  font-weight: 500;
}
.popup-title {
  font-family: "brandon-grotesque", sans-serif;
  line-height: calc(1em + 2px);
}
.popup-description {
  line-height: calc(1em + 8px);
}
.popup-image img {
  width: 100%;
  height: auto;
}
.popup-media {
  position: relative;
  padding-bottom: 50%;
}
.popup-media video,
.popup-media iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.popup-button {
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
}
.popup-button a {
  position: relative;
  display: inline-block;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2em;
  border-style: solid;
  border-width: 3px;
  color: #fff;
}
.popup-button a:hover {
  -webkit-box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
}
.popup-button a:first-child {
  margin-top: 0;
}
.popup-button a.i1 {
  background-color: #026b49;
  border-color: #026b49;
}
.popup-button a.i1:hover {
  background-color: #fff;
  color: #026b49;
}
.popup-button a.i2 {
  background-color: #e98a39;
  border-color: #e98a39;
}
.popup-button a.i2:hover {
  background-color: #fff;
  color: #e98a39;
}
.popup-button svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.popup-form {
  padding: 0 10px;
}
.popup-form--input input,
.popup-form--input select,
.popup-form--input button, #mc_embed_signup .button {
  width: 100%;
  font-weight: 700;
  border-style: solid;
  border-width: 3px;
}
.popup-form--input input,
.popup-form--input select {
  font-family: "brandon-grotesque", sans-serif;
  background-color: #fff;
  border-color: #cfcfcf;
  border-radius: 5px;
  color: #026b49;
}

.popup-form--input input:focus,
.popup-form--input select:focus {
  border-color: #aaa;
}
.popup-form--input input:first-child,
.popup-form--input select:first-child {
  margin-top: 0;
}
.popup-form--input input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.popup-form--input input::-moz-placeholder {
  color: #cfcfcf;
}
.popup-form--input input:-ms-input-placeholder {
  color: #cfcfcf;
}
.popup-form--input input::-ms-input-placeholder {
  color: #cfcfcf;
}
.popup-form--input input::placeholder {
  color: #cfcfcf;
}
.popup-form--input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.popup-form--input button, #mc_embed_signup .button {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: #e98a39;
  border-color: #e98a39;
  color: #fff;
}
.popup-form--input button:hover, #mc_embed_signup .button:hover {
  background-color: #fff;
  -webkit-box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 3px 20px rgba(0, 0, 0, 0.2);
  color: #e98a39;
}
.popup-form--message {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  border: #026b49 solid 3px;
  border-radius: 5px;
  color: #026b49;
}
.popup-form--message.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popup-newsletter {
  text-align: center;
}
.popup-newsletter .popup-description {
  margin-top: 10px;
}

/* mobile */
@media (max-width: 767px) {
  .popup-close {
    top: 20px;
    right: 20px;
  }
  .popup-close svg {
    width: 30px;
    height: 30px;
  }
  .popup-title {
    font-size: 30px;
  }
  .popup-description {
    font-size: 15px;
  }
  .popup-image,
  .popup-media,
  .popup-button {
    margin-top: 25px;
  }
  .popup-button {
    font-size: 14px;
  }
  .popup-button a {
    margin-top: 15px;
    padding: 12px 47px 12px 22px;
  }
  .popup-button svg {
    right: 17px;
    width: 10px;
    height: 16px;
  }
  .popup-form {
    margin-top: 20px;
  }
  .popup-form--input input,
  .popup-form--input select {
    margin-top: 10px;
    padding: 11px 20px;
    font-size: 20px;
  }
  .popup-form--input button, #mc_embed_signup .button {
    margin-top: 20px;
    padding: 17px 30px;
    font-size: 18px;
  }
  .popup-form--message {
    padding: 20px 0;
    font-size: 13px;
  }
  .popup-form--message svg {
    width: 19px;
    height: 15px;
    margin-right: 10px;
  }
  .popup-general {
    padding: 65px 20px 30px;
  }
  .popup-general .popup-description {
    margin-top: 20px;
  }
  .popup-newsletter {
    padding: 65px 20px 30px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .popup {
    width: 510px;
  }
  .popup-close {
    top: 20px;
    right: 20px;
  }
  .popup-close svg {
    width: 30px;
    height: 30px;
  }
  .popup-title {
    font-size: 30px;
  }
  .popup-description {
    font-size: 15px;
  }
  .popup-image,
  .popup-media,
  .popup-button {
    margin-top: 25px;
  }
  .popup-button {
    font-size: 10px;
  }
  .popup-button a {
    margin-top: 15px;
    padding: 9px 52px 9px 17px;
  }
  .popup-button svg {
    right: 12px;
    width: 8px;
    height: 12px;
  }
  .popup-form {
    margin-top: 20px;
  }
  .popup-form--input input,
  .popup-form--input select {
    margin-top: 10px;
    padding: 11px 20px;
    font-size: 20px;
  }
  .popup-form--input button, #mc_embed_signup .button {
    margin-top: 20px;
    padding: 17px 30px;
    font-size: 18px;
  }
  .popup-form--message {
    padding: 20px 0;
    font-size: 11px;
  }
  .popup-form--message svg {
    width: 19px;
    height: 15px;
    margin-right: 10px;
  }
  .popup-general {
    padding: 65px 45px 35px;
  }
  .popup-general .popup-description {
    margin-top: 25px;
  }
  .popup-newsletter {
    padding: 65px 60px 55px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .popup {
    width: 620px;
  }
  .popup-close {
    top: 25px;
    right: 25px;
  }
  .popup-close svg {
    width: 35px;
    height: 35px;
  }
  .popup-title {
    font-size: 38px;
  }
  .popup-description {
    font-size: 18px;
  }
  .popup-image,
  .popup-media,
  .popup-button {
    margin-top: 30px;
  }
  .popup-button {
    font-size: 12px;
  }
  .popup-button a {
    margin-top: 15px;
    padding: 12px 52px 12px 17px;
  }
  .popup-button svg {
    right: 12px;
    width: 8px;
    height: 12px;
  }
  .popup-form {
    margin-top: 25px;
  }
  .popup-form--input input,
  .popup-form--input select {
    margin-top: 15px;
    padding: 15px 20px;
    font-size: 24px;
  }
  .popup-form--input button, #mc_embed_signup .button {
    margin-top: 25px;
    padding: 23px 30px;
    font-size: 20px;
  }
  .popup-form--message {
    padding: 25px 0;
    font-size: 15px;
  }
  .popup-form--message svg {
    width: 24px;
    height: 19px;
    margin-right: 15px;
  }
  .popup-general {
    padding: 80px 55px 45px;
  }
  .popup-general .popup-description {
    margin-top: 25px;
  }
  .popup-newsletter {
    padding: 80px 70px 65px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .popup {
    width: 730px;
  }
  .popup-close {
    top: 30px;
    right: 30px;
  }
  .popup-close svg {
    width: 40px;
    height: 40px;
  }
  .popup-title {
    font-size: 44px;
  }
  .popup-description {
    font-size: 22px;
  }
  .popup-image,
  .popup-media,
  .popup-button {
    margin-top: 40px;
  }
  .popup-button {
    font-size: 14px;
  }
  .popup-button a {
    margin-top: 20px;
    padding: 14px 67px 14px 27px;
  }
  .popup-button svg {
    right: 17px;
    width: 10px;
    height: 16px;
  }
  .popup-form {
    margin-top: 30px;
  }
  .popup-form--input input,
  .popup-form--input select {
    margin-top: 15px;
    padding: 18px 25px;
    font-size: 28px;
  }
  .popup-form--input button, #mc_embed_signup .button {
    margin-top: 30px;
    padding: 26px 30px;
    font-size: 24px;
  }
  .popup-form--message {
    padding: 30px 0;
    font-size: 17px;
  }
  .popup-form--message svg {
    width: 26px;
    height: 21px;
    margin-right: 15px;
  }
  .popup-general {
    padding: 100px 65px 55px;
  }
  .popup-general .popup-description {
    margin-top: 30px;
  }
  .popup-newsletter {
    padding: 100px 85px 75px;
  }
}

/**
--------------------------------------------------
  Staff
--------------------------------------------------
**/
.staff-item {
  text-transform: uppercase;
  border-bottom: #cacaca solid 2px;
}

.staff-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.staff-image img {
  display: none;
  width: 100%;
  height: auto;
}

.staff-info {
  position: relative;
  z-index: 1;
  line-height: 1;
  background-color: #e98a39;
  color: #fff;
}
.staff-info::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-color: #e98a39;
}

.staff-name {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.staff-job {
  margin-top: 5px;
  letter-spacing: 0.35em;
}

.staff-contact {
  font-weight: 500;
  line-height: 1;
}
.staff-contact li {
  position: relative;
}
.staff-contact li:first-child {
  margin-top: 0;
}
.staff-contact svg {
  position: absolute;
  top: 0;
  left: 0;
  fill: #026b49;
}
.staff-contact a {
  color: #026b49;
}
.staff-contact a:hover {
  color: #0b3729;
}
.staff-contact em {
  font-style: normal;
}

.staff-link {
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}
.staff-link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #026b49;
}
.staff-link a:hover {
  color: #0b3729;
}
.staff-link svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

/* mobile */
@media (max-width: 767px) {
  .staff {
    margin-right: -20px;
    margin-left: -20px;
  }
  .staff-item {
    padding: 30px 20px;
  }
  .staff-image {
    max-width: 300px;
    width: 87.5%;
    height: 260px;
    margin-right: auto;
    margin-left: auto;
  }
  .staff-info {
    padding: 20px 0;
  }
  .staff-info::after {
    right: -25px;
    left: -50px;
  }
  .staff-name {
    font-size: 18px;
  }
  .staff-job {
    font-size: 12px;
  }
  .staff-contact {
    margin-top: 20px;
    font-size: 16px;
  }
  .staff-contact li {
    margin-top: 10px;
    padding: 7px 0 7px 45px;
  }
  .staff-contact svg {
    width: 30px;
    height: 30px;
  }
  .staff-link {
    margin-top: 20px;
    font-size: 12px;
  }
  .staff-link svg {
    width: 8px;
    height: 12px;
    margin-left: 15px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .staff {
    margin-right: auto;
    margin-left: auto;
  }
  .staff-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .staff-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  }
  .staff-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .staff {
    max-width: 690px;
  }
  .staff-item {
    padding: 45px 20px;
  }
  .staff-image {
    width: 240px;
    height: 240px;
  }
  .staff-body {
    padding: 25px;
  }
  .staff-info {
    padding: 20px 0;
  }
  .staff-info::after {
    right: -25px;
    left: -50px;
  }
  .staff-name {
    font-size: 18px;
  }
  .staff-job {
    font-size: 12px;
  }
  .staff-contact {
    margin-top: 15px;
    font-size: 14px;
  }
  .staff-contact li {
    margin-top: 10px;
    padding: 7px 0 7px 42px;
  }
  .staff-contact svg {
    width: 28px;
    height: 28px;
  }
  .staff-link {
    margin-top: 20px;
    font-size: 11px;
  }
  .staff-link svg {
    width: 7px;
    height: 11px;
    margin-left: 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .staff {
    max-width: 780px;
  }
  .staff-item {
    padding: 50px 30px;
  }
  .staff-image {
    width: 270px;
    height: 270px;
  }
  .staff-body {
    padding: 30px;
  }
  .staff-info {
    padding: 20px 0;
  }
  .staff-info::after {
    right: -30px;
    left: -60px;
  }
  .staff-name {
    font-size: 20px;
  }
  .staff-job {
    font-size: 14px;
  }
  .staff-contact {
    margin-top: 20px;
    font-size: 15px;
  }
  .staff-contact li {
    margin-top: 12px;
    padding: 8px 0 8px 45px;
  }
  .staff-contact svg {
    width: 31px;
    height: 31px;
  }
  .staff-link {
    margin-top: 25px;
    font-size: 12px;
  }
  .staff-link svg {
    width: 8px;
    height: 12px;
    margin-left: 15px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .staff {
    max-width: 920px;
  }
  .staff-item {
    padding: 60px 35px;
  }
  .staff-image {
    width: 320px;
    height: 320px;
  }
  .staff-body {
    padding: 30px;
  }
  .staff-info {
    padding: 25px 0;
  }
  .staff-info::after {
    right: -30px;
    left: -60px;
  }
  .staff-name {
    font-size: 24px;
  }
  .staff-job {
    font-size: 16px;
  }
  .staff-contact {
    margin-top: 20px;
    font-size: 18px;
  }
  .staff-contact li {
    margin-top: 15px;
    padding: 11px 0 11px 55px;
  }
  .staff-contact svg {
    width: 40px;
    height: 40px;
  }
  .staff-link {
    margin-top: 30px;
    font-size: 14px;
  }
  .staff-link svg {
    width: 9px;
    height: 14px;
    margin-left: 20px;
  }
}

/*EXTRA*/

    .intro-description {
    /*
    font-size: 19px;*/
    opacity: .85;
    font-weight: 400;
  }

  .post-description {
    opacity: .85;
    /*font-size: 16px;*/
  }
  .popup-description img {
    width: 100%;
    height: auto;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  @media (min-width: 1200px) {
    .post-listing.primary .post-body {
      padding: 130px 70px 0 30px;
    }
  }

 .editor-accordion--item h3 {
    margin-top: 30px;
    color: #e98a39;
  }
  .editor-accordion--item hr {
    margin-top: 35px;
    margin-bottom: 10px;
    color: #e98a39;
    opacity: .54;

  }
  .editor-accordion--item img {
    width: 100%;
    margin-top:25px;
  }

     /* FORM*/
    .popup-form--input button {
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background-color: #e98a39;
      border-color: #e98a39;
      color: #fff;
    }

        @media (min-width: 1200px) {
      .popup-description {
        font-size: 18px;
      }
    }

    @media (min-width: 1024px) {
      .popup-title {
        font-size: 32px;
      }
    }
    .popup-description p {
      padding-top: 18px;
      opacity: .85;
    }
    .popup-description p:first-child {
      padding-top: 0;
    }

        hr.contacthr {
      opacity: .30;
      margin-top: 15px
    }
    .contact-info a{
      color: #026b49;
    }
    .contact-info a:hover {
      color: #e98a39;
    }

        .editor-accordion--item h3 {
      margin-top: 30px;
      color: #e98a39;
    }
    .editor-accordion--item hr {
      margin-top: 35px;
      margin-bottom: 10px;
      color: #e98a39;
      opacity: .54;

    }
    .editor-accordion--item img {
      width: 100%;
      margin-top:25px;
    }

    .editor-accordion--item h3:first-child {
    margin-top: 0px;
    color: #e98a39;
}

  .editor-content p a {
    text-decoration: underline;
}

