* {
  box-sizing: border-box;
  --green: #466C5A;
  --light: #466C5A;
  --light: #b9d6c4;
  --dark: #385748;
  --dark: #004225;
  --highlight: #D0FF71;
  --fade: rgb(70 108 90 / 10%);
  --pink: #F7C5FF;
  --purple: #99F;
  --yellow: #F7D25E;
  --cream: #EFEDE4;
  --brown: #DBB87A;
  --yellow: #F7D25E;
}
html,
body {
  min-height: 100%;
  margin: 0;
}
body {
  background: #fff;
  color: #111;
  font: 16px/1.4 "Sofia Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
body.mobile-menu-open {
  overflow: hidden;
}
@media (min-width: 681px) {
  body {
    min-width: 1140px;
  }
}
h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: 46px; letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: 36px; letter-spacing: -0.01em; font-weight: 700; }
h3 {
  color: var(--green);
  letter-spacing: -0.01em;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 36px;
}
h4 { font-size: 22px; letter-spacing: -0.01em; font-weight: 400; }
@media (max-width: 680px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  h3 { font-size: 26px; }
  h4 { font-size: 20px; }
  h1, h2, h3, h4 {
    line-height: 1.1;
  }
}
a { color: currentColor; text-decoration: none; }
b { font-weight: 600; }
p { margin: 0; }
.color-green { background-color: var(--green); }
.color-cream { background-color: var(--cream); }
.highlight {
  color: var(--highlight);
}
.center {
  text-align: center;
}
.br::after {
  content: "\A";
  white-space: pre;
}
.button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  background: var(--highlight);
  box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  color: var(--green);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 0 36px 2px;
  height: 60px;
}
.breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #111;
  font-size: 14px;
  margin-bottom: 30px;
  gap: 12px;
}
.breadcrumbs a {
  font-weight: 400;
  opacity: .6;
}
.breadcrumbs .divider::before {
  content: "/";
  opacity: .6;
}
.breadcrumbs a:last-child {
  font-weight: 600;
  color: var(--green);
  opacity: 1;
}
.cta .button {
  transition: transform .1s;
  display: inline-flex;
}
.cta .dark-button {
  background: var(--green);
  color: var(--highlight);
}
@media (pointer: fine) {
  .cta .button:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 680px) {
  .button {
    font-size: 18px;
    padding: 0 28px 2px;
    height: 56px;
  }
}
.small-button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
  background: var(--green);
  color: var(--highlight);
  font-size: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  height: 48px;
  margin-top: 4px;
  padding: 0 22px;
}
.section {
  padding: 80px 0;
}
@media (max-width: 680px) {
  .section {
    padding: 40px 0;
  }
}
.section-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
  gap: 8px;
}
.section-header h3 {
  color: var(--green);
  font-size: 42px;
  font-weight: 700;
}
.section-header h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.section-header {
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .section-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.hero.section-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 608px;
  max-height: 1160px;
  background-color: var(--green);
  overflow: hidden;
  padding: 40px 0;
  z-index: 0;
  gap: 8px;
  margin-bottom: 0;
  color: #fff;
}
.hero.section-header h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero.section-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/man-on-phone.jpeg);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}
.hero.section-header .row {
  justify-content: center;
}
.hero.section-header .cta {
  margin-top: 12px;
}
.hero h4 {
  max-width: 550px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .section-header {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .section-header h3 {
    font-size: 36px;
  }
  .section-header h3 + h4 {
    margin-top: 10px;
  }
}
.section-divider {
  height: 1px solid #EFEDE4;
  margin: 30px 0;
}
/* Temp */
[animate] {
  animation: none !important;
  opacity: 1 !important;
}
[animate] { opacity: 0; }
[animate].visible { animation: animate-in .6s forwards; }
@keyframes animate-in {
    0% { opacity: 0; transform: translateY(10px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 680px) {
  [animate] {
    animation-delay: 0s !important; 
  }
}
#site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
#site,
#site .page {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#site .page {
  background: var(--cream);
}
#site .page > div {
  flex-grow: 1;
}
#header {
  background: var(--green);
}
#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}
@media (max-width: 680px) {
  #header .header-inner {
    padding-left: 20px;
  }
}
#header .logo {
  display: flex;
  font-size: 32px;
  font-weight: 600;
  position: relative;
}
#header .logo-inner {
  display: flex;
}
#header .logo img {
  height: 52px;
}
@media (max-width: 680px) {
  #header .logo img {
    height: 36px;
  }
}
#header .reunify {
  line-height: 1;
  color: var(--highlight);
  font-size: 13px;
  font-weight: 300;
  position: relative;
  top: 19px;
  margin-left: 12px;
}
#header .reunify b {
  display: block;
  font-weight: 600;
}
#header .reunify-inner {
  position: relative;
  padding-left: calc(16px + 1px);
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  gap: 2px;
}
#header .reunify-inner::before {
  content: "";
  background: var(--highlight);
  opacity: .5;
  height: 26px;
  width: 1px;
  position: absolute;
  top: 1px;
  left: 0;
}
@media (max-width: 680px) {
  #header .reunify {
    top: 5px;
  }
  body:not(.start-page) #header .reunify {
    opacity: 0;
  }
}
@media (max-width: 440px) {
  #header .reunify {
    position: absolute;
    top: 38px;
    margin-left: 43px;
  }
  #header .reunify-inner {
    display: block;
    padding: 0;
  }
  #header .reunify-inner b {
    display: inline;
  }
  #header .reunify-inner::before {
    display: none;
  }
}
#header .links {
  display: flex;
  gap: 8px;
}
#header .links .link,
#header .links .menu {
  cursor: pointer;
  display: flex;
  align-items: center;
  background: rgb(0 0 0 / 0%);
  border-radius: 99px;
  color: var(--highlight);
  height: 37px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color .1s;
  padding: 0 16px;
}
#header .links .link:hover,
#header .links .menu:hover {
  background: rgb(0 0 0 / 20%);
}
#header .menu {
  position: relative;
}
#header .menu .caret {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform .2s;
  top: 2px;
  margin-right: -2px;
}
#header .menu.open .caret {
  transform: rotate(180deg);
}
#header .menu-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
#header .menu-content {
  position: absolute;
  top: 100%;
  visibility: hidden;
  margin-left: -16px;
  z-index: 2;
}
#header .menu.open .menu-content {
  visibility: visible;
}
#header .menu-content-inner {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow:
    0  4px  8px -4px rgba(0 0 0 / 4%),
    0 16px 24px -8px rgba(0 0 0 / 16%);
  border-radius: 10px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  white-space: nowrap;
  margin-top: 12px;
  transition: opacity .2s, transform .2s;
  opacity: 0;
  transform: scale(.95);
}
#header .menu.open .menu-content-inner {
  opacity: 1;
  transform: scale(1);
}
#header .menu-link {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-radius: 6px;
  padding: 11px;
  padding-right: 40px;
  gap: 8px;
}
#header .menu-link:hover {
  background: var(--fade);
}
#header .menu-link b {
  font-weight: 600;
}
#header .toggle {
  cursor: pointer;
  background: rgb(0 0 0 / 32%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  width: 42px;
  height: 42px;
  user-select: none;
}
#mobile-menu {
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 300;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  padding-left: 20px;
}
body:not(.mobile-menu-open) #mobile-menu {
  display: none;
}
#mobile-menu .top {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
#mobile-menu .mobile-menu-header,
#mobile-menu .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mobile-menu .logo img {
  height: 36px;
}
#mobile-menu .toggle {
  cursor: pointer;
  background: rgb(0 0 0 / 24%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  width: 42px;
  height: 42px;
  user-select: none;
}
#mobile-menu .mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding-left: 6px;
  gap: 24px;
}
#mobile-menu .mobile-menu-links a {
  display: flex;
  justify-content: center;
  color: var(--highlight);
}
#mobile-menu .bottom {
  color: var(--highlight);
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 0;
}
#mobile-menu .bottom b {
  font-weight: 600;
}
#start .intro {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  gap: 36px;
}
#start .intro h1 {
  font-weight: 900;
}
#start .intro h4 {
  font-family: "Sofia Sans", sans-serif;
  font-size: 28px;
  line-height: 1.4;
}
#start .video {
  display: flex;
  justify-content: center;
  margin-top: -40px;
}
#start .video::before {
  content: "";
  background: var(--green);
  height: 200px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
}
#start .video-wrapper {
  background: var(--light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green);
  width: 640px;
  width: 800px;
  height: 360px;
  height: 450px;
  position: relative;
  z-index: 1;
}
@media (max-width: 680px) {
  #start .video {
    margin-top: -30px;
  }
}
#start .section-quote {
  background-image: url(/images/quote-text-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#start .quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--dark);
  color: #111;
  text-align: center;
  padding: 40px 0;
  gap: 36px;
}
#start .quote-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#start .quote-rating svg {
  width: 40px;
  height: 40px;
}
#start .quote-rating .icons {
  display: flex;
  color: var(--highlight);
  gap: 4px;
}
#start .quote-rating .text {
  font-size: 16px;
}
#start .quote-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
#start .quote-author {
  font-size: 22px;
}
@media (max-width: 680px) {
  #start .quote-text {
    font-size: 26px;
  }
  #start .quote-author {
    font-size: 20px;
  }
}
#start .features {
  padding: 40px 0;
}
#start .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
#start .feature h3 {
  color: var(--green);
  font-size: 22px;
}
#start .feature p {
  font-family: "Sofia Sans", sans-serif;
  line-height: 1.6;
}
#start .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green);
  margin-bottom: 16px;
  width: 120px;
  background: hsl(49.09deg 23.58% 94.57%);
  height: 120px;
  border-radius: 50%;
}
#start .feature-icon svg {
  width: 80px;
  height: 80px;
}
@media (max-width: 680px) {
  #start .features {
    padding: 20px;
  }
  #start .feature {
    margin: 20px 0;
  }
  #start .feature-icon {
    margin-bottom: 0
  }
}
#reseller .hero.section-header::before {
  background-image: url('/assets/business-telephony.jpeg');
}
#reseller .hero.section-header {
  min-height: 610px;
}
#reseller-text h3 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
#reseller-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
#reseller-text strong {
  color: #D0FF71;
}
.reseller-intro-bg {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.reseller-intro-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/quote-text-bg.svg");
  background-size: cover;
  background-position: center; 
  opacity: 1;
  z-index: 0;
}

.reseller-intro-bg::after {
  /* soft readable veil using Calm Green @ ~40% */
  content: "";
  position: absolute; inset: 0;
  background: rgba(70,108,90,0.08);
  z-index: 0;
}

.reseller-intro-bg .container {
  position: relative;
  z-index: 1; /* keep text above background */
}

/* Tweak spacing for a hero-ish feel without changing your content */
.reseller-intro-bg .row {
  margin-top: 60px !important;
  margin-bottom: 40px;
}

/* Mobile: ensure the vector stays legible */
@media (max-width: 767px) {
  .reseller-intro-bg::before {
    background-size: 180% auto;  /* zoom so shapes read well */
    background-position: 70% 40%;
  }
  .reseller-intro-bg .row {
    margin-top: 30px !important;
    margin-bottom: 20px;
  }
}
#reseller .features {
  padding: 40px 0;
}
#reseller .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  min-height: 100%;
}
#reseller .feature h3 {
  color: var(--green);
  font-size: 22px;
}
#reseller .feature p {
  font-family: "Sofia Sans", sans-serif;
  line-height: 1.6;
}
#reseller .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green);
  margin-bottom: 16px;
  width: 120px;
  background: var(--highlight);
  height: 120px;
  border-radius: 50%;
}
#reseller .feature-icon svg {
  width: 80px;
  height: 80px;
}
@media (max-width: 680px) {
  #reseller .features {
    padding: 20px;
  }
  #reseller .feature {
    margin: 20px 0;
  }
  #reseller .feature-icon {
    margin-bottom: 0
  }
}
#product .market-benefit-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  min-height: 100%;
}
#product .market-benefits-section {
  background-color: var(--cream);
  overflow: visible;
}
#product .market-benefits-section p {
  font-size: 18px;
  line-height: 1.6;
  font-family: "Sofia Sans", sans-serif;
}
#product .market-benefits-section .row {
  row-gap: 15px;
}
#product .market-benefit-card p {
  text-align: center;
  font-size: 16px;
}
#product .market-benefits-section h3 {
  margin-bottom: 20px;
}
#product .market-benefits-section h5 {
  font-size: 22px;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  margin: 15px 0;
}
#product .market-benefit-card img {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  background-color: var(--pink);
  padding: 12px;
}
#product .features-layout {
  margin-top: 40px;
  align-items: flex-start;
}
#product .features-sidebar {
  background-color: #fff;
  border-radius: 12px;
  max-width: 262px;
  margin-right: 8px;
}
#product [class^=col-].features-sidebar  {
  padding: 0 15px;
}
#product .features-toolbar {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 25px;
  align-items: center;
  padding: 15px;
}
#product .search-box .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
}
#product .search-box .search-icon {
  position: absolute;
  left: 12px;
  pointer-events: none;
}
#product .search-box input[type="search"] {
  width: 100%;
  padding: 10px 12px 10px 40px;
  border: none;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  min-height: 60px;
  margin-bottom: 0;
  font-family: inherit;
}
#product .search-box input[type="search"]:focus {
  border-color: #999;
  background-color: #fff;
}
#product .categories {
  margin-bottom: 20px;
}
#product .categories .header {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#product .categories h4 {
  font-weight: 600;
  line-height: 1.2;
}
#product ul {
  list-style-type: none;
  padding: 0;
}
#product .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
}
#product .category-item .left {
  display: flex;
  align-items: center;
  gap: 6px;
}
#product .clear-button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #eee;
  line-height: 1.8;
  height: 32px;
  padding: 0 16px;
}
#product .cta {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
/*#product .center-button {
  text-align: center;
  margin-top: 40px;
}
#product .center-button button {
  width: 255px;
} */
#product .features-sidebar .search-box .input-wrap{
  display: flex; 
  align-items: center; 
  gap: 10px;
}
#product .filters-toggle{
  display: none; 
  border: 0; 
  background: transparent; 
  padding: .4rem;
  border-radius: .5rem; 
  cursor: pointer;
}
#product .filters-toggle:focus{ 
  outline:2px solid var(--calmgreen); 
  outline-offset: 2px; 
}
#product .filters-icon{ 
  display: block; 
}
#features-grid {
  position: relative;
  z-index: 0;
}
#product .features-layout [class^=col-] {
  padding: 0 8px;
}
#product [class^=col-].features-sidebar  {
  padding: 0 15px;
}
@media (max-width:679px){
  #product .features-sidebar { 
    position: relative; 
  }
  #product .features-sidebar .search-box {
    position: sticky; 
    top: 0; 
    z-index: 3; 
    background: inherit; 
    padding-bottom: 20px;
    padding-top: 20px;
  }
  #product .features-sidebar .categories {
    display: none; 
    position: absolute; 
    z-index: 5; 
    left: 0; 
    right: 0; 
    top: 105px;
    background:#fff; 
    border: 1px solid #E6E8EF; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08); 
    overflow: auto;
  }
  #product .features-sidebar.filters-open .categories { 
    display: block; 
    padding: 0px 20px 20px 20px;
  }
  #product .features-sidebar .filters-toggle { 
    display: inline-flex; 
    background-color: #f9f9f9;
    min-height: 60px;
    width: 60px;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width:680px) {
  #product .features-sidebar .filters-toggle { 
    display: none; 
  }
  #product .features-sidebar .categories { 
    display: block; 
    position: static; 
    box-shadow: none; 
    border: 0; 
    padding: 0; 
  }
  #product .features-sidebar {
    position: sticky;
    top: 40px;
    align-self: flex-start;
    padding: 25px;
  }
  #product .features-sidebar .categories {
    max-height: calc(100vh - 140px);
    overflow: auto;
    padding-right: 6px;
  }
  #product .features-sidebar .search-box {
    background: inherit;
    margin-bottom: 12px;
  }
}
@media (max-width: 680px) {
  #product .quote-text {
    font-size: 26px;
  }
  #product .quote-author {
    font-size: 20px;
  }
  #product .features-sidebar {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    z-index: 99;
  }
  #product .features-layout {
    position: static;
  }
  #product .text-section img {
    max-width: 100%;
    height: auto;
  }
  #product .text-section {
    padding-bottom: 20px;
  }
}
#footer {
  background: var(--green);
  color: var(--highlight);
  padding: 100px 0;
}
@media (max-width: 680px) {
  #footer {
    padding: 60px 0 40px;
  }
}
#footer h4 {
  font-size: 18px;
  font-weight: 600;
}
#footer .company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
}
#footer .company a {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 680px) {
  #footer h4 {
    margin-top: 32px;
  }
  #footer .company {
    align-items: center;
    margin: 0 0 12px;
  }
}
#footer .logo img {
  height: 52px;
  position: relative;
  left: -8px;
}
#footer .links,
#footer .items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0;
  gap: 12px;
}
#footer .links a {
  border-bottom: 1px solid transparent;
  color: var(--highlight);
  font-weight: 300;
  margin-bottom: -1px;
}
#footer .links a:hover {
  border-bottom: 1px solid var(--highlight);
}
#footer .items {
  gap: 20px;
}
#footer .email,
#footer .phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
}
#footer .email a,
#footer .phone a {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  gap: 6px;
}
#footer .phone > span:first-child {
  margin-bottom: 2px;
}
#footer .phone .type {
  display: flex;
  pointer-events: none;
  width: 70px;
  position: relative;
  top: 1px;
}
#footer .phone .type span {
  background: rgb(0 0 0 / 16%);
  border-radius: 99px;
  color: var(--highlight);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 6px 8px;
}
#footer .phone a + a {
  margin-top: 2px;
}
#footer .socials {
  color: var(--highlight);
  margin-top: 1em;
}
#footer .socials-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}
#footer .socials-icons {
  display: flex;
  align-items: center;
  position: relative;
  left: -4px;
  gap: 8px;
}
#footer .socials a {
  transition: transform .1s;
}
#footer .socials a:hover {
  transform: rotate(-10deg) scale(1.2);
}
#footer .socials svg {
  width: 38px;
  height: 38px;
}
#footer .socials .instagram svg {
  width: 34px;
  height: 34px;
}
#copyright {
  background: var(--green);
  box-shadow: 0 -1px 0 rgb(255 255 255 / 6%);
  color: var(--highlight);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 680px) {
  #copyright {
    font-size: 14px;
  }
}

/*
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  color: #111;
  font: 20px/1.3 "Sofia Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-width: 1200px;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4 {
  line-height: 1.3;
  margin: 0;
}
h1 { font-size: 46px; letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: 36px; letter-spacing: -0.01em; font-weight: 700; }
h3 { font-size: 32px; letter-spacing: -0.01em; font-weight: 700; }
h4 { font-size: 24px; letter-spacing: -0.01em; font-weight: 700; }
h5 { font-size: 20px; letter-spacing: -0.01em; font-weight: 700; }
a { text-decoration: none; }
b { font-weight: 600; }
p { margin: 0; }
.color-green { background-color: #466C5A; }
.color-cream { background-color: #EFEDE4; }
.highlight {
  color: #D8FF4F;
}
p {
  font-size: 16px;
  line-height: 1.714;
  margin: 0;
}
ul {
  margin-top: 20px;
}
li {
  font-size: 16px;
  line-height: 1.714;
}
input,
select,
textarea {
  flex: 1;
  padding: 14px;
  border-radius: 10px 0 10px 10px;
  border: none;
}
select {
  padding: 14px; 
  border-radius: 10px 0 10px 10px; 
  border: none;
}
.center {
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
.push-right {
  display: flex;
  justify-content: flex-end;
}
.navbar {
  height: 130px;
  display: flex;
  align-items: center;
  padding: 0 60px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar .container {
  width: 100%;
  max-width: 100%;
}
.navbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-menu {
  display: flex;
  justify-content: end;
}
.main-menu a {
  color: #d8ff4f;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 700;
  font-size: 16px;
}
.main-menu a:hover {
  text-decoration: underline;
}
.hero-section {
  display: flex;
  flex-direction: column;
  max-height: 1160px;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-text-wrapper {
  color: white;
  flex: 0 0 calc(50vh - 130px);
  max-height: 428px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  text-align: center;
}
.hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}
.hero-section .highlight {
  color: #d8ff4f;
  font-weight: 700;
}
.hero-section .subtext {
  font-size: 30px;
  margin-bottom: 10px;
  color: #e4e4e4;
  color: #fff;
}
.hero-cta-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 15.5px;
  z-index: 5;
}
.cta-button-wrapper {
  position: absolute;
  top: calc(50vh - 150px);
  width: 100%;
  text-align: center;
  z-index: 2;
}
.cta-button {
  display: inline-block;
  width: 255px;
  height: 37px;
  line-height: 37px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: #d6ff5c;
  color: #004225;
  border: none;
  border-radius: 18.5px;
  cursor: pointer;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #cde947;
}
.hero-image {
  display: flex;
  justify-content: center;
  background-color: #EFEDE4;
  flex: 0 0 50vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 50vh;
}
.hero-image img {
  width: 100%;
  height: 100%;
  max-width: 1103px;
}
.services-section {
  background-color: #EFEDE4;
  color: #141E3E;
  padding: 100px 0;
}
.services-section h3 {
  text-align: center;
  margin-bottom: 60px;
}
.service-cards {
  margin-bottom: 80px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding-bottom: 30px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding-bottom: 30px;
  flex: 1;
}
.services-section .col-xs-4 {
  display: flex;
}
.service-card img {
  width: 100%;
  display: block;
  height: auto;
}
.service-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0 6px;
}
.service-card p {
  font-size: 14px;
  padding: 0 10px;
  margin-bottom: 16px;
}
.services-section h4 {
  margin-bottom: 20px;
}
.dark-button {
  background-color: #141E3E;
  color: #D6FFB8;
  border: none;
  border-radius: 18.5px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.dark-button:hover {
  background-color: #0d152d;
}
.dark-button.wide-btn {
  display: inline-block;
  width: 255px;
  text-align: center;
}
.service-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 20px;
}
.icon-wrapper {
  background-color: #466C5A;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn-section {
  background-color: #EFEDE4;
  padding: 100px 0;
  color: #466C5A;
}
.learn-section h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #466C5A;
}
.learn-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.learn-section .row {
  display: flex;
}
.learn-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cta-button.dark-green {
  background-color: #466C5A;
  color: #D0FF71;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 18.5px;
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  height: 37px;  
  padding: 0 24px;   
  text-decoration: none;
  text-align: center;
  width: fit-content;
  margin-bottom: 32px;
  width: 255px;
}
.cta-button.dark-green:hover {
  background-color: #3c5b4c;
}
.learn-illustration img {
  max-width: 100%;
  height: auto;
  margin-bottom: -30px;
}
.learn-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.features-section {
  background-color: #EFEDE4;
  padding: 100px 0;
  color: #466C5A;
}
.features-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #466C5A;
  margin-bottom: 60px;
  text-align: center;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.feature-card {
  background: white;
  color: #466C5A;
  border-radius: 0 20px 20px 20px;
  padding: 30px 24px 24px;
  width: calc(33.333% - 20px);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}
.feature-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.feature-card img {
  position: absolute;
  bottom: 0;
  right: 24px;
  width: 106px;
  height: 106px;
}
.testimonial-section {
  background-color: #EFEDE4;
  padding: 100px 0 130px 0;
  text-align: center;
  color: #466C5A;
}
.testimonial-section h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #466C5A;
}
.testimonial-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}
.testimonial-box {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-bg {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.testimonial-text {
  position: absolute;
  padding: 40px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 80%;
  z-index: 2;
}
.testimonial-text.light {
  color: #EFEDE4;
}
.testimonial-text.dark {
  color: #004225;
}
.footer {
  background-color: #466C5A;
  color: #D6FFB8;
  min-height: 542px;
  padding: 80px 60px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer h5 {
  color: #D6FFB8;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer p {
  margin: 0 0 10px;
}
.footer ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  color: #D6FFB8;
  text-decoration: underline;
  font-size: 16px;
}
.footer-about {
  max-width: 300px;
}
.footer-social {
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .learn-illustration img {
    margin-bottom: 0;
  }
}

#start {}
#start .section {
  padding: 80px 0;
}
#start .intro {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
#start .intro .subtext {
  font-size: 30px;
  font-weight: 500;
}
*/

#error {
  background: var(--green);
  box-shadow: 0 1px 0 rgb(255 255 255 / 6%);
  color: var(--highlight);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 120px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
#error a {
  border-bottom: 1px solid currentColor;
  font-size: 18px;
}
