:root {
  /* New Corporate Palette - Deep Navy, Emerald, Slate */
  --background-color: #0a192f;
  /* Deep Navy */
  --surface-color: #112240;
  /* Slightly lighter Navy for cards/sections */
  --default-color: #cbd5e1;
  /* Slate Lighter for text */
  --heading-color: #e2e8f0;
  /* Slate Lightest for headings */
  --accent-color: #74B651;
  /* Emerald Green (Tailwind Emerald 500 equivalent) */
  --accent-dark: #047857;
  /* Emerald 700 */
  --nav-color: #cbd5e1;
  --nav-hover-color: #10b981;
  --nav-dropdown-background-color: #112240;
  --nav-dropdown-color: #cbd5e1;
  --nav-dropdown-hover-color: #10b981;
  --contrast-color: #ffffff;

  /* Font Families */
  --heading-font: "Century Gothic", sans-serif!important;
  --nav-font: "Century Gothic", sans-serif!important;
  --body-font: "Century Gothic", sans-serif!important;
}

body {
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: var(--body-font);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 56px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 44px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}



.header .btn-getstarted {
  order: 2;
  margin: 0 15px 0 0;
  padding: 6px 15px;
}

.header .navmenu {
  order: 3;
}
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}


/*--------------------------------------------------------------
# Redesign - New Sections & Styles
--------------------------------------------------------------*/

/* Hero Video Background */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-wrapper video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.7);
  /* Deep Navy Overlay */
  z-index: 2;
}

.hero .container {
  z-index: 3;
  position: relative;
}

/* Glassmorphism Header */
.header {
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.index-page .header {
  background: rgba(10, 25, 47, 0.5);
  /* More transparent on home */
}

/* Ticker Section */
.ticker-wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 3rem;
  background-color: var(--surface-color);
  padding-left: 100%;
  box-sizing: content-box;
  z-index: 9;
  border-top: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
}

.ticker {
  display: inline-block;
  height: 3rem;
  line-height: 3rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 30s;
}

.ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1rem;
  color: var(--contrast-color);
}

.ticker__item span {
  color: var(--accent-color);
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Division Cards */
.division-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.division-section h2 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.division-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.division-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.division-card h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.division-card ul {
  list-style: none;
  padding-left: 0;
}

.division-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--default-color);
}

.division-card ul li::before {
  content: "▹";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 500px;
  background-color: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.map-placeholder::after {
  content: "Global Operations Map (Interactive)";
  color: var(--default-color);
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 2;
}

/* Newsroom */
.news-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-content {
  padding: 1.5rem;
}

.news-date {
  color: var(--accent-color);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.news-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--accent-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-primary-custom:hover {
  background-color: var(--accent-dark);
  color: #fff;
  transform: scale(1.05);
}

.btn-outline-custom {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 8px 23px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  background: transparent;
}


/*--------------------------------------------------------------
# Deep Navy Theme Utilities & Overrides
--------------------------------------------------------------*/
.bg-navy {
  background-color: var(--background-color) !important;
  color: var(--default-color);
}

.bg-surface {
  background-color: var(--surface-color) !important;
  color: var(--default-color);
}

.text-slate {
  color: var(--default-color) !important;
}

.text-emerald {
  color: var(--accent-color) !important;
}

.text-heading {
  color: var(--heading-color) !important;
}

/* Force Bootstrap components to dark mode */
.card,
.list-group-item {
  background-color: var(--surface-color);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--default-color);
}

.modal-content {
  background-color: var(--surface-color);
  color: var(--default-color);
}

.table {
  color: var(--default-color);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Override any remaining white backgrounds */
.bg-white {
  background-color: var(--surface-color) !important;
  color: var(--heading-color) !important;
}

.bg-light {
  background-color: var(--background-color) !important;
  color: var(--default-color) !important;
}

.text-dark {
  color: var(--heading-color) !important;
}

.text-muted {
  color: rgba(203, 213, 225, 0.6) !important;
  /* Slate with opacity */
}


font-size: 48px;
font-weight: 700;
line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.ticker-link {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  color: var(--color--text-secondary);
  align-items: center;
  font-size: .875rem;
  line-height: 1;
  display: flex;
}

.ticker-icon {
  width: .975rem;
  height: .975rem;
}

.top-links {
  display: flex;
  justify-content: flex-end;
}

.top-links a {
  padding-left: 20px;
  transition: all .2s;
  font-family: var(--default-font);
  font-size: .9rem;
}

.navbar-toggler {
  font-size: 2rem;
}

/* Full-screen overlay menu */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--color--button-background);
  overflow-x: hidden;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.overlay-content {
  text-align: center;
}

.overlay a {
  padding: 15px;
  text-decoration: none;
  font-size: 24px;
  color: white;
  display: block;
  transition: 0.3s;
  opacity: .8;
  color: var(--color--text);
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.overlay a:hover {
  opacity: 1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 40px;
  cursor: pointer;
}

/* Hamburger icon */
.navbar-toggler {
  border: none;
  outline: none;
}

.button.is-secondary.is-navbar.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  padding-right: .75rem;
}

.button.is-secondary.is-navbar {
  padding: .5rem 1rem;
  padding-right: 1rem;
  font-size: .875rem;
}

.button.is-secondary {
  border-color: var(--color--text-secondary);
  color: var(--color--text-secondary);
  background-color: #0000;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif
}

body {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

audio,
canvas,
progress,
video {
  vertical-align: baseline;
  display: inline-block
}

audio:not([controls]) {
  height: 0;
  display: none
}

[hidden],
template {
  display: none
}

a {
  background-color: #0000
}

a:active,
a:hover {
  outline: 0
}

abbr[title] {
  border-bottom: 1px dotted
}

b,
strong {
  font-weight: 700
}

dfn {
  font-style: italic
}

h1 {
  margin: .67em 0;
  font-size: 2em
}

mark {
  color: #000;
  background: #ff0
}

small {
  font-size: 80%
}

sub,
sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: hidden
}

hr {
  box-sizing: content-box;
  height: 0
}

pre {
  overflow: auto
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0
}

button {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
html input[type=button],
input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer
}

button[disabled],
html input[disabled] {
  cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0
}

input {
  line-height: normal
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto
}

input[type=search] {
  -webkit-appearance: none
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

legend {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto
}

optgroup {
  font-weight: 700
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

td,
th {
  padding: 0
}

@font-face {
  font-family: webflow-icons;
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==)format("truetype");
  font-weight: 400;
  font-style: normal
}

[class^=w-icon-],
[class*=\ w-icon-] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-family: webflow-icons !important
}

.w-icon-slider-right:before {
  content: ""
}

.w-icon-slider-left:before {
  content: ""
}

.w-icon-nav-menu:before {
  content: ""
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: ""
}

.w-icon-file-upload-remove:before {
  content: ""
}

.w-icon-file-upload-icon:before {
  content: ""
}

* {
  box-sizing: border-box
}

html {
  height: 100%
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block
}

html.w-mod-touch * {
  background-attachment: scroll !important
}

.w-block {
  display: block
}

.w-inline-block {
  max-width: 100%;
  display: inline-block
}

.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-clearfix:after {
  clear: both
}

.w-hidden {
  display: none
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block
}

input.w-button {
  -webkit-appearance: button
}

html[data-w-dynpage] [data-w-cloak] {
  color: #0000 !important
}

.w-code-block {
  margin: unset
}

pre.w-code-block code {
  all: inherit
}

.w-optimization {
  display: contents
}

.w-webflow-badge,
.w-webflow-badge>img {
  box-sizing: unset;
  width: unset;
  height: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
  margin: unset;
  padding: unset;
  float: unset;
  clear: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  background-image: unset;
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  background-origin: unset;
  background-clip: unset;
  background-attachment: unset;
  background-color: unset;
  box-shadow: unset;
  transform: unset;
  direction: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  font-size: unset;
  line-height: unset;
  font-style: unset;
  font-variant: unset;
  text-align: unset;
  letter-spacing: unset;
  -webkit-text-decoration: unset;
  text-decoration: unset;
  text-indent: unset;
  text-transform: unset;
  list-style-type: unset;
  text-shadow: unset;
  vertical-align: unset;
  cursor: unset;
  white-space: unset;
  word-break: unset;
  word-spacing: unset;
  word-wrap: unset;
  transition: unset
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  overflow: unset !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  transform: none !important
}

.w-webflow-badge>img {
  position: unset;
  visibility: unset !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: 700
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px
}

p {
  margin-top: 0;
  margin-bottom: 10px
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px
}

figure {
  margin: 0 0 10px
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none
}

.w-embed:before,
.w-embed:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-embed:after {
  clear: both
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative
}

.w-video iframe,
.w-video object,
.w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0
}

button,
[type=button],
[type=reset] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0
}

.w-form {
  margin: 0 0 15px
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none
}

label {
  margin-bottom: 5px;
  font-weight: 700;
  display: block
}

.w-input,
.w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block
}

.w-input::placeholder,
.w-select::placeholder {
  color: #999
}

.w-input:focus,
.w-select:focus {
  border-color: #3898ec;
  outline: 0
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee
}

textarea.w-input,
textarea.w-select {
  height: auto
}

.w-select {
  background-color: #f3f3f3
}

.w-select[multiple] {
  height: auto
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 400;
  display: inline-block
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block
}

.w-radio:before,
.w-radio:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-radio:after {
  clear: both
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal
}

.w-file-upload {
  margin-bottom: 10px;
  display: block
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  color: #333;
  display: inline-block
}

.w-file-upload-error {
  margin-top: 10px;
  display: block
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  display: flex
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: 400;
  display: block
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block
}

.w-icon-file-upload-uploading {
  height: 20px
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto
}

.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-container:after {
  clear: both
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px
}

.w-row:before,
.w-row:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-row:after {
  clear: both
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0
}

.w-col-1 {
  width: 8.33333%
}

.w-col-2 {
  width: 16.6667%
}

.w-col-3 {
  width: 25%
}

.w-col-4 {
  width: 33.3333%
}

.w-col-5 {
  width: 41.6667%
}

.w-col-6 {
  width: 50%
}

.w-col-7 {
  width: 58.3333%
}

.w-col-8 {
  width: 66.6667%
}

.w-col-9 {
  width: 75%
}

.w-col-10 {
  width: 83.3333%
}

.w-col-11 {
  width: 91.6667%
}

.w-col-12 {
  width: 100%
}

.w-hidden-main {
  display: none !important
}

@media screen and (max-width:991px) {
  .w-container {
    max-width: 728px
  }

  .w-hidden-main {
    display: inherit !important
  }

  .w-hidden-medium {
    display: none !important
  }

  .w-col-medium-1 {
    width: 8.33333%
  }

  .w-col-medium-2 {
    width: 16.6667%
  }

  .w-col-medium-3 {
    width: 25%
  }

  .w-col-medium-4 {
    width: 33.3333%
  }

  .w-col-medium-5 {
    width: 41.6667%
  }

  .w-col-medium-6 {
    width: 50%
  }

  .w-col-medium-7 {
    width: 58.3333%
  }

  .w-col-medium-8 {
    width: 66.6667%
  }

  .w-col-medium-9 {
    width: 75%
  }

  .w-col-medium-10 {
    width: 83.3333%
  }

  .w-col-medium-11 {
    width: 91.6667%
  }

  .w-col-medium-12 {
    width: 100%
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto
  }
}

@media screen and (max-width:767px) {

  .w-hidden-main,
  .w-hidden-medium {
    display: inherit !important
  }

  .w-hidden-small {
    display: none !important
  }

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto
  }

  .w-col-small-1 {
    width: 8.33333%
  }

  .w-col-small-2 {
    width: 16.6667%
  }

  .w-col-small-3 {
    width: 25%
  }

  .w-col-small-4 {
    width: 33.3333%
  }

  .w-col-small-5 {
    width: 41.6667%
  }

  .w-col-small-6 {
    width: 50%
  }

  .w-col-small-7 {
    width: 58.3333%
  }

  .w-col-small-8 {
    width: 66.6667%
  }

  .w-col-small-9 {
    width: 75%
  }

  .w-col-small-10 {
    width: 83.3333%
  }

  .w-col-small-11 {
    width: 91.6667%
  }

  .w-col-small-12 {
    width: 100%
  }
}

@media screen and (max-width:479px) {
  .w-container {
    max-width: none
  }

  .w-hidden-main,
  .w-hidden-medium,
  .w-hidden-small {
    display: inherit !important
  }

  .w-hidden-tiny {
    display: none !important
  }

  .w-col {
    width: 100%
  }

  .w-col-tiny-1 {
    width: 8.33333%
  }

  .w-col-tiny-2 {
    width: 16.6667%
  }

  .w-col-tiny-3 {
    width: 25%
  }

  .w-col-tiny-4 {
    width: 33.3333%
  }

  .w-col-tiny-5 {
    width: 41.6667%
  }

  .w-col-tiny-6 {
    width: 50%
  }

  .w-col-tiny-7 {
    width: 58.3333%
  }

  .w-col-tiny-8 {
    width: 66.6667%
  }

  .w-col-tiny-9 {
    width: 75%
  }

  .w-col-tiny-10 {
    width: 83.3333%
  }

  .w-col-tiny-11 {
    width: 91.6667%
  }

  .w-col-tiny-12 {
    width: 100%
  }
}

.w-widget {
  position: relative
}

.w-widget-map {
  width: 100%;
  height: 400px
}

.w-widget-map label {
  width: auto;
  display: inline
}

.w-widget-map img {
  max-width: inherit
}

.w-widget-map .gm-style-iw {
  text-align: center
}

.w-widget-map .gm-style-iw>button {
  display: none !important
}

.w-widget-twitter {
  overflow: hidden
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden
}

.w-background-video>video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em
}

.w-background-video--control>[hidden] {
  display: none !important
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  background: #ddd;
  height: 300px;
  position: relative
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0
}

.w-slider-nav.w-round>div {
  border-radius: 100%
}

.w-slider-nav.w-num>div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: .2em .5em
}

.w-slider-nav.w-shadow>div {
  box-shadow: 0 0 3px #3336
}

.w-slider-nav-invert {
  color: #fff
}

.w-slider-nav-invert>div {
  background-color: #2226
}

.w-slider-nav-invert>div.w-active {
  background-color: #222
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative
}

.w-slider-dot.w-active {
  background-color: #fff
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff
}

.w-slider-dot:focus.w-active {
  box-shadow: none
}

.w-slider-arrow-left,
.w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden
}

.w-slider-arrow-left [class^=w-icon-],
.w-slider-arrow-right [class^=w-icon-],
.w-slider-arrow-left [class*=\ w-icon-],
.w-slider-arrow-right [class*=\ w-icon-] {
  position: absolute
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto
}

.w-icon-slider-left,
.w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden
}

.w-slider-force-show {
  display: block !important
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block
}

.w-dropdown-toggle:focus {
  outline: 0
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute
}

.w-dropdown-list.w--open {
  display: block
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block
}

.w-dropdown-link.w--current {
  color: #0082f3
}

.w-dropdown-link:focus {
  outline: 0
}

@media screen and (max-width:767px) {
  .w-nav-brand {
    padding-left: 10px
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0)
}

.w-lightbox-backdrop,
.w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute
}

.w-lightbox-view:before {
  content: "";
  height: 100vh
}

.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh
}

.w-lightbox-frame,
.w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block
}

.w-lightbox-figure {
  margin: 0;
  position: relative
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0
}

.w-lightbox-control {
  cursor: pointer;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  transition: all .3s;
  position: absolute;
  top: 0
}

.w-lightbox-left {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
  display: none;
  bottom: 0;
  left: 0
}

.w-lightbox-right {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
  display: none;
  bottom: 0;
  right: 0
}

.w-lightbox-close {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
  background-size: 18px;
  height: 2.6em;
  right: 0
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden
}

.w-lightbox-item {
  box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate(0, 0)
}

.w-lightbox-active {
  opacity: .3
}

.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translateY(-50%)
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%)
}

.w-lightbox-spinner {
  box-sizing: border-box;
  border: 5px solid #0006;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: .8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid #0000;
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px
}

.w-lightbox-hide {
  display: none
}

.w-lightbox-noscroll {
  overflow: hidden
}

@media (min-width:768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh
  }

  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh
  }

  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh
  }

  .w-lightbox-left,
  .w-lightbox-right {
    opacity: .5;
    display: block
  }

  .w-lightbox-close {
    opacity: .8
  }

  .w-lightbox-control:hover {
    opacity: 1
  }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0
}

.w-richtext:before,
.w-richtext:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-richtext:after {
  clear: both
}

.w-richtext[contenteditable=true]:before,
.w-richtext[contenteditable=true]:after {
  white-space: initial
}

.w-richtext ol,
.w-richtext ul {
  overflow: hidden
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after,
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
  outline: 2px solid #2895f7
}

.w-richtext figure.w-richtext-figure-type-video>div:after,
.w-richtext figure[data-rt-type=video]>div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0
}

.w-richtext figure {
  max-width: 60%;
  position: relative
}

.w-richtext figure>div:before {
  cursor: default !important
}

.w-richtext figure img {
  width: 100%
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: .6
}

.w-richtext figure div {
  color: #0000;
  font-size: 0
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type=image] {
  display: table
}

.w-richtext figure.w-richtext-figure-type-image>div,
.w-richtext figure[data-rt-type=image]>div {
  display: inline-block
}

.w-richtext figure.w-richtext-figure-type-image>figcaption,
.w-richtext figure[data-rt-type=image]>figcaption {
  caption-side: bottom;
  display: table-caption
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type=video] {
  width: 60%;
  height: 0
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type=video] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.w-richtext figure.w-richtext-figure-type-video>div,
.w-richtext figure[data-rt-type=video]>div {
  width: 100%
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image>div,
.w-richtext figure.w-richtext-align-center[data-rt-type=image]>div {
  max-width: 100%
}

.w-richtext figure.w-richtext-align-normal {
  clear: both
}

.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block
}

.w-richtext figure.w-richtext-align-fullwidth>div {
  padding-bottom: inherit;
  display: inline-block
}

.w-richtext figure.w-richtext-align-fullwidth>figcaption {
  display: block
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative
}

.w-nav:before,
.w-nav:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-nav:after {
  clear: both
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative
}

.w-nav-link.w--current {
  color: #0082f3
}

.w-nav-menu {
  float: right;
  position: relative
}

[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important
}

.w--nav-link-open {
  display: block;
  position: relative
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0
}

.w-nav[data-animation=over-left] .w-nav-overlay {
  width: auto
}

.w-nav[data-animation=over-left] .w-nav-overlay,
.w-nav[data-animation=over-left] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto
}

.w-nav[data-animation=over-right] .w-nav-overlay {
  width: auto
}

.w-nav[data-animation=over-right] .w-nav-overlay,
.w-nav[data-animation=over-right] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative
}

.w-nav-button:focus {
  outline: 0
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8
}

.w-nav[data-collapse=all] .w-nav-menu {
  display: none
}

.w-nav[data-collapse=all] .w-nav-button,
.w--nav-dropdown-open,
.w--nav-dropdown-toggle-open {
  display: block
}

.w--nav-dropdown-list-open {
  position: static
}

@media screen and (max-width:991px) {
  .w-nav[data-collapse=medium] .w-nav-menu {
    display: none
  }

  .w-nav[data-collapse=medium] .w-nav-button {
    display: block
  }
}

@media screen and (max-width:767px) {
  .w-nav[data-collapse=small] .w-nav-menu {
    display: none
  }

  .w-nav[data-collapse=small] .w-nav-button {
    display: block
  }

  .w-nav-brand {
    padding-left: 10px
  }
}

@media screen and (max-width:479px) {
  .w-nav[data-collapse=tiny] .w-nav-menu {
    display: none
  }

  .w-nav[data-collapse=tiny] .w-nav-button {
    display: block
  }
}

.w-tabs {
  position: relative
}

.w-tabs:before,
.w-tabs:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table
}

.w-tabs:after {
  clear: both
}

.w-tab-menu {
  position: relative
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative
}

.w-tab-link.w--current {
  background-color: #c8c8c8
}

.w-tab-link:focus {
  outline: 0
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden
}

.w-tab-pane {
  display: none;
  position: relative
}

.w--tab-active {
  display: block
}

@media screen and (max-width:479px) {
  .w-tab-link {
    display: block
  }
}

.w-ix-emptyfix:after {
  content: ""
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px
}

.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
  display: none !important
}

.wf-layout-layout {
  display: grid
}

.w-code-component>* {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

:root {
  --font--body: "Century Gothic", sans-serif!important;
  --swatch--black: #231f20;
  --font--heading: var(--font--body);
  --color--background: var(--swatch--light);
  --color--text: var(--swatch--dark);
  --swatch--brand: #74b651;
  --swatch--accent: #2e4920;
  --swatch--white: white;
  --border-width--main: 1px;
  --color--button-background: var(--swatch--brand);
  --border-radius--main: .25rem;
  --color--button-text: var(--swatch--dark);
  --color--text-secondary: var(--swatch--accent);
  --swatch--grey: #e2e2e2;
  --swatch--light: var(--swatch--white);
  --swatch--dark: var(--swatch--black);
  --swatch--transparent: #fff0;
  --color--light-icon: var(--swatch--accent);
  --color--dark-icon: var(--swatch--transparent);
  --swatch--deep-blue: #1c2538;
  --dark--text-secondary: var(--swatch--brand);
  --dark--background: var(--swatch--dark);
  --dark--text: var(--swatch--light);
  --dark--button-background: var(--swatch--accent);
  --dark--button-text: var(--swatch--light)
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

body {
  font-family: var(--font--body);
  color: var(--swatch--black);
  font-size: 1rem;
  line-height: 1.5
}

h1 {
  font-family: var(--font--heading);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2
}

h2 {
  font-family: var(--font--heading);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2
}

h3 {
  font-family: var(--font--heading);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2
}

h4 {
  font-family: var(--font--heading);
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3
}

h5 {
  font-family: var(--font--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

h6 {
  font-family: var(--font--heading);
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

p {
  margin-bottom: .75rem
}

a {
  color: var(--swatch--black);
  transition: all .2s
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 40px
}

li {
  margin-bottom: .5rem
}

img {
  max-width: 100%;
  display: inline-block
}

label {
  margin-bottom: .25rem;
  font-weight: 500
}

blockquote {
  border-left: .1875rem solid var(--swatch--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem
}

figcaption {
  text-align: center;
  margin-top: .25rem
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%
}

.background-color-black {
  background-color: var(--swatch--black);
  color: #f5f5f5
}

.margin-medium {
  margin: 2rem
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem
}

.margin-tiny {
  margin: .25rem
}

.margin-left,
.margin-left.margin-tiny,
.margin-left.margin-custom1,
.margin-left.margin-medium,
.margin-left.margin-xhuge,
.margin-left.margin-xsmall,
.margin-left.margin-xxlarge,
.margin-left.margin-custom3,
.margin-left.margin-0,
.margin-left.margin-custom2,
.margin-left.margin-xxhuge,
.margin-left.margin-small,
.margin-left.margin-large,
.margin-left.margin-xxsmall,
.margin-left.margin-xlarge,
.margin-left.margin-huge {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0
}

.margin-bottom,
.margin-bottom.margin-medium,
.margin-bottom.margin-huge,
.margin-bottom.margin-xxlarge,
.margin-bottom.margin-small,
.margin-bottom.margin-0,
.margin-bottom.margin-xsmall,
.margin-bottom.margin-xlarge,
.margin-bottom.margin-tiny,
.margin-bottom.margin-custom2,
.margin-bottom.margin-xhuge,
.margin-bottom.margin-large,
.margin-bottom.margin-custom3,
.margin-bottom.margin-custom1,
.margin-bottom.margin-xxsmall,
.margin-bottom.margin-xxhuge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0
}

.page-padding {
  padding-left: 5%;
  padding-right: 5%
}

.heading-small {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.page-wrapper {
  background-color: var(--color--background);
  color: var(--color--text)
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto
}

.padding-small {
  padding: 1.5rem
}

.heading-xsmall {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

.padding-vertical,
.padding-vertical.padding-small,
.padding-vertical.padding-xsmall,
.padding-vertical.padding-custom2,
.padding-vertical.padding-tiny,
.padding-vertical.padding-xxhuge,
.padding-vertical.padding-xlarge,
.padding-vertical.padding-custom3,
.padding-vertical.padding-xxlarge,
.padding-vertical.padding-medium,
.padding-vertical.padding-custom1,
.padding-vertical.padding-xhuge,
.padding-vertical.padding-0,
.padding-vertical.padding-large,
.padding-vertical.padding-huge,
.padding-vertical.padding-xxsmall {
  padding-left: 0;
  padding-right: 0
}

.padding-vertical.padding-navbar {
  padding-top: 11.5rem;
  padding-bottom: 4rem
}

.button-logo-download {
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  padding-top: .25rem;
  padding-bottom: .25rem;
  font-size: .875rem;
  display: flex
}

.button-logo-download.invert {
  color: #fff;
  background-color: #000
}

.big-font {
  font-size: 300px;
  font-weight: 900;
  line-height: 300px
}

.download-button-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  display: grid
}

.social-share {
  object-fit: cover;
  width: 100%
}

.social-share.icon {
  width: 500%
}

.button-font-download {
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: flex
}

.button-font-download.invert {
  color: #fff;
  background-color: #000;
  padding: .125rem .4rem
}

.colour-wrapper {
  flex-direction: column;
  margin-bottom: 1rem;
  display: flex
}

.social-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 4fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid
}

._2-col-grid {
  grid-column-gap: 60px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.logo-box {
  flex-direction: column;
  padding: 4rem 1rem;
  display: flex
}

.branding-h2 {
  border-bottom: 1px solid #4242421a;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px
}

.logos_wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.colour-swatch {
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2rem 1rem;
  display: flex
}

.colour-swatch.background-color-primary {
  background-color: var(--swatch--brand)
}

.colour-swatch.background-color-secondary {
  background-color: var(--swatch--accent);
  color: var(--swatch--white)
}

.copy-colour {
  color: #000;
  background-color: #0003;
  padding: .5rem 0;
  font-size: .8rem
}

.grid-colour {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  display: grid
}

.brand-header-wrap {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: .5rem 1rem;
  font-weight: 700
}

.lower-instruction-text {
  text-align: center;
  margin: .5rem;
  font-size: .75rem
}

.div-brand {
  padding-bottom: 5rem
}

.social-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.font-weight-wrap {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 24px;
  display: flex
}

.font-wrapper {
  align-items: center;
  margin-bottom: 2rem;
  display: flex
}

.color-item {
  text-align: center;
  width: 200px;
  font-weight: 700
}

.font-weight {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  margin-right: 20px;
  font-size: 24px;
  line-height: 24px;
  display: flex
}

.social-explainer {
  grid-column-gap: 16px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 40vw;
  display: grid
}

.side-grid {
  grid-template-columns: 1fr
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex
}

.styleguide_grid-colours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr
}

.padding-bottom,
.padding-bottom.padding-tiny,
.padding-bottom.padding-custom3,
.padding-bottom.padding-xxhuge,
.padding-bottom.padding-xxsmall,
.padding-bottom.padding-xhuge,
.padding-bottom.padding-xxlarge,
.padding-bottom.padding-medium,
.padding-bottom.padding-small,
.padding-bottom.padding-xsmall,
.padding-bottom.padding-xlarge,
.padding-bottom.padding-huge,
.padding-bottom.padding-0,
.padding-bottom.padding-large,
.padding-bottom.padding-custom2,
.padding-bottom.padding-custom1 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0
}

.text-size-small {
  font-size: .875rem
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid
}

.margin-large {
  margin: 3rem
}

.overflow-auto {
  overflow: auto
}

.text-align-right {
  text-align: right
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3
}

.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3
}

.spacing-clean {
  margin: 0;
  padding: 0
}

.padding-horizontal,
.padding-horizontal.padding-xlarge,
.padding-horizontal.padding-tiny,
.padding-horizontal.padding-custom2,
.padding-horizontal.padding-xxlarge,
.padding-horizontal.padding-xxsmall,
.padding-horizontal.padding-custom3,
.padding-horizontal.padding-xhuge,
.padding-horizontal.padding-large,
.padding-horizontal.padding-huge,
.padding-horizontal.padding-xxhuge,
.padding-horizontal.padding-0,
.padding-horizontal.padding-medium,
.padding-horizontal.padding-xsmall,
.padding-horizontal.padding-custom1,
.padding-horizontal.padding-small {
  padding-top: 0;
  padding-bottom: 0
}

.text-style-strikethrough {
  text-decoration: line-through
}

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex
}

.padding-0 {
  padding: 0
}

.padding-xxhuge {
  padding: 10rem
}

.icon-height-small {
  height: 2rem
}

.button {
  border: var(--border-width--main)solid var(--color--button-background);
  border-radius: var(--border-radius--main);
  background-color: var(--color--button-background);
  color: var(--color--button-text);
  text-align: center;
  padding: .75rem 1.5rem;
  transition-property: opacity;
  transition-duration: .4s
}

.button:hover {
  opacity: .75
}

.button.is-small {
  padding: .5rem 1.25rem
}

.button.is-small.is-icon {
  padding-right: 1rem
}

.button.is-alternate {
  border-color: var(--color--text-secondary);
  background-color: var(--color--text-secondary);
  color: var(--color--background)
}

.button.is-secondary {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: #0000
}

.button.is-secondary.is-alternate {
  border-color: var(--color--button-background);
  color: var(--color--button-background);
  background-color: #0000
}

.button.is-secondary.is-navbar {
  padding: .5rem 1rem;
  font-size: 1rem
}

.button.is-secondary.is-navbar.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  padding-right: .75rem;
  margin-right: 20px;
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex
}

.button.is-link {
  color: var(--color--text-secondary);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem
}

.button.is-link.is-alternate {
  color: var(--color--button-background);
  background-color: #0000
}

.form-checkbox-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s
}

.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000
}

.text-size-regular {
  font-size: 1rem
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem
}

.z-index-2 {
  z-index: 2;
  position: relative
}

.padding-huge {
  padding: 6rem
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem
}

.text-weight-bold {
  font-weight: 700
}

.margin-xlarge {
  margin: 4rem
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem
}

.margin-xsmall {
  margin: 1rem
}

.page-wrapper-2 {
  z-index: 0
}

.rl-styleguide_classes {
  display: none
}

.max-width-full {
  width: 100%;
  max-width: none
}

.z-index-1 {
  z-index: 1;
  position: relative
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem
}

.text-weight-normal {
  font-weight: 400
}

.margin-top,
.margin-top.margin-custom2,
.margin-top.margin-medium,
.margin-top.margin-xxhuge,
.margin-top.margin-custom1,
.margin-top.margin-xxlarge,
.margin-top.margin-tiny,
.margin-top.margin-xlarge,
.margin-top.margin-large,
.margin-top.margin-xhuge,
.margin-top.margin-huge,
.margin-top.margin-xxsmall,
.margin-top.margin-xsmall,
.margin-top.margin-custom3,
.margin-top.margin-small,
.margin-top.margin-0 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024
}

.margin-xhuge {
  margin: 7rem
}

.field-label {
  margin-bottom: .5rem;
  font-weight: 400
}

.padding-top,
.padding-top.padding-tiny,
.padding-top.padding-large,
.padding-top.padding-xxlarge,
.padding-top.padding-xlarge,
.padding-top.padding-custom2,
.padding-top.padding-custom1,
.padding-top.padding-xxsmall,
.padding-top.padding-xsmall,
.padding-top.padding-medium,
.padding-top.padding-huge,
.padding-top.padding-xhuge,
.padding-top.padding-xxhuge,
.padding-top.padding-small,
.padding-top.padding-custom3,
.padding-top.padding-0 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0
}

.padding-top.padding-navbar {
  padding: 11.5rem 0 0
}

.text-rich-text h1,
.text-rich-text h2 {
  margin-bottom: 1rem
}

.text-rich-text h5 {
  margin-bottom: .5rem
}

.background-color-white {
  background-color: var(--swatch--white)
}

.text-color-black {
  color: #000
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch
}

.margin-xxsmall {
  margin: .5rem
}

.rl-styleguide_spacing-all {
  display: none
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d
}

.text-color-white {
  color: #fff
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex
}

.padding-left,
.padding-left.padding-large,
.padding-left.padding-0,
.padding-left.padding-xhuge,
.padding-left.padding-huge,
.padding-left.padding-xxsmall,
.padding-left.padding-medium,
.padding-left.padding-custom3,
.padding-left.padding-xsmall,
.padding-left.padding-custom2,
.padding-left.padding-custom1,
.padding-left.padding-tiny,
.padding-left.padding-small,
.padding-left.padding-xlarge,
.padding-left.padding-xxlarge,
.padding-left.padding-xxhuge {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0
}

.icon-height-xlarge {
  height: 6.5rem
}

.text-style-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem
}

.padding-medium {
  padding: 2rem
}

.padding-tiny {
  padding: .25rem
}

.padding-xsmall {
  padding: 1rem
}

.form-radio-label {
  margin-bottom: 0
}

.text-weight-xbold {
  font-weight: 800
}

.margin-small {
  margin: 1.5rem
}

.margin-xxlarge {
  margin: 5rem
}

.form-field-wrapper {
  position: relative
}

.text-align-left {
  text-align: left
}

.padding-xxsmall {
  padding: .5rem
}

.overflow-hidden {
  overflow: hidden
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem
}

.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex
}

.text-weight-semibold {
  font-weight: 600
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem
}

.background-color-black-2 {
  color: #000;
  background-color: #000
}

.icon-height-medium {
  height: 3rem
}

.text-align-center {
  text-align: center
}

.heading-style-h3 {
  font-family: var(--font--heading);
  letter-spacing: -.02em;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem
}

.text-style-link {
  text-decoration: underline;
  color: #fff;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%
}

.icon-height-large {
  height: 5rem
}

.margin-huge {
  margin: 6rem
}

.margin-horizontal,
.margin-horizontal.margin-xxsmall,
.margin-horizontal.margin-custom2,
.margin-horizontal.margin-huge,
.margin-horizontal.margin-xlarge,
.margin-horizontal.margin-medium,
.margin-horizontal.margin-0,
.margin-horizontal.margin-small,
.margin-horizontal.margin-xhuge,
.margin-horizontal.margin-xxlarge,
.margin-horizontal.margin-large,
.margin-horizontal.margin-tiny,
.margin-horizontal.margin-custom3,
.margin-horizontal.margin-xsmall,
.margin-horizontal.margin-xxhuge,
.margin-horizontal.margin-custom1 {
  margin-top: 0;
  margin-bottom: 0
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem
}

.heading-style-h5 {
  font-family: var(--font--heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.heading-style-h5.text-weight-normal {
  font-weight: 400
}

.padding-xxlarge {
  padding: 5rem
}

.text-style-allcaps {
  text-transform: uppercase
}

.text-weight-medium {
  font-weight: 500
}

.max-width-large {
  width: 100%;
  max-width: 48rem
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008
}

.background-color-gray {
  background-color: var(--swatch--grey)
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem
}

.heading-style-h2 {
  font-family: var(--font--heading);
  letter-spacing: -.02em;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem
}

.icon-height-xxsmall {
  height: 1rem
}

.margin-vertical,
.margin-vertical.margin-medium,
.margin-vertical.margin-0,
.margin-vertical.margin-xhuge,
.margin-vertical.margin-xxsmall,
.margin-vertical.margin-custom2,
.margin-vertical.margin-xxhuge,
.margin-vertical.margin-small,
.margin-vertical.margin-tiny,
.margin-vertical.margin-xlarge,
.margin-vertical.margin-large,
.margin-vertical.margin-huge,
.margin-vertical.margin-custom1,
.margin-vertical.margin-xsmall,
.margin-vertical.margin-custom3,
.margin-vertical.margin-xxlarge {
  margin-left: 0;
  margin-right: 0
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f
}

.heading-style-h1 {
  font-family: var(--font--heading);
  letter-spacing: -.02em;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2
}

.margin-top-auto {
  margin-top: auto
}

.text-weight-light {
  font-weight: 300
}

.text-size-medium {
  font-size: 1.125rem
}

.max-width-medium {
  width: 100%;
  max-width: 35rem
}

.text-style-muted {
  opacity: .6
}

.margin-xxhuge {
  margin: 10rem
}

.rl-styleguide_color {
  padding-bottom: 8rem
}

.rl-styleguide_color.is-white {
  background-color: var(--swatch--white)
}

.rl-styleguide_color.is-gray {
  background-color: var(--swatch--grey)
}

.rl-styleguide_color.is-black {
  background-color: var(--swatch--black)
}

.rl-styleguide_color.is-brand {
  background-color: var(--swatch--brand)
}

.rl-styleguide_color.is-accent {
  background-color: var(--swatch--accent)
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid
}

.padding-large {
  padding: 3rem
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center
}

.form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem
}

.text-size-large {
  font-size: 1.25rem
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex
}

.padding-xlarge {
  padding: 4rem
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem
}

.overflow-scroll {
  overflow: scroll
}

.form-input {
  border-radius: var(--border-radius--main);
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6
}

.form-input:focus {
  border-color: #000
}

.form-input::placeholder {
  color: #0009
}

.form-input.is-select-input {
  background-color: #fff;
  background-image: none
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto
}

.rl-styleguide_label {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block
}

.rl-styleguide_label.is-html-tag {
  background-color: #be4aa5
}

.form-checkbox-label {
  margin-bottom: 0
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%
}

.margin-right,
.margin-right.margin-small,
.margin-right.margin-tiny,
.margin-right.margin-medium,
.margin-right.margin-xlarge,
.margin-right.margin-custom3,
.margin-right.margin-xsmall,
.margin-right.margin-huge,
.margin-right.margin-xxhuge,
.margin-right.margin-0,
.margin-right.margin-xxlarge,
.margin-right.margin-xxsmall,
.margin-right.margin-large,
.margin-right.margin-custom1,
.margin-right.margin-custom2,
.margin-right.margin-xhuge {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex
}

.heading-style-h6 {
  font-family: var(--font--heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

.heading-style-h6.text-weight-normal {
  font-weight: 400
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative
}

.align-center {
  margin-left: auto;
  margin-right: auto
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.padding-right,
.padding-right.padding-0,
.padding-right.padding-large,
.padding-right.padding-xxlarge,
.padding-right.padding-custom2,
.padding-right.padding-xlarge,
.padding-right.padding-xhuge,
.padding-right.padding-custom3,
.padding-right.padding-tiny,
.padding-right.padding-huge,
.padding-right.padding-medium,
.padding-right.padding-xsmall,
.padding-right.padding-small,
.padding-right.padding-xxsmall,
.padding-right.padding-custom1,
.padding-right.padding-xxhuge {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0
}

.margin-0 {
  margin: 0
}

.text-size-tiny {
  font-size: .75rem
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e
}

.form-radio-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex
}

.padding-xhuge {
  padding: 7rem
}

.text-style-nowrap {
  white-space: nowrap
}

.icon-height-custom1 {
  height: 1.25rem
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative
}

.hide {
  display: none
}

.text-style-italic {
  font-style: italic
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f
}

.max-width-small {
  width: 100%;
  max-width: 30rem
}

.icon-height-xsmall {
  height: 1.5rem
}

.background-color-light {
  background-color: var(--swatch--light)
}

.background-color-dark {
  background-color: var(--swatch--dark)
}

.background-color-brand {
  background-color: var(--swatch--brand)
}

.background-color-accent {
  background-color: var(--swatch--accent)
}

.text-color-dark {
  color: var(--swatch--dark)
}

.text-block {
  color: var(--swatch--brand)
}

.text-color-light {
  color: var(--swatch--light)
}

.text-color-accent {
  color: var(--accent-color)
}

.navbar_logo-link {
  width: 12rem;
  padding-left: 0
}

.button-mode {
  border: var(--border-width--main)solid var(--swatch--transparent);
  border-radius: var(--border-radius--main);
  color: var(--color--text-secondary);
  background-color: #efefef00;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-left: -.5rem;
  transition: background-color .4s;
  display: flex;
  position: relative
}

.button-mode:hover {
  background-color: #74b65133
}

.icon-light-mode {
  color: var(--color--light-icon);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: absolute
}

.icon-dark-mode {
  color: var(--color--dark-icon);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex
}

.sr-text {
  font-size: 0
}

.navbar_component {
  background-color: var(--swatch--transparent);
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto
}

.navbar_container {
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80em;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: .5rem;
  display: flex
}

.navbar_wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: row;
  align-items: center;
  display: flex
}

.navbar_menu {
  background-color: var(--color--button-background);
  color: var(--color--text);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  position: absolute;
  inset: 0% 0% auto;
  overflow: auto
}

.navbar_menu-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: 4.5rem;
  display: flex;
  position: relative
}

.navbar_links-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex
}

.navbar_link {
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  position: static
}

.navbar_link.w--current {
  opacity: .8;
  color: var(--color--text)
}

.navbar_bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex
}

.navbar_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-items: stretch;
  display: grid
}

.navbar_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex
}

.navbar_menu-button {
  z-index: 1;
  padding: 0;
  position: relative
}

.navbar_menu-button.w--open {
  background-color: #0000
}

.menu-icon4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: relative
}

.menu-icon_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex
}

.menu-icon_line-top {
  background-color: var(--color--text-secondary);
  width: 24px;
  height: 2px;
  padding-bottom: 0;
  padding-right: 0
}

.menu-icon_line-middle {
  background-color: var(--color--text-secondary);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex
}

.menu-icon_line-middle-top {
  z-index: 2;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0
}

.menu-icon_line-middle-base {
  background-color: var(--color--text-secondary);
  width: 24px;
  height: 2px;
  position: absolute
}

.menu-icon_line-bottom {
  background-color: var(--color--text-secondary);
  width: 24px;
  height: 2px
}

.section_home_hero {
  background-color: var(--color--background)
}

.home_header_content-wrapper {
  grid-column-gap: 10rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid
}

.home_header_content-left {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex
}

.hero-heading-line {
  white-space: nowrap;
  font-size: 4rem
}

.section_home_industries {
  background-color: var(--color--button-background);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden
}

.backdrop-divider {
  background-color: var(--background-color);
  border-bottom-right-radius: 10rem;
  height: 10rem;
  position: absolute;
  inset: 0% 0% auto;
  box-shadow: 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010
}

.navbar_ticker {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: .5rem;
  padding-bottom: .25rem;
  display: flex
}

.ticker-link {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  color: var(--accent-color);
  align-items: center;
  font-size: .875rem;
  line-height: 1;
  display: flex;
}

.ticker-link:hover {
  opacity: .75
}

.home_industries_card-linkicon {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 1rem;
  left: auto;
  right: 1rem
}

.show-mobile-landscape {
  display: none
}

.home_industries_cards-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.home_industries_card {
  border-radius: var(--border-radius--main);
  background-color: var(--color--background);
  width: 100%;
  min-height: 32rem
}

.home_industries_card-wrapper {
  border-radius: var(--border-radius--main);
  color: var(--swatch--white);
  height: 100%;
  transition: opacity .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 2px 5.8px #0000000b, 0 4px 11.7px #0000000d, 0 7px 18px #0000000e, 0 12px 25.3px #0000000f, 0 23px 35.9px #00000010
}

.home_industries_card-wrapper:hover {
  opacity: .8
}

.home_industries_card-content {
  z-index: 3;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  position: relative
}

.home_industries_card-background {
  position: absolute;
  inset: 0%
}

.industries_card-background-image {
  filter: grayscale();
  object-fit: cover;
  width: 100%;
  height: 100%
}

.industries_card-background-overlay {
  z-index: 1;
  background: rgba(10, 25, 47, 0.7);
  position: absolute;
  inset: 0%
}

.industries_card-background-overlay.green {
  background: rgba(10, 25, 47, 0.7);
}

.industries_card-background-overlay.blue {
  background: rgba(10, 25, 47, 0.7);
}

.industries_card-title-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex
}

.text-size-xlarge {
  font-size: 1.25rem
}

.text-size-xlarge.text-style-allcaps {
  font-size: 1.75rem
}

.text-size-xlarge.text-style-allcaps.low-height {
  line-height: 1.2
}

.ticker-icon {
  width: .875rem;
  height: .875rem
}

.section_home_about {
  z-index: 1;
  background-color: var(--color--button-background);
  position: relative
}

.home_about_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid
}

.home_about_image {
  width: 100%;
  height: 100%
}

.backdrop-undivider {
  background-color: var(--color--button-background);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 10rem;
  height: 10rem;
  position: static;
  inset: 0% 0% auto;
  box-shadow: 0 0 #0000, 0 2px 5.8px #0000000b, 0 4px 11.7px #0000000d, 0 7px 18px #0000000e, 0 12px 25.3px #0000000f, 0 23px 35.9px #00000010
}

.news-small_component {
  flex-direction: column;
  align-items: center
}

.news-small_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid
}

.news-small_button-row {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex
}

.news-small_item-link {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  border-radius: var(--border-radius--main);
  background-color: var(--color--text-secondary);
  color: var(--color--background);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  position: relative
}

.news-small_item-link.fade-slide-up {
  transition-property: transform;
  transition-duration: .4s;
  box-shadow: 0 0 #0000, 0 2px 5.8px #0000000b, 0 4px 11.7px #0000000d, 0 7px 18px #0000000e, 0 12px 25.3px #0000000f, 0 23px 35.9px #00000010
}

.news-small_item-link.fade-slide-up:hover {
  transform: translateY(-1rem)
}

.news-small_icon {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  top: .5rem;
  left: auto;
  right: .5rem
}

.success-message {
  background-color: var(--swatch--transparent);
  text-align: left;
  padding: 1.5rem 0
}

.success-text {
  font-weight: 600
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem
}

.error-text {
  color: #e23939
}

.home_certifications_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%
}

.modeadjust-overlay-layer {
  z-index: 2;
  background-color: var(--accent-color);
  opacity: .8;
  position: absolute;
  inset: 0%
}

.modeadjust-overlay-layer.light {
  background: linear-gradient( 180deg, var(--surface-color), rgba(17, 34, 64, 0.85) );
  opacity: .85
}

.home_certifications_background-image {
  object-fit: cover;
  background-image: url(../images/66f19fd83f0bebf2df3bd7c7_opt-Green-Leaf-Plan.jpg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%
}

.section_home_certifications {
  z-index: 2;
  color: var(--color--background);
  position: relative
}

.home_certifications_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid
}

.home_certifications_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.home_certifications_wrapper {
  background-color: var(--swatch--white);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .875rem;
  display: flex
}

.home_certifications_wrapper.fade-slide-up {
  flex-direction: column
}

.home_certifications_logo {
  object-fit: contain;
  width: 100%;
  max-width: 80%;
  max-height: 6rem;
  max-width: 200px;
}

.footer_form-block {
  min-width: 25rem;
  max-width: 35rem;
  margin-bottom: 0
}

.line-divider {
  background-color: var(--color--button-background);
  width: 100%;
  height: 1px
}

.footer_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none
}

.footer_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: start
}

.footer_left-wrapper {
  flex-direction: column;
  display: flex
}

.footer_logo-link {
  padding-left: 0
}

.footer_form-block {
  max-width: 35rem;
  margin-bottom: 0
}

.footer_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: grid
}

.footer_menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start
}

.footer_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex
}

.footer_link {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
  display: flex
}

.footer_link.w--current {
  color: var(--color--text-secondary)
}

.footer_social-link {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
  display: flex
}

.footer_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex
}

.footer_credit-text {
  font-size: .875rem
}

.footer_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid
}

.footer_legal-link {
  font-size: .875rem;
  text-decoration: underline;
  color: var(--accent-color);
}

.footer_logo {
  width: 15rem
}

.preloader {
  z-index: 9999;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden
}

.loader_content-wrapper {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  position: relative
}

.loader_image {
  width: 100%;
  height: 100%
}

.loader_image-overlay {
  z-index: 1;
  background-color: var(--swatch--black);
  width: 102%;
  height: 100%;
  position: absolute;
  inset: 100% 1% 0% -1%
}

.loader_background {
  background-color: var(--swatch--dark);
  position: absolute;
  inset: 0%
}

.transition-block {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden
}

.section_basic-header {
  position: relative
}

.basic-header_component {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid
}

.news_list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.news_item-link {
  border-radius: var(--border-radius--main);
  background-color: var(--dark--text-secondary);
  color: var(--color--button-text);
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1rem;
  transition: color .4s, background-color .4s;
  display: flex
}

.news_item-link:hover {
  background-color: var(--color--text-secondary);
  color: var(--color--background)
}

.news_header_title-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex
}

.news_header_content-top {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex
}

.news_header_author-wrapper {
  align-items: center;
  display: flex
}

.news_header_date-wrapper {
  margin-top: .25rem;
  display: flex
}

.news_header_text-divider {
  margin-left: .5rem;
  margin-right: .5rem
}

.news_content_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid
}

.news_content_content-left {
  max-width: 20rem;
  position: sticky;
  top: 5rem
}

.news_content_share-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex
}

.news_content_share {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-items: start;
  display: grid
}

.news_content_social-link {
  background-color: var(--color--button-background);
  border-radius: 20px;
  padding: .25rem
}

.news_content_content {
  margin-bottom: 4rem
}

.contact_info_component {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid
}

.contact_info_item {
  flex-direction: column;
  align-items: center;
  width: 100%
}

.contact_form_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid
}

.contact_form_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0
}

.contact_form_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.contact_form_image-wrapper {
  border-radius: var(--border-radius--main);
  overflow: hidden
}

.contact_form_image {
  aspect-ratio: 2.39;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block
}

.margin-logo-subtext {
  margin-top: .25rem;
  margin-bottom: -1rem
}

.section_about_mission {
  z-index: 1;
  color: var(--color--background);
  position: relative;
  box-shadow: 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010
}

.about_mission_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%
}

.about_mission_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%
}

.certifications_component {
  flex-direction: column;
  align-items: flex-start;
  display: flex
}

.certifications_content {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid
}

.certifications_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid
}

.certifications_item {
  flex-direction: column;
  align-items: center;
  width: 100%
}

.certifications_image-wrapper {
  border-radius: var(--border-radius--main);
  background-color: var(--swatch--white);
  /*justify-content: center;
  align-items: center;*/
  width: 100%;
  padding: .5rem 1rem;
  display: flex;
  position: relative;
  overflow: hidden
}

.certifications_image {
  aspect-ratio: 2;
  border-radius: var(--border-radius--main);
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  max-width: 220px;
}

.team15_list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid
}

.team15_item {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: flex
}

.team15_item-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex
}

.team15_item-content.fade-slide-up {
  border-radius: var(--border-radius--main);
  background: linear-gradient( 180deg, var(--surface-color), rgba(17, 34, 64, 0.85) );
  justify-content: flex-start;
  height: 100%;
  padding: 1.5rem;
  box-shadow: 0 0 #0000, 0 2px 5.8px #0000000b, 0 4px 11.7px #0000000d, 0 7px 18px #0000000e, 0 12px 25.3px #0000000f, 0 23px 35.9px #00000010
}

.heading-style-h2-3 {
  letter-spacing: -.02em;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2
}

.investor_section_component {
  flex-direction: column;
  align-items: flex-start;
  display: flex
}

.investor_section_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid
}

.investor_section_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  width: 100%;
  display: grid
}

.investor_resources_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr
}

.investor_resources_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr
}

.investor_resources_card {
  border-radius: var(--border-radius--main);
  background-color: var(--color--button-background);
  color: var(--color--button-text);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
  box-shadow: 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010
}

.investor_resources_card-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 2rem;
  display: flex;
  position: relative
}

.investor_resources_card-content-top {
  flex-direction: column;
  height: 100%;
  display: flex
}

.max-height-full {
  height: 100%
}

.section_solution-header {
  z-index: 1;
  position: relative
}

.solution-header_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%
}

.solution-header_background-image {
  object-fit: cover;
  object-position: 50% 60%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%
}

.solution_spotlight_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid
}

.solution_spotlight_image-wrapper {
  border-radius: var(--border-radius--main);
  overflow: hidden
}

.solution_spotlight_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%
}

.solution_spotlight_image.full {
  object-fit: contain
}

.solution_spotlight_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem
}

.heading-style-h6-2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

.solution_cta_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr
}

.solution_cta_card {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  border-radius: var(--border-radius--main);
  background-color: var(--color--button-background);
  color: var(--color--button-text);
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  display: grid;
  box-shadow: 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010
}

.solution_cta_content {
  flex: 1
}

.solution_cta_button-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex
}

.commercial_image-wrapper {
  border-radius: var(--border-radius--main);
  overflow: hidden
}

.commercial_image-wrapper.fade-slide-up {
  box-shadow: 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010
}

.cta_retail_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr
}

.cta_retail_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-radius: var(--border-radius--main);
  background-color: var(--color--button-background);
  color: var(--color--button-text);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010
}

.cta_retail_card-content {
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  display: flex
}

.cta_retail_image-wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex
}

.cta_retail_image {
  height: 100%
}

.documents_list-wrapper {
  width: 100%
}

.documents_list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid
}

.heading-style-h5-5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.heading-style-h5-5.text-weight-normal {
  font-weight: 400
}

@media screen and (max-width:991px) {
  h1 {
    font-size: 3.25rem
  }

  h2 {
    font-size: 2.75rem
  }

  h3 {
    font-size: 2.25rem
  }

  h4 {
    font-size: 1.75rem
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0
  }

  .big-font {
    text-align: left;
    font-size: 200px;
    line-height: 200px
  }

  ._2-col-grid {
    grid-template-columns: 1fr
  }

  .branding-h2 {
    font-size: 26px;
    line-height: 32px
  }

  .colour-swatch {
    width: 100%;
    height: 100px
  }

  .grid-colour {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0
  }

  .lower-instruction-text {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0
  }

  .font-weight-wrap {
    width: 100%;
    display: flex
  }

  .color-item {
    width: 100%
  }

  .font-weight {
    display: inline-block
  }

  .social-explainer {
    max-width: 50vw
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0
  }

  .margin-large {
    margin: 2.5rem
  }

  .heading-style-h4 {
    font-size: 1.75rem
  }

  .hide-tablet {
    display: none
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0
  }

  .padding-xxhuge {
    padding: 7.5rem
  }

  .padding-huge {
    padding: 5rem
  }

  .margin-xlarge {
    margin: 3.5rem
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0
  }

  .margin-xhuge {
    margin: 6rem
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .margin-xxlarge {
    margin: 4.5rem
  }

  .heading-style-h3 {
    font-size: 2.25rem
  }

  .margin-huge {
    margin: 5rem
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .padding-xxlarge {
    padding: 4.5rem
  }

  .heading-style-h2 {
    font-size: 2.75rem
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0
  }

  .heading-style-h1 {
    font-size: 3.25rem
  }

  .margin-xxhuge {
    margin: 7.5rem
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row
  }

  .padding-large {
    padding: 2.5rem
  }

  .padding-xlarge {
    padding: 3.5rem
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0
  }

  .padding-xhuge {
    padding: 6rem
  }

  .button-mode {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
    position: relative
  }

  .navbar_container {
    grid-auto-columns: 1fr
  }

  .navbar_menu {
    flex-direction: column;
    justify-content: center;
    position: absolute
  }

  .navbar_links-wrapper {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem
  }

  .navbar_link {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 0;
    position: static
  }

  .navbar_bottom {
    padding-top: 1rem;
    padding-bottom: 1rem
  }

  .navbar_menu-button {
    padding: 0
  }

  .navbar_menu-button.w--open {
    background-color: #0000
  }

  .menu-icon4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative
  }

  .menu-icon_wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex
  }

  .menu-icon_line-top {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0
  }

  .menu-icon_line-middle {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static
  }

  .menu-icon_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0
  }

  .menu-icon_line-middle-base {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute
  }

  .menu-icon_line-bottom {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0
  }

  .home_header_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr
  }

  .home_industries_cards-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template-columns: 1fr
  }

  .home_industries_card {
    width: 100%;
    min-height: auto;
    padding-left: 0;
    padding-right: 0
  }

  .home_industries_card:hover {
    transform: none
  }

  .industries_card-title-wrapper {
    flex-direction: row;
    align-items: center
  }

  .home_about_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto
  }

  .news-small_list {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr
  }

  .news-small_item-link.fade-slide-up:hover {
    transform: none
  }

  .home_certifications_component {
    grid-column-gap: 3rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto
  }

  .footer_form-block {
    min-width: auto
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr
  }

  .basic-header_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr
  }

  .news_list {
    grid-template-columns: 1fr 1fr
  }

  .news_header_title-wrapper {
    margin-bottom: 4rem
  }

  .news_content_component {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr
  }

  .news_content_content-left {
    padding-right: 0;
    position: static
  }

  .news_content_content {
    margin-bottom: 3rem
  }

  .contact_info_component {
    grid-column-gap: 2rem
  }

  .contact_form_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto
  }

  .contact_form_image {
    object-fit: contain
  }

  .certifications_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem
  }

  .certifications_list {
    grid-template-columns: 1fr 1fr
  }

  .team15_list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr
  }

  .heading-style-h2-3 {
    font-size: 2.75rem
  }

  .investor_section_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem
  }

  .investor_section_list {
    grid-column-gap: 2rem
  }

  .investor_resources_row {
    grid-template-columns: 1fr
  }

  .solution_spotlight_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto
  }

  .solution_cta_card {
    grid-column-gap: 3rem;
    padding: 2rem
  }

  .solution_cta_content {
    margin-right: 3rem
  }

  .solution_cta_button-row {
    flex: none
  }

  .cta_retail_card {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto
  }

  .cta_retail_card-content {
    padding: 3rem
  }
}

@media screen and (max-width:767px) {
  h1 {
    font-size: 2.5rem
  }

  h2 {
    font-size: 2.25rem
  }

  h3 {
    font-size: 2rem
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4
  }

  h5 {
    font-size: 1.25rem
  }

  h6 {
    font-size: 1.125rem
  }

  .margin-medium {
    margin: 1.5rem
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0
  }

  .heading-small {
    font-size: 1.25rem
  }

  .padding-small {
    padding: 1.25rem
  }

  .heading-xsmall {
    font-size: 1.125rem
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0
  }

  .big-font {
    font-size: 100px;
    line-height: 100px
  }

  .social-grid {
    grid-template-columns: 1fr
  }

  .branding-h2 {
    font-size: 24px
  }

  .logos_wrapper {
    grid-template-columns: 1fr
  }

  .colour-swatch {
    width: 100%;
    height: 100px
  }

  .grid-colour {
    grid-template-columns: 1fr
  }

  .brand-header-wrap {
    font-size: 16px;
    line-height: 20px
  }

  .lower-instruction-text {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0
  }

  .font-weight-wrap {
    justify-content: flex-start
  }

  .color-item {
    width: 100%
  }

  .social-explainer {
    max-width: 75vw
  }

  .side-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0
  }

  .margin-large {
    margin: 2rem
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0
  }

  .padding-xxhuge {
    padding: 5rem
  }

  .padding-huge {
    padding: 3.5rem
  }

  .hide-mobile-landscape {
    display: none
  }

  .margin-xlarge {
    margin: 2.5rem
  }

  .margin-xsmall {
    margin: .75rem
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0
  }

  .margin-xhuge {
    margin: 4rem
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0
  }

  .text-style-quote {
    font-size: 1.125rem
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .padding-medium {
    padding: 1.5rem
  }

  .padding-xsmall {
    padding: .75rem
  }

  .margin-small {
    margin: 1.25rem
  }

  .margin-xxlarge {
    margin: 3rem
  }

  .heading-style-h3 {
    font-size: 2rem
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem
  }

  .margin-huge {
    margin: 3.5rem
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  .heading-style-h5 {
    font-size: 1.25rem
  }

  .padding-xxlarge {
    padding: 3rem
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none
  }

  .heading-style-h2 {
    font-size: 2.25rem
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0
  }

  .heading-style-h1 {
    font-size: 2.5rem
  }

  .text-size-medium {
    font-size: 1rem
  }

  .margin-xxhuge {
    margin: 5rem
  }

  .padding-large {
    padding: 2rem
  }

  .text-size-large {
    font-size: 1.125rem
  }

  .padding-xlarge {
    padding: 2.5rem
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0
  }

  .heading-style-h6 {
    font-size: 1.125rem
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0
  }

  .padding-xhuge {
    padding: 4rem
  }

  .text-style-nowrap {
    white-space: normal
  }

  .navbar_logo-link {
    padding-left: 0
  }

  .navbar_component {
    min-height: 4rem
  }

  .navbar_menu-wrapper {
    padding-top: 4rem
  }

  .navbar_links-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem
  }

  .navbar_link {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    display: flex
  }

  .navbar_bottom {
    height: 4rem
  }

  .home_header_content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr
  }

  .hero-heading-line {
    font-size: 3.75rem
  }

  .show-mobile-landscape {
    display: block
  }

  .text-size-xlarge {
    font-size: 1.125rem
  }

  .home_about_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr
  }

  .news-small_list {
    grid-template-columns: 1fr
  }

  .home_certifications_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr
  }

  .home_certifications_list {
    grid-template-columns: 1fr 1fr
  }

  .home_certifications_wrapper {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem
  }

  .home_certifications_logo {
    max-height: 4rem
  }

  .footer_top-wrapper {
    grid-row-gap: 2.5rem;
    grid-row-gap: 3rem
  }

  .footer_menu-wrapper {
    grid-column-gap: 1.5rem
  }

  .footer_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem
  }

  .footer_credit-text {
    margin-top: 1.5rem
  }

  .footer_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row
  }

  .basic-header_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr
  }

  .news_list {
    grid-template-columns: 1fr
  }

  .news_header_title-wrapper {
    margin-bottom: 3rem
  }

  .news_content_content-left {
    width: 100%;
    max-width: none
  }

  .news_content_content {
    margin-bottom: 2rem
  }

  .contact_info_component,
  .contact_form_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr
  }

  .certifications_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr
  }

  .certifications_list {
    grid-row-gap: 2rem
  }

  .team15_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr
  }

  .team15_item {
    grid-template-columns: max-content 1fr
  }

  .heading-style-h2-3 {
    font-size: 2.25rem
  }

  .investor_section_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr
  }

  .investor_section_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr
  }

  .investor_resources_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem
  }

  .investor_resources_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr
  }

  .investor_resources_card-content {
    padding: 1.5rem
  }

  .solution_spotlight_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr
  }

  .heading-style-h6-2 {
    font-size: 1.125rem
  }

  .solution_cta_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem
  }

  .solution_cta_card {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start
  }

  .solution_cta_content {
    margin-right: 0
  }

  .solution_cta_button-row {
    justify-content: flex-start;
    width: 100%
  }

  .cta_retail_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem
  }

  .cta_retail_card-content {
    padding: 2rem
  }

  .heading-style-h5-5 {
    font-size: 1.25rem
  }
}

@media screen and (max-width:479px) {
  h1 {
    font-size: 2.5rem
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0
  }

  .padding-vertical.padding-navbar {
    padding-top: 8rem
  }

  .download-button-wrapper {
    grid-template-columns: 1fr
  }

  .lower-instruction-text {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0
  }

  .social-explainer {
    max-width: none
  }

  .side-grid {
    grid-template-columns: 1fr
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0
  }

  .padding-top.padding-navbar {
    padding-top: 8rem
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0
  }

  .hide-mobile-portrait {
    display: none
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0
  }

  .navbar_logo-link {
    width: 8rem
  }

  .navbar_link {
    padding-top: .5rem;
    padding-bottom: .5rem
  }

  .home_header_content-wrapper {
    grid-template-columns: 1fr
  }

  .hero-heading-line {
    white-space: normal;
    font-size: 2.25rem
  }

  .navbar_ticker {
    justify-content: space-between
  }

  .industries_card-title-wrapper {
    flex-direction: column;
    align-items: flex-start
  }

  .home_about_component,
  .home_certifications_component {
    grid-template-columns: 1fr
  }

  .home_certifications_list {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem
  }

  .home_certifications_wrapper {
    justify-content: center;
    align-items: flex-start
  }

  .home_certifications_wrapper.fade-slide-up {
    align-items: center
  }

  .home_certifications_logo {
    max-width: 100%
  }

  .footer_top-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr
  }

  .footer_bottom-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1rem
  }

  .footer_logo-link {
    margin-bottom: 1.5rem
  }

  .footer_top-wrapper {
    grid-row-gap: 48px
  }

  .footer_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr
  }

  .footer_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr
  }

  .basic-header_component {
    grid-template-columns: 1fr
  }

  .news_header_content-top {
    flex-direction: column;
    align-items: flex-start
  }

  .news_header_author-wrapper {
    margin-bottom: 1rem
  }

  .news_content_share-wrapper {
    width: 100%;
    margin-bottom: 2rem
  }

  .contact_form_component,
  .certifications_content,
  .certifications_list {
    grid-template-columns: 1fr
  }

  .team15_item {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr
  }

  .investor_section_content,
  .investor_section_list,
  .solution_spotlight_component,
  .solution_spotlight_item-list,
  .cta_retail_card {
    grid-template-columns: 1fr
  }
}

#w-node-_7e07bd93-f502-5b48-522a-24291363953b-df3bd778 {
  align-self: start
}

#w-node-d75e1aeb-10d6-b151-42ab-8fa0739f10b0-df3bd778,
#w-node-d75e1aeb-10d6-b151-42ab-8fa0739f10b2-df3bd778,
#w-node-d75e1aeb-10d6-b151-42ab-8fa0739f10b4-df3bd778,
#w-node-d75e1aeb-10d6-b151-42ab-8fa0739f10b6-df3bd778 {
  justify-self: center
}

#mc-embedded-subscribe.w-node-c3187378-1f09-7470-d71c-1df8dbadb436-a5c4e042,
#w-node-_04b77292-5467-f654-8817-36265e7eed6b-a5c4e042 {
  grid-area: span 1/span 1/span 1/span 1
}

#w-node-c6d79a9e-1189-50c0-8128-4104215c2174-df3bd77b {
  align-self: center
}

#w-node-_0cfdef66-3d83-1dd1-64cc-87d8adf2e7dc-df3bd77b {
  grid-area: span 1/span 2/span 1/span 2
}

#w-node-c6d79a9e-1189-50c0-8128-4104215c21a7-df3bd77b {
  align-self: center
}

#w-node-bce6820b-57a6-a310-9a27-4e42b521bc0d-df3bd77b {
  grid-area: span 1/span 2/span 1/span 2
}

#w-node-c6d79a9e-1189-50c0-8128-4104215c2205-df3bd77b,
#w-node-c6d79a9e-1189-50c0-8128-4104215c2223-df3bd77b {
  align-self: center
}

#w-node-_693dd29f-1b56-fa2e-cb51-52d1aa414a4e-df3bd77b,
#w-node-bb5302f8-704b-1bf4-5af1-9052bde7bc63-df3bd77b,
#w-node-_12b054fd-6542-40d5-b434-e09beb8beef8-df3bd782,
#w-node-_3467993a-d727-d59a-9493-038e96c60e14-df3bd782,
#w-node-_3467993a-d727-d59a-9493-038e96c60e15-df3bd782,
#w-node-_3467993a-d727-d59a-9493-038e96c60e16-df3bd782 {
  grid-area: span 1/span 1/span 1/span 1
}

#submit-button.w-node-_53e19298-6e20-62d9-dd7e-937e38fbc93d-df3bd783 {
  justify-self: start
}

@media screen and (max-width:991px) {

  #w-node-c6d79a9e-1189-50c0-8128-4104215c222a-df3bd77b,
  #w-node-c6d79a9e-1189-50c0-8128-4104215c2232-df3bd77b,
  #w-node-_272aeae0-b915-0633-0de2-595e87261efe-df3bd77b {
    justify-self: start
  }

  #w-node-_26e105b6-ba48-7430-7e9d-7de411996f55-df3bd77f {
    order: -9999
  }

  #w-node-f2c07de8-f786-0876-ba2b-34b534e8e916-df3bd784,
  #w-node-_5a9d05d2-1df2-d069-4bd6-f5227f6bcd50-df3bd786,
  #w-node-_3b53c3b0-daee-8080-78d9-c7788e01ea77-df3bd787 {
    order: 9999
  }
}

@media screen and (max-width:767px) {

  #w-node-f2c07de8-f786-0876-ba2b-34b534e8e918-df3bd784,
  #w-node-_5a9d05d2-1df2-d069-4bd6-f5227f6bcd52-df3bd786,
  #w-node-_3b53c3b0-daee-8080-78d9-c7788e01ea79-df3bd787 {
    order: -9999
  }
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/gothic-regular.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/gothic-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.page-wrapper {
  color: var(--color--text);
}

h2 {
  font-family: var(--font--heading);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.mobile-show {
  display: none !important;
}

@media only screen and (max-width: 767.99px) {
  .mobile-off {
    display: none !important;
  }

  .mobile-show {
    display: block !important;
  }

  .overlay a {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    display: flex;

  }

  .top-links {
    justify-content: space-between;
    margin-bottom: 30px !important
  }

  .top-links a {
    padding: 0px !important;
  }
}

.news_content_component a {
  text-decoration: underline;
}

.distribution-header {
  background-color: var(--color--button-background);
}

.distribution-header h1 {
  color: var(--color--text-secondary);
}

.distribution-header p {
  color: var(--color--text-secondary);
}

.feature-icon {
  font-size: 4rem;
  color: var(--swatch--brand);
}



.product-lines .card h5 {
  color: var(--accent-color) !important;
  font-weight: 400;
}

.distributor-benefits h5 {
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 20px;
}

.partner-support {
  background: rgb(5, 15, 31);
}

.partner-form {
  padding: 25px;
  border: 1px solid var(--color--text-secondary);
  border-radius: 8px;
  position: relative;

  padding-top: 45px;
}

.partner-form h5 {
  position: absolute;
  top: -30px;
  left: 25px;
  padding: 10px;
  width: fit-content;
  background: #fff;
  color: var(--color--text-secondary);
}

.partner-form .form-control,
.form-select {
  border-radius: var(--border-radius--main);
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Deep Navy Theme Utilities & Overrides (Forced)
--------------------------------------------------------------*/
html,
body {
  background-color: var(--background-color) !important;
  color: #fff !important;
}

.bg-navy {
  background-color: var(--background-color) !important;
  color: var(--default-color);
}

.bg-surface {
  background-color: var(--surface-color) !important;
  color: var(--default-color);
}

.text-slate {
  color: var(--default-color) !important;
}

.text-emerald {
  color: var(--accent-color) !important;
}

.text-heading {
  color: var(--heading-color) !important;
}

/* Force Bootstrap components to dark mode */
.card,
.list-group-item,
.modal-content,
.dropdown-menu {
  background-color: var(--surface-color) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--default-color) !important;
}

.table {
  color: var(--default-color) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Override any remaining white backgrounds */
.bg-white {
  background-color: var(--surface-color) !important;
  color: var(--heading-color) !important;
}

.bg-light {
  background-color: var(--background-color) !important;
  color: var(--default-color) !important;
}

.text-dark {
  color: var(--heading-color) !important;
}

.text-muted {
  color: rgba(203, 213, 225, 0.6) !important;
}

/* Specific Section Fixes */
.hero-section {
  background-color: var(--background-color);
}

.division-section {
  background-color: var(--background-color);
}

.news-card {
  background-color: var(--surface-color);
}
.cg-industrial {
  background: var(--background-color);
  color: var(--default-color);
  padding: 90px 20px;
}

.cg-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.cg-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.cg-tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.cg-header h2 {
  font-size: 38px;
  margin-bottom: 18px;
  color: var(--heading-color);
}

.cg-header p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
}

/* Grid */
.cg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Cards */
.cg-card {
  background: linear-gradient(
    180deg,
    var(--surface-color),
    rgba(17, 34, 64, 0.85)
  );
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 34px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(16, 185, 129, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cg-card:hover::before {
  opacity: 1;
}

.cg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
}

.cg-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
  color: var(--contrast-color);
}

.cg-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--default-color);
}

.cg-card ul {
  margin: 0;
  padding-left: 18px;
}

.cg-card ul li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--default-color);
}

/* Accent bullets */
.cg-card ul li::marker {
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1100px) {
  .cg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cg-header h2 {
    font-size: 30px;
  }

  .cg-header p {
    font-size: 15px;
  }

  .cg-grid {
    grid-template-columns: 1fr;
  }

  .cg-card {
    padding: 28px;
  }
}
.cg-health-premium {
  background: radial-gradient(
    1200px 600px at 80% 20%,
    rgba(16, 185, 129, 0.06),
    transparent
  ),
  var(--background-color);
  padding: 5rem 20px;
  color: var(--default-color);
}

/* Hero */
.cg-health-hero {
  max-width: 760px;
  margin-bottom: 80px;
}

.cg-health-hero h2 {
  font-size: 42px;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.cg-health-hero p {
  font-size: 17px;
  line-height: 1.9;
}

/* Split Layout */
.cg-health-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

/* LEFT – Vertical Spine */
.cg-health-spine {
  position: relative;
  padding-left: 40px;
}

.cg-spine-line {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--accent-color),
    transparent
  );
}

.cg-spine-block {
  margin-bottom: 60px;
  position: relative;
}

.cg-spine-block::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--accent-color);
  border-radius: 50%;
}

.cg-spine-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

.cg-spine-block h3 {
  font-size: 24px;
  color: var(--contrast-color);
  margin-bottom: 12px;
}

.cg-spine-block p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.cg-spine-block ul {
  padding-left: 18px;
}

.cg-spine-block ul li::marker {
  color: var(--accent-color);
}

/* RIGHT – Scale Panel */
.cg-health-scale {
  background: linear-gradient(
    160deg,
    var(--surface-color),
    rgba(17, 34, 64, 0.85)
  );
  border-radius: 22px;
  padding: 50px 44px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  align-self: start;
}

.cg-scale-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.cg-health-scale h3 {
  font-size: 26px;
  color: var(--heading-color);
  margin: 14px 0;
}

.cg-health-scale p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* Stats */
.cg-scale-stats {
  display: grid;
  gap: 18px;
}

.cg-scale-stats div {
  border-left: 3px solid var(--accent-color);
  padding-left: 16px;
}

.cg-scale-stats strong {
  display: block;
  font-size: 14px;
  color: var(--contrast-color);
}

.cg-scale-stats span {
  font-size: 13px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 980px) {
  .cg-health-split {
    grid-template-columns: 1fr;
  }

  .cg-health-scale {
    padding: 40px 30px;
  }

  .cg-health-hero h2 {
    font-size: 34px;
  }
}
.cg-future {
  position: relative;
  background: #050f1f;
  color: var(--default-color);
  padding: 5rem 8vw;
  overflow: hidden;
}

/* BACKDROP WORDS */
.cg-future-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 120px 5vw;
  pointer-events: none;
}

.cg-kubera {
  background:
    linear-gradient(
      180deg,
      #050f1f,
      var(--background-color)
    );
  padding: 120px 20px;
  color: var(--default-color);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Header */
.cg-kubera-header {
  max-width: 760px;
  margin-bottom: 80px;
}

.cg-kubera-header h2 {
  font-size: 46px;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.cg-kubera-header p {
  font-size: 17px;
  line-height: 1.9;
}

/* Layout */
.cg-kubera-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  margin-bottom: 100px;
}

/* Platform Core */
.cg-kubera-core {
  background: linear-gradient(
    145deg,
    var(--surface-color),
    rgba(17, 34, 64, 0.85)
  );
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.cg-core-label {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.cg-kubera-core h3 {
  font-size: 28px;
  color: var(--contrast-color);
  margin: 16px 0;
}

.cg-kubera-core p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* Flow Nodes */
.cg-kubera-flows {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cg-kubera-flows div {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 13px;
  color: var(--contrast-color);
}

/* Distribution Side */
.cg-kubera-distribution {
  display: grid;
  gap: 30px;
  align-content: center;
}

.cg-dist-block {
  padding: 32px;
  background: var(--surface-color);
  border-left: 5px solid var(--accent-color);
}

.cg-dist-block span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 6px;
}

.cg-dist-block p {
  font-size: 14px;
  opacity: 0.85;
}

/* Spin-off */
.cg-kubera-spin {
  max-width: 880px;
  border-top: 1px solid rgba(16, 185, 129, 0.25);
  padding-top: 50px;
}

.cg-spin-label {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.cg-kubera-spin h3 {
  font-size: 30px;
  color: var(--heading-color);
  margin: 16px 0;
}

.cg-kubera-spin p {
  font-size: 16px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .cg-kubera-layout {
    grid-template-columns: 1fr;
  }

  .cg-kubera-header h2 {
    font-size: 36px;
  }

  .cg-kubera-core {
    padding: 36px;
  }
}


.cg-future-backdrop span {
  font-size: 96px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  letter-spacing: -2px;
}

/* INNER LAYOUT */
.cg-future-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* VISION */
.cg-future-vision h2 {
  font-size: 56px;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.cg-future-lead {
  font-size: 18px;
  line-height: 2;
  max-width: 520px;
  margin-bottom: 24px;
}

.cg-future-market {
  font-size: 15px;
  letter-spacing: 0.4px;
  opacity: 0.85;
}

/* AXIS */
.cg-future-axis {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid rgba(16,185,129,0.3);
}

.cg-axis-block h3 {
  font-size: 28px;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.cg-axis-block p {
  font-size: 16px;
  line-height: 1.9;
  max-width: 500px;
}

/* TECH ORBIT */
.cg-tech-orbit {
  margin-top: 60px;
  display: grid;
  gap: 28px;
}

.cg-tech-node {
  padding: 26px 30px;
  background: linear-gradient(
    145deg,
    rgba(17,34,64,0.9),
    rgba(5,15,31,0.9)
  );
  border-left: 4px solid var(--accent-color);
}

.cg-tech-node span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 6px;
}

.cg-tech-node p {
  font-size: 14px;
  opacity: 0.85;
}

/* INDUSTRIES STRIP */
.cg-future-industries {
  margin-top: 100px;
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(16,185,129,0.25);
}

.cg-future-industries span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cg-future-inner {
    grid-template-columns: 1fr;
  }

  .cg-future-backdrop span {
    font-size: 60px;
  }

  .cg-future-vision h2 {
    font-size: 40px;
  }
}


.cg-tech-dist {
  background: linear-gradient(
    180deg,
    var(--background-color),
    #071427
  );
  padding: 5rem 20px;
  color: var(--default-color);
}

/* Header */
.cg-tech-header {
  max-width: 780px;
  margin-bottom: 70px;
}

.cg-tech-header h2 {
  font-size: 44px;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.cg-tech-header p {
  font-size: 17px;
  line-height: 1.9;
}

/* Body */
.cg-tech-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

/* Blocks */
.cg-tech-block {
  background: var(--surface-color);
  padding: 46px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.cg-tech-block h3 {
  font-size: 26px;
  color: var(--contrast-color);
  margin-bottom: 18px;
}

.cg-tech-block p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Platform List */
.cg-tech-list {
  padding-left: 18px;
  margin: 0;
}

.cg-tech-list li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.cg-tech-list li::marker {
  color: var(--accent-color);
}

/* Investor Block */
.cg-tech-investor {
  background: linear-gradient(
    160deg,
    rgba(17, 34, 64, 0.95),
    rgba(7, 20, 39, 0.95)
  );
}

.cg-investor-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.cg-investor-note {
  font-size: 14px;
  opacity: 0.85;
  border-left: 3px solid var(--accent-color);
  padding-left: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cg-tech-body {
    grid-template-columns: 1fr;
  }

  .cg-tech-header h2 {
    font-size: 36px;
  }

  .cg-tech-block {
    padding: 36px;
  }
}
.cg-investor-esg {
  background: #020814;
  color: var(--default-color);
  padding: 110px 20px;
}

/* Header */
.cg-ir-header {
  max-width: 820px;
  margin-bottom: 80px;
}

.cg-ir-header h2 {
  font-size: 42px;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.cg-ir-header p {
  font-size: 17px;
  line-height: 1.9;
}

/* Grid */
.cg-ir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* Panels */
.cg-ir-panel {
  background: var(--surface-color);
  padding: 50px;
  border-radius: 18px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cg-ir-panel h3 {
  font-size: 26px;
  color: var(--contrast-color);
  margin-bottom: 18px;
}

.cg-ir-panel p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* ESG Highlight Panel */
.cg-esg-panel {
  background: linear-gradient(
    160deg,
    rgba(17, 34, 64, 0.95),
    rgba(5, 15, 31, 0.95)
  );
  border-color: rgba(16, 185, 129, 0.35);
}

/* Lists */
.cg-ir-list {
  padding-left: 18px;
  margin: 0;
}

.cg-ir-list li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.cg-ir-list li::marker {
  color: var(--accent-color);
}

/* ESG Footnote */
.cg-esg-footnote {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.85;
  border-left: 3px solid var(--accent-color);
  padding-left: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cg-ir-grid {
    grid-template-columns: 1fr;
  }

  .cg-ir-header h2 {
    font-size: 34px;
  }

  .cg-ir-panel {
    padding: 38px;
  }
}
.cg-ir-dashboard {
  color: var(--default-color);
  padding: 5rem 6vw;
}

/* Top */
.cg-ir-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.cg-ir-top h2 {
  font-size: 46px;
  color: var(--heading-color);
}

/* Ticker */
.cg-ir-ticker {
  text-align: right;
  border-left: 2px solid var(--accent-color);
  padding-left: 20px;
}

.cg-ir-ticker span {
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--accent-color);
  text-transform: uppercase;
}

.cg-ir-ticker strong {
  display: block;
  font-size: 22px;
  color: var(--contrast-color);
}

.cg-ir-ticker em {
  font-size: 13px;
  opacity: 0.8;
}

/* Status Row */
.cg-ir-status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 90px;
}

.cg-status-item {
  padding: 26px;
  background: rgba(17, 34, 64, 0.75);
  border: 1px solid rgba(16,185,129,0.25);
}

.cg-status-item span {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.cg-status-item strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: var(--contrast-color);
}

.cg-status-item.accent {
  border-color: rgba(16,185,129,0.6);
}

/* Main Grid */
.cg-ir-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.cg-ir-column h3 {
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.cg-ir-column p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 26px;
}

/* Points */
.cg-ir-points {
  list-style: none;
  padding: 0;
}

.cg-ir-points li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(16,185,129,0.25);
  font-size: 14px;
}

/* ESG Metrics */
.cg-esg-metrics {
  display: grid;
  gap: 18px;
}

.cg-esg-metrics div {
  border-left: 4px solid var(--accent-color);
  padding-left: 18px;
}

.cg-esg-metrics span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-color);
}

.cg-esg-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

/* Footer */
.cg-ir-footer {
  padding-top: 40px;
  border-top: 1px solid rgba(16,185,129,0.25);
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 1100px) {
  .cg-ir-top {
    flex-direction: column;
    gap: 30px;
  }

  .cg-ir-status {
    grid-template-columns: 1fr;
  }

  .cg-ir-main {
    grid-template-columns: 1fr;
  }

  .cg-ir-top h2 {
    font-size: 36px;
  }
}
.footer_link, .footer_social-link
{color: var(--accent-color)!important;}
.latest-news-cards {
  background: #050f1f;
  color: var(--default-color);
  padding: 5rem  20px;
  }

.latest-news-cards .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.latest-news-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.latest-news-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--heading-color);
  margin-bottom: 14px;
}

.latest-news-header p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
}

/* Grid */
.latest-news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
}

/* Cards */
.news-card {
  background: var(--surface-color);
  padding: 36px;
  border-radius: 18px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Featured */
.news-card--featured {
  padding: 48px;
}

.news-card--featured h3 {
  font-size: 1.6rem;
  line-height: 1.45;
}

/* Stack */
.news-card-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Date */
.news-date {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
  padding: 5px 20px;
  border: 1px solid var(--accent-color);
  width: fit-content;
}

/* Title */
.news-card h3 {
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 20px;
}

/* Link */
.news-link {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  text-decoration: none;
  margin-top: auto;
}

.news-link:hover {
  text-decoration: underline;
}

/* Footer */
.latest-news-footer {
  margin-top: 60px;
}

.latest-news-footer a {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 185, 129, 0.4);
  padding-bottom: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .latest-news-grid {
    grid-template-columns: 1fr;
  }

  .news-card--featured {
    padding: 36px;
  }

  .news-card--featured h3 {
    font-size: 1.3rem;
  }
}
.global-operations-maplibre {
  background: #0a192f;
  color: #cbd5e1;
  padding: 100px 20px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.global-operations-maplibre .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.global-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.global-header h2 {
  font-size: 42px;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.global-header p {
  line-height: 1.8;
  opacity: 0.85;
}

/* Layout */
.global-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
}

/* Map */
.map-column {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

#map {
  width: 100%;
  height: 450px;
}

/* Details */
.details-column {
  background: #112240;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.details-column h3 {
  font-size: 24px;
  color: #e2e8f0;
  margin-bottom: 14px;
}

.details-column p {
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .global-layout {
    grid-template-columns: 1fr;
  }

  #map {
    height: 360px;
  }
}
.text-success
{color: var(--accent-color)!important;}