:root {
  --yv-ink: #141518;
  --yv-ink-soft: #32343a;
  --yv-paper: #ffffff;
  --yv-wash: #f2f2f0;
  --yv-wash-2: #fafaf8;
  --yv-line: #e6e6e3;
  --yv-green: #2e5e4e;
  --yv-green-deep: #1e4638;
  --yv-green-light: #3c7a63;
  --yv-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --yv-body: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--yv-paper);
  color: var(--yv-ink);
  font-family: var(--yv-body);
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--yv-display);
  font-weight: 500;
  color: var(--yv-ink);
  margin: 0;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0 0 14px;
  padding-left: 18px;
}

li {
  margin-bottom: 6px;
}

.yv-navigation {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid var(--yv-line);
}

.yv-navigation-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.yv-logo-link {
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.yv-logo-mark {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}

.yv-logo-type {
  font-family: var(--yv-display);
  font-size: 19px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.yv-logo-sub {
  display: block;
  margin-top: 4px;
  font-family: var(--yv-body);
  font-size: 9px;
  line-height: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

.yv-nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.yv-nav-link {
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yv-ink);
}

.yv-nav-link:hover {
  color: rgba(20, 21, 24, 0.55);
}

.yv-nav-link.cc-current {
  -webkit-box-shadow: inset 0 -2px 0 0 var(--yv-green);
  box-shadow: inset 0 -2px 0 0 var(--yv-green);
}

.yv-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--yv-ink);
  -webkit-transition: background-color 400ms ease, color 400ms ease;
  transition: background-color 400ms ease, color 400ms ease;
  color: #fff;
  font-family: var(--yv-body);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--yv-ink);
  cursor: pointer;
}

.yv-button:hover {
  background-color: var(--yv-ink-soft);
  border-color: var(--yv-ink-soft);
  color: #fff;
}

.yv-button.cc-contact {
  padding: 10px 15px;
}

.yv-button.cc-jumbo {
  padding: 16px 35px;
  font-size: 13px;
}

.yv-button.cc-ghost {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.yv-button.cc-ghost:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--yv-ink);
}

.yv-button.cc-outline {
  background-color: transparent;
  color: var(--yv-ink);
}

.yv-button.cc-outline:hover {
  background-color: var(--yv-ink);
  color: #fff;
}

.yv-burger {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  background-color: transparent;
  border: 1px solid var(--yv-line);
  cursor: pointer;
}

.yv-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background-color: var(--yv-ink);
}

.yv-nav-drawer {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid var(--yv-line);
}

.yv-nav-open .yv-nav-drawer {
  display: block;
}

.yv-nav-drawer a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--yv-line);
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.yv-nav-drawer .yv-button {
  display: block;
  margin-top: 16px;
  border-bottom: 1px solid var(--yv-ink);
  text-align: center;
}

.yv-section {
  margin-right: 30px;
  margin-left: 30px;
}

.yv-section.cc-flush {
  margin-right: 0px;
  margin-left: 0px;
}

.yv-section.cc-cta {
  padding-right: 30px;
  padding-left: 30px;
  background-color: var(--yv-wash);
}

.yv-container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.yv-container.cc-narrow {
  max-width: 780px;
}

.yv-intro-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 560px;
  margin-top: 76px;
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--yv-green);
  background-image: radial-gradient(circle at 24% 34%, rgba(60, 122, 99, 0.95) 0%, rgba(46, 94, 78, 0) 55%), radial-gradient(circle at 78% 72%, rgba(30, 70, 56, 0.9) 0%, rgba(46, 94, 78, 0) 60%);
  text-align: center;
}

.yv-intro-header.cc-page {
  height: 340px;
  margin-bottom: 50px;
  background-image: radial-gradient(circle at 22% 30%, rgba(60, 122, 99, 0.9) 0%, rgba(30, 70, 56, 0) 58%);
}

.yv-intro-content {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}

.yv-intro-text {
  width: 90%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.yv-heading-jumbo {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #fff;
}

.yv-intro-sub {
  margin-top: 18px;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.yv-intro-label {
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.yv-heading-jumbo-small {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 34px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.yv-label {
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.yv-label.cc-light {
  opacity: 0.55;
}

.yv-label.cc-green {
  color: var(--yv-green);
  opacity: 1;
}

.yv-motto-wrap {
  width: 74%;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  text-align: center;
}

.yv-divider {
  height: 1px;
  background-color: var(--yv-line);
}

.yv-home-content-wrap {
  margin-top: 80px;
  margin-bottom: 100px;
}

.yv-section-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 44px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.yv-paragraph {
  font-size: 15px;
  line-height: 26px;
}

.yv-paragraph.cc-light {
  opacity: 0.62;
}

.yv-paragraph-bigger {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
}

.yv-paragraph-bigger.cc-bigger-light {
  opacity: 0.6;
}

.yv-paragraph-tiny {
  font-size: 12px;
  line-height: 20px;
  opacity: 0.6;
}

.yv-home-section-wrap {
  margin-top: 20px;
  margin-bottom: 30px;
}

.yv-about-grid {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.yv-about-grid.cc-about-2 {
  margin-top: 80px;
}

.yv-grid-image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}

.yv-about-grid.cc-about-2 .yv-grid-image {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  -ms-grid-column: 1;
  grid-column-start: 1;
}

.yv-about-grid.cc-about-2 .yv-home-section-wrap {
  -ms-grid-column: 2;
  grid-column-start: 2;
}

.yv-section-2 {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.yv-heading-center {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 42px;
  font-weight: 500;
  text-align: center;
}

.yv-ops-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.yv-ops-item {
  width: 25%;
  padding: 24px 20px;
  border-left: 1px solid var(--yv-line);
  text-align: left;
}

.yv-ops-item:first-child {
  border-left: 0px;
}

.yv-ops-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.yv-ops-item p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 24px;
  opacity: 0.62;
}

.yv-ops-num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--yv-display);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--yv-green);
}

.yv-steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--yv-line);
}

.yv-steps-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  padding: 26px 0;
  border-bottom: 1px solid var(--yv-line);
  text-align: left;
}

.yv-steps-num {
  -webkit-flex: 0 0 90px;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  font-family: var(--yv-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yv-green);
  padding-top: 4px;
}

.yv-steps-body h3 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 28px;
}

.yv-steps-body p {
  margin-bottom: 0px;
  opacity: 0.62;
}

.yv-note {
  margin-top: 34px;
  padding: 22px 26px;
  background-color: var(--yv-wash-2);
  border-left: 2px solid var(--yv-green);
  text-align: left;
}

.yv-note p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 24px;
}

.yv-fee-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid var(--yv-line);
  text-align: left;
}

.yv-fee-row:first-child {
  border-top: 1px solid var(--yv-line);
}

.yv-fee-key {
  -webkit-flex: 0 0 240px;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
  padding-right: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.yv-fee-val {
  opacity: 0.66;
  font-size: 14px;
  line-height: 24px;
}

.yv-faq-item {
  border-bottom: 1px solid var(--yv-line);
  text-align: left;
}

.yv-faq-item:first-child {
  border-top: 1px solid var(--yv-line);
}

.yv-faq-item summary {
  position: relative;
  padding: 22px 40px 22px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--yv-display);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.yv-faq-item summary::-webkit-details-marker {
  display: none;
}

.yv-faq-item summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  font-size: 22px;
  color: var(--yv-green);
}

.yv-faq-item[open] summary:after {
  content: "\2013";
}

.yv-faq-answer {
  padding-bottom: 22px;
  opacity: 0.66;
  font-size: 14px;
  line-height: 24px;
}

.yv-faq-answer p:last-child {
  margin-bottom: 0px;
}

.yv-contact-grid {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1.1fr;
  grid-template-columns: 1fr 1.1fr;
  text-align: left;
}

.yv-contact-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--yv-line);
}

.yv-contact-line:first-child {
  border-top: 1px solid var(--yv-line);
}

.yv-contact-line .yv-label {
  display: block;
  margin-bottom: 6px;
  color: var(--yv-green);
}

.yv-contact-line a {
  border-bottom: 1px solid var(--yv-line);
}

.yv-contact-line a:hover {
  border-bottom-color: var(--yv-green);
}

.yv-map {
  min-height: 380px;
  border: 1px solid var(--yv-line);
  background-color: var(--yv-wash);
}

.yv-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.yv-photo-band {
  position: relative;
  height: 380px;
  margin-bottom: 90px;
  overflow: hidden;
}

.yv-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yv-photo-band-caption {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 22px 26px;
  background-image: linear-gradient(rgba(20, 21, 24, 0), rgba(20, 21, 24, 0.85));
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

.yv-time-intro {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  opacity: 0.62;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
}

.yv-cta-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 110px;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.yv-cta-text {
  margin-bottom: 30px;
  max-width: 530px;
}

.yv-cta-actions .yv-button {
  margin: 0 5px 10px;
}

.yv-legal-wrap {
  margin-bottom: 90px;
  text-align: left;
}

.yv-legal-meta {
  margin-bottom: 34px;
  padding: 14px 18px;
  border: 1px dashed var(--yv-line);
  font-size: 12px;
  line-height: 20px;
  opacity: 0.7;
}

.yv-legal-wrap h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 32px;
}

.yv-legal-wrap h2:first-of-type {
  margin-top: 0px;
}

.yv-legal-wrap p, .yv-legal-wrap li {
  font-size: 15px;
  line-height: 26px;
  opacity: 0.78;
}

.yv-legal-wrap a {
  border-bottom: 1px solid var(--yv-line);
}

.yv-footer-wrap {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--yv-line);
  text-align: center;
}

.yv-footer-links {
  margin-bottom: 18px;
}

.yv-footer-links a {
  display: inline-block;
  margin: 0 10px 8px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.yv-footer-links a:hover {
  color: var(--yv-green);
}

.yv-footer-meta {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 22px;
  opacity: 0.66;
}

.yv-cookie-bar {
  display: none;
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  max-width: 460px;
  padding: 22px 24px;
  background-color: var(--yv-ink);
  color: #fff;
  text-align: left;
}

.yv-cookie-bar.cc-visible {
  display: block;
}

.yv-cookie-bar p {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.yv-cookie-bar a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.yv-cookie-bar .yv-button {
  margin-right: 8px;
  margin-bottom: 6px;
  background-color: #fff;
  border-color: #fff;
  color: var(--yv-ink);
}

.yv-cookie-bar .yv-button:hover {
  background-color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--yv-ink);
}

.yv-cookie-bar .yv-button.cc-ghost {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .yv-navigation-wrap {
    padding: 15px 20px;
  }
  .yv-nav-menu {
    display: none;
  }
  .yv-burger {
    display: block;
  }
  .yv-navigation-wrap .yv-button.cc-contact {
    display: none;
  }
  .yv-heading-jumbo {
    font-size: 46px;
    line-height: 58px;
  }
  .yv-heading-jumbo-small {
    font-size: 28px;
    line-height: 40px;
  }
  .yv-motto-wrap {
    width: 86%;
  }
  .yv-section-heading {
    font-size: 27px;
    line-height: 38px;
  }
  .yv-intro-header {
    height: 460px;
    margin-top: 69px;
  }
  .yv-intro-header.cc-page {
    height: 300px;
  }
  .yv-about-grid {
    grid-column-gap: 40px;
  }
  .yv-ops-item {
    width: 50%;
  }
  .yv-ops-item:nth-child(3) {
    border-left: 0px;
  }
  .yv-contact-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .yv-section {
    margin-right: 15px;
    margin-left: 15px;
  }
  .yv-heading-jumbo {
    font-size: 36px;
    line-height: 48px;
  }
  .yv-heading-jumbo-small {
    font-size: 25px;
    line-height: 36px;
  }
  .yv-motto-wrap {
    width: 100%;
  }
  .yv-intro-header {
    height: 400px;
  }
  .yv-about-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .yv-about-grid.cc-about-2 .yv-grid-image {
    -ms-grid-column: 1;
    grid-column-start: 1;
  }
  .yv-about-grid.cc-about-2 .yv-home-section-wrap {
    -ms-grid-column: 1;
    grid-column-start: 1;
  }
  .yv-home-content-wrap {
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .yv-cta-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .yv-ops-item {
    width: 100%;
    border-left: 0px;
    border-top: 1px solid var(--yv-line);
  }
  .yv-ops-item:first-child {
    border-top: 0px;
  }
  .yv-fee-row {
    display: block;
  }
  .yv-fee-key {
    margin-bottom: 6px;
  }
  .yv-steps-list li {
    display: block;
  }
  .yv-steps-num {
    margin-bottom: 8px;
  }
  .yv-cookie-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .yv-photo-band {
    height: 260px;
    margin-bottom: 60px;
  }
  .yv-photo-band-caption {
    padding: 16px 18px;
    font-size: 13px;
    line-height: 22px;
  }
}

@media screen and (max-width: 479px) {
  .yv-navigation-wrap {
    padding: 12px 15px;
  }
  .yv-heading-jumbo {
    font-size: 30px;
    line-height: 40px;
  }
  .yv-heading-jumbo-small {
    font-size: 21px;
    line-height: 31px;
  }
  .yv-button.cc-jumbo {
    padding: 12px 25px;
    font-size: 12px;
  }
  .yv-intro-header {
    height: 360px;
  }
  .yv-intro-header.cc-page {
    height: 260px;
  }
  .yv-section-heading {
    font-size: 23px;
    line-height: 33px;
  }
  .yv-logo-type {
    font-size: 16px;
  }
}
