@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweathersans;
  src: url('../fonts/MerriweatherSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Merriweathersans;
  src: url('../fonts/MerriweatherSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--snow-white: #fdfdfd;
  --color--smoky-gray: #4c4d4b;
  --color--deep-green: #0c1100;
  --color--black: #000;
  --color--transparent: #fff0;
  --color--deep-black: #040600;
  --color--bg-gray: #f5f3f2;
  --color--white: white;
  --color--light-gray: #e3e6dd;
  --color--lemon-yellow: #f6e96f;
  --font-family--inter: Inter, sans-serif;
  --font-family--merriweather-sans: Merriweathersans, sans-serif;
}

body {
  background-color: var(--color--snow-white);
  color: var(--color--smoky-gray);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  color: var(--color--deep-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweathersans, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  color: var(--color--deep-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweathersans, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  color: var(--color--deep-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweathersans, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}

h4 {
  color: var(--color--deep-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweathersans, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

h5 {
  color: var(--color--deep-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweathersans, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

h6 {
  color: var(--color--deep-green);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Merriweathersans, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--color--deep-green);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-bottom: 10px;
}

img {
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
}

strong {
  color: var(--color--black);
  font-weight: 700;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.heading-style-h2 {
  font-size: 3rem;
  line-height: 1.25;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global.padding-section-navbar {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.heading-style-h3 {
  font-size: 2.25rem;
  line-height: 1.25;
}

.text-size-medium {
  font-size: 1.125rem;
}

.button {
  border: 1px solid var(--color--transparent);
  background-color: var(--color--deep-black);
  color: var(--color--snow-white);
  text-align: center;
  border-radius: 999px;
  padding: .75rem 2rem;
  font-family: Merriweathersans, sans-serif;
  font-size: 1.125rem;
  transition: border-color .3s, color .3s, background-color .3s;
}

.button:hover {
  border-color: var(--color--deep-green);
  background-color: var(--color--transparent);
  color: var(--color--deep-green);
}

.container-large {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.title-highlight-text {
  background-image: url('../images/hero-highlight.png');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: auto;
}

.title-highlight-text.normal-highlight {
  background-position: 50% 100%;
}

.hero-image-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  padding-top: 0;
  padding-bottom: .5rem;
  padding-left: 2.5rem;
  position: relative;
}

.hero-image-wrapper.custom {
  padding-left: 0;
}

.hero-image {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.section-featured {
  background-color: var(--color--bg-gray);
}

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

.featured-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.featured-consistency-left-content {
  width: 100%;
}

.featured-consistency-image-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: none;
}

.consistency-process {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--color--deep-green);
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.consistency-process-text {
  color: var(--color--deep-green);
  font-family: Merriweathersans, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.consistency-process-icon {
  width: 2rem;
  height: 2rem;
}

.featured-consistency-title-wrapper {
  width: 100%;
  max-width: 544px;
  margin-bottom: 1.5rem;
  position: relative;
}

.featured-2-expert-process-item-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 1rem;
}

.button-text-icon-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--color--snow-white);
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.faq-item-wrapper {
  border: 1px solid #c0c4c3;
  border-radius: .5rem;
}

.faq-question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  transition: background-color .35s;
  display: flex;
}

.footer {
  background-color: #f5f3f2;
}

.padding-section-footer {
  padding-top: 7rem;
  padding-bottom: 1.5rem;
}

.footer-top-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  display: flex;
}

.footer-left-content-wrapper {
  width: 100%;
  max-width: 330px;
}

.margin-bottom-32 {
  margin-bottom: 2rem;
}

.footer-right-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 769px;
  display: grid;
}

.footer-column {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer-column-title {
  font-size: 1.25rem;
  line-height: 1.4;
}

.footer-column-links {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--color--black);
  font-size: 1.125rem;
  transition: color .3s;
  display: inline;
}

.footer-link:hover {
  color: var(--color--deep-green);
}

.footer-social-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

.footer-social-icon {
  width: 24px;
  height: 24px;
}

.footer-horizontal-row {
  background-color: var(--color--light-gray);
  width: 100%;
  height: 1px;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}

.footer-copyright-text {
  text-align: center;
  font-size: .9rem;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-text-link-2 {
  color: var(--color--deep-green);
  font-family: Merriweathersans, sans-serif;
  position: absolute;
}

.nav-menu-links {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.menu-bar {
  background-color: #e7e7e7;
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
}

.menu-bar._3 {
  margin-bottom: 0;
}

.nav-text-link {
  color: var(--color--deep-green);
  padding: 0;
  font-family: Merriweathersans, sans-serif;
  transition: color .35s;
  display: block;
}

.nav-text-link:hover {
  color: #545655;
}

.navbar {
  z-index: 999;
  position: relative;
}

.navbar-right {
  grid-column-gap: 1.125rem;
  grid-row-gap: 0rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-link-text-wrap {
  position: relative;
  overflow: hidden;
}

.hamburger-menu {
  z-index: 999;
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 38px;
  height: 38px;
  padding: 8px;
  display: none;
  position: relative;
  overflow: hidden;
}

.nav-button {
  border: 1px solid var(--color--deep-green);
  background-color: var(--color--transparent);
  color: var(--color--deep-green);
  border-radius: 999px;
  padding: .75rem 1.25rem;
  font-family: Merriweathersans, sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  transition: background-color .3s, border-color .3s, color .3s;
}

.nav-button:hover {
  background-color: var(--color--deep-green);
  color: var(--color--snow-white);
}

.consistency-text-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contect-form-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-left-title-wrapper {
  max-width: 280px;
  margin-bottom: 1rem;
  position: relative;
}

.contact-form-title-shape {
  position: absolute;
  inset: -30px -25px auto auto;
}

.contact-address-info-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.contact-info-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  max-width: 360px;
  display: flex;
}

.contsct-info-icon-wrapper {
  background-color: var(--color--lemon-yellow);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.contsct-info-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.contsct-info-icon.padding {
  padding: 2px;
}

.contact-info-text-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.contact-info-label {
  color: var(--color--deep-green);
  font-family: Merriweathersans, sans-serif;
  font-weight: 700;
}

.contact-form-block {
  background-color: var(--color--white);
  border: 1px solid #f0f5f4;
  border-radius: 1rem;
  padding: 56px 40px;
  position: relative;
  box-shadow: 0 4px 30px #0000000a;
}

.contact-form {
  flex-flow: column;
  display: flex;
}

.form-title-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  margin-bottom: 56px;
  display: flex;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-field {
  border: 1px solid #b4b8b7;
  border-radius: 999px;
  min-height: 56px;
  margin-bottom: 0;
  padding: 16px;
  font-family: Merriweathersans, sans-serif;
}

.input-field:focus {
  border-color: var(--color--deep-green);
}

.input-field::placeholder {
  color: var(--color--smoky-gray);
  font-family: Merriweathersans, sans-serif;
}

.input-field.input-text-area {
  border-radius: 1rem;
  min-height: 108px;
}

.user-form-title {
  font-weight: 400;
}

.form-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  margin-bottom: 20px;
  display: flex;
}

.field-label {
  font-size: .875rem;
}

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

.utility-page-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 600px;
  display: flex;
}

.utility-page-form {
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  width: 600px;
  display: flex;
}

._404-text-wrapper {
  display: flex;
}

._404-text {
  color: var(--color--light-gray);
  font-family: Merriweathersans, sans-serif;
  font-size: 100px;
  line-height: .8;
}

.checkout-form {
  background-color: var(--color--transparent);
  min-height: auto;
  padding: 0;
}

.checkout-heading-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 600px;
  margin-bottom: 40px;
  display: flex;
}

.license-block-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--color--bg-gray);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4rem 2rem;
  display: flex;
}

.padding-section-x-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.consistency-title-shape {
  position: absolute;
  inset: 35px -20px auto auto;
}

.featured-lett-title-shape {
  position: absolute;
  inset: -30px 60px auto auto;
}

.featured-left-title-wrapper {
  max-width: 450px;
  margin-bottom: 1.5rem;
  position: relative;
}

.button-text-icon-wrapper-2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fdfdfd;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.home-section-featured {
  background-color: var(--color--bg-gray);
}

.image {
  width: 140px;
}

.image-2 {
  width: 140px;
  margin-bottom: 1rem;
}

.image-3 {
  display: none;
}

.swifttab-sub-title {
  color: var(--color--black);
  font-family: Montserrat, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 150%;
}

.swift-text-regular {
  letter-spacing: -.2px;
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.swift-text-regular.tab {
  max-width: 35.5rem;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 140%;
}

.div-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4rem;
  display: grid;
}

.teema {
  color: var(--color--black);
  background-color: #f6e96fb3;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: .8rem;
  display: inline;
}

.teema-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.image-4 {
  object-fit: contain;
  width: 100%;
  max-width: 450px;
}

@media screen and (min-width: 1280px) {
  .hero-image-wrapper {
    padding-left: 4rem;
  }

  .div-block {
    grid-row-gap: 4rem;
  }

  .teema-wrap {
    grid-row-gap: 0rem;
  }
}

@media screen and (min-width: 1920px) {
  .container-large {
    max-width: 90rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  .heading-style-h2 {
    font-size: 2.5rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .consistency-process {
    padding: 1.25rem;
  }

  .consistency-process-text {
    font-size: 1rem;
  }

  .padding-section-footer {
    padding-top: 6rem;
  }

  .footer-top-content-wrapper {
    flex-flow: column;
  }

  .nav-menu-links {
    background-color: #fff;
    border-radius: 12px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    transform: translate(0, -160%);
  }

  .menu-bar {
    background-color: #0c1100;
  }

  .navbar-logo-wrapper.w--current {
    z-index: 999;
    position: relative;
  }

  .hamburger-menu {
    flex-flow: column;
    display: flex;
  }

  .contect-form-content-wrapper {
    grid-column-gap: 3rem;
  }

  .contact-left-title-wrapper {
    max-width: 244px;
  }

  .contact-form-block {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .padding-section-x-large {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .consistency-title-shape {
    top: 70px;
    right: 20px;
  }

  .featured-lett-title-shape {
    right: -20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  h5 {
    font-size: 1.125rem;
    line-height: 1.2;
  }

  h6 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-image-wrapper {
    height: 500px;
  }

  .hero-image {
    object-position: 50% 25%;
  }

  .featured-content-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-consistency-image-wrapper {
    margin-top: 2rem;
    display: flex;
  }

  .featured-consistency-title-wrapper {
    margin-bottom: 1rem;
  }

  .padding-section-footer {
    padding-top: 3rem;
  }

  .footer-top-content-wrapper {
    grid-row-gap: 2.5rem;
  }

  .margin-bottom-32 {
    margin-bottom: 1.5rem;
  }

  .footer-right-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-horizontal-row {
    margin-top: 3rem;
  }

  .nav-menu-links {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    transform: translate(0, -160%);
  }

  .nav-text-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-right {
    grid-column-gap: 1rem;
  }

  .hamburger-menu {
    display: flex;
  }

  .consistency-text-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .contect-form-content-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .contact-form-title-shape {
    display: none;
  }

  .contact-form-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .form-title-wrapper {
    margin-bottom: 40px;
  }

  .input-field {
    min-height: 54px;
  }

  .utility-page-form {
    width: auto;
  }

  ._404-text {
    font-size: 200px;
  }

  .license-block-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-section-x-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .consistency-title-shape, .featured-lett-title-shape {
    display: none;
  }

  .featured-left-title-wrapper {
    margin-bottom: 1rem;
  }

  .div-block {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .heading-style-h2 {
    font-size: 2rem;
  }

  .padding-global.padding-section-navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .button {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1rem;
  }

  .hero-image-wrapper {
    height: 350px;
  }

  .hero-image-wrapper.custom {
    height: 300px;
  }

  .hero-image {
    object-position: 50% 10%;
  }

  .featured-content-wrapper {
    display: grid;
  }

  .featured-consistency-image-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .consistency-process {
    padding: 1rem;
  }

  .consistency-process-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 2px;
  }

  .featured-consistency-title-wrapper {
    margin-bottom: 1.25rem;
  }

  .faq-question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer-top-content-wrapper {
    grid-row-gap: 2rem;
  }

  .footer-right-content {
    grid-template-columns: 1fr;
  }

  .footer-link {
    font-size: 1rem;
  }

  .nav-menu-links {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navbar-right {
    grid-column-gap: 5px;
  }

  .nav-button {
    display: none;
  }

  .consistency-text-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-address-info-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .contact-info-list {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contsct-info-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .contact-info-text-wrapper {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .form-title-wrapper {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
  }

  .input-group {
    margin-bottom: 1rem;
  }

  .input-field {
    color: var(--color--deep-green);
    font-size: .875rem;
  }

  .input-field.input-text-area {
    min-height: 90px;
  }

  .utility-page-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  ._404-text {
    font-size: 100px;
  }

  .license-block-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 2rem 1rem;
  }

  .padding-section-x-large.custom-hero {
    padding-top: 2rem;
  }

  .featured-left-title-wrapper {
    margin-bottom: 1.25rem;
  }

  .swifttab-sub-title {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

#w-node-_2734ec7a-22b0-5d70-2b2e-b231cfa2db94-6ea81759 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db2e6fee-3568-d91a-79ff-d35a76eb30f6-6ea81759 {
  justify-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-c5613c24-c1cc-923c-9dca-6221341221a9-6ea81759 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweathersans';
  src: url('../fonts/MerriweatherSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweathersans';
  src: url('../fonts/MerriweatherSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}