/* PrimeVue component base CSS — captured from the original runtime (JS-injected), framework-free */

@keyframes ripple { 100% { opacity: 0; transform: scale(2.5); } }

@layer primevue {
    .p-ripple { overflow: hidden; position: relative; }
    .p-ink { display: block; position: absolute; background: rgba(255, 255, 255, 0.5); border-radius: 100%; transform: scale(0); pointer-events: none; }
    .p-ink-active { animation: ripple 0.4s linear; }
    .p-ripple-disabled .p-ink { display: none; }
}

@layer primevue {
.p-component, .p-component * { box-sizing: border-box; }
.p-button { display: inline-flex; cursor: pointer; user-select: none; align-items: center; vertical-align: bottom; text-align: center; overflow: hidden; position: relative; }
.p-button-label { flex: 1 1 auto; }
.p-button:disabled { cursor: default; }
}

@layer primevue {
    .p-icon { display: inline-block; }
}
@keyframes p-icon-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } }

@layer primevue {
    .p-megamenu { display: flex; position: relative; }
    .p-megamenu-root-list { margin: 0; padding: 0; list-style: none; }
    .p-megamenu .p-menuitem-link { cursor: pointer; display: flex; align-items: center; text-decoration: none; overflow: hidden; position: relative; }
    .p-megamenu .p-menuitem-text { line-height: 1; }
    .p-megamenu-panel { display: none; width: auto; z-index: 1; left: 0; min-width: 100%; }
    .p-megamenu-panel:not(.p-megamenu-mobile) { position: absolute; }
    .p-megamenu-root-list > .p-menuitem-active > .p-megamenu-panel { display: block; }
    .p-megamenu-submenu { margin: 0; padding: 0; list-style: none; }
    .p-megamenu-button { display: none; cursor: pointer; align-items: center; justify-content: center; text-decoration: none; }
    .p-megamenu-horizontal { align-items: center; }
    .p-megamenu-horizontal .p-megamenu-root-list { display: flex; align-items: center; flex-wrap: wrap; }
    .p-megamenu-horizontal .p-megamenu-end { margin-left: auto; align-self: center; }
    .p-megamenu-vertical { flex-direction: column; }
    .p-megamenu-vertical:not(.p-megamenu-mobile) { display: inline-flex; }
    .p-megamenu-vertical .p-megamenu-root-list { flex-direction: column; }
    .p-megamenu-vertical:not(.p-megamenu-mobile) .p-megamenu-root-list > .p-menuitem-active > .p-megamenu-panel { left: 100%; top: 0; }
    .p-megamenu-vertical .p-megamenu-root-list > .p-menuitem > .p-menuitem-content > .p-menuitem-link > .p-submenu-icon { margin-left: auto; }
    .p-megamenu-grid { display: flex; }
    .p-megamenu-col-2, .p-megamenu-col-3, .p-megamenu-col-4, .p-megamenu-col-6, .p-megamenu-col-12 { flex: 0 0 auto; padding: 0.5rem; }
    .p-megamenu-col-2 { width: 16.6667%; }
    .p-megamenu-col-3 { width: 25%; }
    .p-megamenu-col-4 { width: 33.3333%; }
    .p-megamenu-col-6 { width: 50%; }
    .p-megamenu-col-12 { width: 100%; }
    .p-megamenu.p-megamenu-mobile .p-megamenu-button { display: flex; }
    .p-megamenu.p-megamenu-mobile .p-megamenu-root-list { position: absolute; display: none; width: 100%; }
    .p-megamenu.p-megamenu-mobile .p-submenu-list { width: 100%; position: static; box-shadow: none; border: 0 none; }
    .p-megamenu.p-megamenu-mobile .p-megamenu-root-list .p-menuitem { width: 100%; position: static; }
    .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list { display: flex; flex-direction: column; top: 100%; left: 0; z-index: 1; }
    .p-megamenu.p-megamenu-mobile .p-megamenu-grid { flex-wrap: wrap; overflow: auto; max-height: 90%; }
}
/* theme */
:root {
  --surface-a: #ffffff;
  --surface-b: #f8fafc;
  --surface-c: #f1f5f9;
  --surface-d: #e2e8f0;
  --surface-e: #ffffff;
  --surface-f: #ffffff;
  --text-color: #1e293b;
  --text-color-secondary: #64748b;
  --primary-color: #3EAA87;
  --primary-color-text: #ffffff;
  --font-family: Poppins, sans-serif;
  --surface-0: #ffffff;
  --surface-50: #fafafa;
  --surface-100: #f5f5f5;
  --surface-200: #eeeeee;
  --surface-300: #e0e0e0;
  --surface-400: #bdbdbd;
  --surface-500: #9e9e9e;
  --surface-600: #757575;
  --surface-700: #616161;
  --surface-800: #424242;
  --surface-900: #212121;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --content-padding: 1.25rem;
  --inline-spacing: 0.5rem;
  --border-radius: 6px;
  --surface-ground: #eff3f8;
  --surface-section: #ffffff;
  --surface-card: #ffffff;
  --surface-overlay: #ffffff;
  --surface-border: #dfe7ef;
  --surface-hover: #f6f9fc;
  --focus-ring: 0 0 0 0.2rem #c7d2fe;
  --maskbg: rgba(0, 0, 0, 0.4);
  color-scheme: light;
  --transition-duration: 0.2s;
  --blank-100: #181819;
  --blank-500: #55575A;
}

* {
  box-sizing: border-box;
}

.p-component {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: normal;
}


.p-component:disabled {
  opacity: 0.6;
}

.pi {
  @media (max-width: 500px) {
    font-size: 12px;
  }

  font-size: 1rem;
}

@keyframes p-component-overlay-enter-animation {
  from {
    background-color: transparent;
  }

  to {
    background-color: var(--maskbg);
  }
}

@keyframes p-component-overlay-leave-animation {
  from {
    background-color: var(--maskbg);
  }

  to {
    background-color: transparent;
  }
}

:root {
  --blue-50: #f5f9ff;
  --blue-100: #d0e1fd;
  --blue-200: #abc9fb;
  --blue-300: #85b2f9;
  --blue-400: #609af8;
  --blue-500: #3b82f6;
  --blue-600: #326fd1;
  --blue-700: #295bac;
  --blue-800: #204887;
  --blue-900: #183462;
  --green-50: #f4fcf7;
  --green-100: #caf1d8;
  --green-200: #a0e6ba;
  --green-300: #76db9b;
  --green-400: #4cd07d;
  --green-500: #22c55e;
  --green-600: #1da750;
  --green-700: #188a42;
  --green-800: #136c34;
  --green-900: #0e4f26;
  --yellow-50: #fefbf3;
  --yellow-100: #faedc4;
  --yellow-200: #f6de95;
  --yellow-300: #f2d066;
  --yellow-400: #eec137;
  --yellow-500: #eab308;
  --yellow-600: #c79807;
  --yellow-700: #a47d06;
  --yellow-800: #816204;
  --yellow-900: #5e4803;
  --cyan-50: #f3fbfd;
  --cyan-100: #c3edf5;
  --cyan-200: #94e0ed;
  --cyan-300: #65d2e4;
  --cyan-400: #35c4dc;
  --cyan-500: #06b6d4;
  --cyan-600: #059bb4;
  --cyan-700: #047f94;
  --cyan-800: #036475;
  --cyan-900: #024955;
  --pink-50: #fef6fa;
  --pink-100: #fad3e7;
  --pink-200: #f7b0d3;
  --pink-300: #f38ec0;
  --pink-400: #f06bac;
  --pink-500: #ec4899;
  --pink-600: #c93d82;
  --pink-700: #a5326b;
  --pink-800: #822854;
  --pink-900: #5e1d3d;
  --indigo-50: #f7f7fe;
  --indigo-100: #dadafc;
  --indigo-200: #bcbdf9;
  --indigo-300: #9ea0f6;
  --indigo-400: #8183f4;
  --indigo-500: var(--primary-color);
  --indigo-600: #5457cd;
  --indigo-700: #4547a9;
  --indigo-800: #363885;
  --indigo-900: #282960;
  --teal-50: #f3fbfb;
  --teal-100: #c7eeea;
  --teal-200: #9ae0d9;
  --teal-300: #6dd3c8;
  --teal-400: #41c5b7;
  --teal-500: #14b8a6;
  --teal-600: #119c8d;
  --teal-700: #0e8174;
  --teal-800: #0b655b;
  --teal-900: #084a42;
  --orange-50: #fff8f3;
  --orange-100: #feddc7;
  --orange-200: #fcc39b;
  --orange-300: #fba86f;
  --orange-400: #fa8e42;
  --orange-500: #f97316;
  --orange-600: #d46213;
  --orange-700: #ae510f;
  --orange-800: #893f0c;
  --orange-900: #642e09;
  --bluegray-50: #f7f8f9;
  --bluegray-100: #dadee3;
  --bluegray-200: #bcc3cd;
  --bluegray-300: #9fa9b7;
  --bluegray-400: #818ea1;
  --bluegray-500: #64748b;
  --bluegray-600: #556376;
  --bluegray-700: #465161;
  --bluegray-800: #37404c;
  --bluegray-900: #282e38;
  --purple-50: #fbf7ff;
  --purple-100: #ead6fd;
  --purple-200: #dab6fc;
  --purple-300: #c996fa;
  --purple-300-2: #CEE1FF;
  --purple-400: #b975f9;
  --purple-500: #a855f7;
  --purple-600: #8f48d2;
  --purple-700: #763cad;
  --purple-800: #5c2f88;
  --purple-900: #432263;
  --red-50: #fff5f5;
  --red-100: #ffd0ce;
  --red-200: #ffaca7;
  --red-300: #ff8780;
  --red-400: #ff6259;
  --red-500: #ff3d32;
  --red-600: #d9342b;
  --red-700: #b32b23;
  --red-800: #8c221c;
  --red-900: #661814;
  --primary-50: #f7f7fe;
  --primary-100: #dadafc;
  --primary-200: #bcbdf9;
  --primary-300: #9ea0f6;
  --primary-400: #8183f4;
  --primary-500: var(--primary-color);
  --primary-600: #5457cd;
  --primary-700: #4547a9;
  --primary-800: #363885;
  --primary-900: #282960;
}

::-webkit-input-placeholder {
  color: #64748b;
}

::-moz-placeholder {
  color: #64748b;
}

.p-button {
  color: #ffffff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  border-radius: 6px;
}

/* .p-button:enabled:hover {
  background: #241716;
  color: #ffffff;
  border-color: #241716;
}

.p-button:enabled:active {
  background: #241716;
  color: #ffffff;
  border-color: #241716;
} */

.p-button:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2rem #c7d2fe;
}

.p-button .p-button-label {
  transition-duration: 0.2s;
}

.p-button .p-button-icon-left {
  margin-right: 0.5rem;
}

.p-datatable .p-datatable-thead>tr>th {
  text-align: left;
  padding: 1rem 1rem;
  border: 1px solid #e2e8f0;
  border-width: 0 0 1px 0;
  font-weight: 700;
  color: #334155;
  background: #f8fafc;
  transition: box-shadow 0.2s;
}

.p-datatable .p-datatable-tbody>tr {
  background: #ffffff;
  color: #1e293b;
  transition: box-shadow 0.2s;
}

.p-datatable .p-datatable-tbody>tr>td {
  text-align: left;
  border: 1px solid #e2e8f0;
  border-width: 0 0 1px 0;
  padding: 1rem 1rem;
}

.p-datatable .p-datatable-tbody>tr>td>.p-column-title {
  font-weight: 700;
}

.p-datatable .p-datatable-tbody>tr:focus {
  outline: 0.15rem solid #c7d2fe;
  outline-offset: -0.15rem;
}

.p-datatable .p-column-resizer-helper {
  background: var(--primary-color);
}

.p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th {
  border-width: 1px 1px 1px 1px;
}

.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr>td {
  border-width: 1px;
}

.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(even) {
  background: #fcfcfc;
}

.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link {
  transition: box-shadow 0.2s;
  border-radius: 6px;
}

.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:hover {
  background-color: blue !important;
}

.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2rem #c7d2fe;
}

.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
}

.p-breadcrumb .p-breadcrumb-list li.p-menuitem-separator {
  margin: 0 0.5rem 0 0.5rem;
  color: #1e293b;
}

.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-text {
  color: #1e293b;
}

.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon {
  color: #64748b;
}

.p-contextmenu .p-submenu-list {
  padding: 0.25rem 0;
  background: #ffffff;
  border: 0 none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.p-contextmenu .p-menuitem>.p-menuitem-content {
  color: #1e293b;
  transition: box-shadow 0.2s;
  border-radius: 0;
}

.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0.75rem 1.25rem;
  user-select: none;
}

.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
  margin-right: 0.5rem;
}

.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content {
  color: #3EAA87;
  background: #eef2ff;
}

.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #3EAA87;
}

.p-contextmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content {
  background: rgba(99, 102, 241, 0.24);
}

.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content {
  color: #475569;
  background: #e2e8f0;
}

.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #475569;
}

.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #475569;
}

.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: #f1f5f9;
}

.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-contextmenu .p-menuitem-separator {
  border-top: 1px solid #e2e8f0;
  margin: 0.25rem 0;
}

.p-contextmenu .p-submenu-icon {
  font-size: 0.875rem;
}

.p-megamenu {
  padding: 0.5rem;
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

.p-megamenu .p-megamenu-root-list {
  outline: 0 none;
}

.p-megamenu .p-menuitem>.p-menuitem-content {
  color: #1e293b;
  transition: box-shadow 0.2s;
  border-radius: 0;
}

.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0.75rem 1.25rem;
  user-select: none;
}

.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
  margin-right: 0.5rem;
}

.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content {
  color: #3EAA87;
  background: #eef2ff;
}

.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #3EAA87;
}

.p-megamenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content {
  background: rgba(99, 102, 241, 0.24);
}

.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content {
  color: #475569;
  background: #e2e8f0;
}

.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #475569;
}

.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #475569;
}

.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: #f1f5f9;
}

.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-megamenu .p-megamenu-panel {
  background: #ffffff;
  color: #1e293b;
  border: 0 none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

.p-megamenu .p-submenu-header {
  margin: 0;
  padding: 0.75rem 1.25rem;
  color: #334155;
  background: #ffffff;
  font-weight: 700;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

.p-megamenu .p-submenu-list {
  padding: 0.25rem;
  /* width: 17.5rem; */
}

.p-megamenu .p-submenu-list .p-menuitem-separator {
  border-top: 1px solid #e2e8f0;
  margin: 0.25rem 0;
}

.p-megamenu.p-megamenu-vertical {
  width: 12.5rem;
  padding: 0.25rem 0;
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content {
  color: #1e293b;
  transition: box-shadow 0.2s;
  border-radius: 6px;
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0.75rem 1.25rem;
  user-select: none;
  @media (max-width: 1180px) {
    padding: 0.75rem 0.75rem;
  }
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
  margin-right: 0.5rem;
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #64748b;
  margin-left: 0.5rem;
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: #f1f5f9;
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-menu .p-menuitem>.p-menuitem-content {
  color: #1e293b;
  transition: box-shadow 0.2s;
  border-radius: 0;
}

.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0.75rem 1.25rem;
  user-select: none;
}

.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
  margin-right: 0.5rem;
}

.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-menu .p-menuitem.p-highlight>.p-menuitem-content {
  color: #3EAA87;
  background: #eef2ff;
}

.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #3EAA87;
}

.p-menu .p-menuitem.p-highlight.p-focus>.p-menuitem-content {
  background: rgba(99, 102, 241, 0.24);
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content {
  color: #475569;
  background: #e2e8f0;
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #475569;
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #475569;
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: #f1f5f9;
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-menu .p-submenu-header {
  margin: 0;
  padding: 0.75rem 1.25rem;
  color: #334155;
  background: #ffffff;
  font-weight: 700;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.p-menu .p-menuitem-separator {
  border-top: 1px solid #e2e8f0;
  margin: 0.25rem 0;
}

.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content {
  font-family: Poppins, Poppins;
  font-weight: 500;
  color: #121212;
  margin-right: 2.5rem;
}

.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0;
  user-select: none;
}

.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #ffffff;
}

.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #ffffff;
  margin-right: 0.5rem;
}

.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #ffffff;
  margin-left: 0.5rem;
}

.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: transparent;
}

.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #3EAA87;
}

.p-menubar .p-menuitem>.p-menuitem-content {
  color: #1e293b;
  transition: box-shadow 0.2s;
  border-radius: 0;
}

.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0.5rem 1rem;
  user-select: none;
}

.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  font-size: 1.13rem;
  line-height: 1.75rem;
  font-family: Poppins, Poppins;
  font-weight: 500;
  color: #121212;
}

.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
  margin-right: 0.5rem;
}

.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-menubar .p-menuitem.p-highlight>.p-menuitem-content {
  color: #3EAA87;
  background: #eef2ff;
}

.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #3EAA87;
}

.p-menubar .p-menuitem.p-highlight.p-focus>.p-menuitem-content {
  background: rgba(99, 102, 241, 0.24);
}

.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content {
  color: #475569;
  background: #e2e8f0;
}

/* .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #475569;
} */

.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #475569;
}

.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: #f1f5f9;
}

.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-menubar .p-submenu-list {
  /* padding: 0.25rem 0; */
  padding-top: 0.67rem;
  background: #ffffff;
  border: 0 none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  width: 12.5rem;
}

.p-menubar .p-submenu-list .p-menuitem-separator {
  border-top: 1px solid #e2e8f0;
  margin: 0.25rem 0;
}

.p-menubar .p-submenu-list .p-submenu-icon {
  font-size: 0.875rem;
}

@media screen and (max-width: 960px) {

  .p-menubar .p-menubar-root-list .p-menuitem-separator {
    border-top: 1px solid #e2e8f0;
    margin: 0.25rem 0;
  }

  .p-menubar .p-menubar-root-list .p-submenu-icon {
    font-size: 0.875rem;
  }

  .p-menubar .p-menubar-root-list .p-menuitem {
    width: 100%;
    position: static;
  }

  .p-menubar .p-menubar-root-list .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    margin-left: auto;
    transition: transform 0.2s;
  }

  .p-menubar .p-menubar-root-list .p-menuitem.p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon {
    transform: rotate(-180deg);
  }

  .p-menubar .p-menubar-root-list .p-submenu-list {
    width: 100%;
    position: static;
    box-shadow: none;
    border: 0 none;
  }

  .p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
    transition: transform 0.2s;
    transform: rotate(90deg);
  }

  .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon {
    transform: rotate(-90deg);
  }

  .p-menubar .p-menubar-root-list .p-menuitem {
    width: 100%;
    position: static;
  }

  .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link {
    padding-left: 2.25rem;
  }

  .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link {
    padding-left: 3.75rem;
  }

  .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link {
    padding-left: 5.25rem;
  }

  .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link {
    padding-left: 6.75rem;
  }

  .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link {
    padding-left: 8.25rem;
  }
}

.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-submenu-icon {
  margin-right: 0.5rem;
}

.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon {
  margin-right: 0.5rem;
}

.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content {
  color: #1e293b;
  transition: box-shadow 0.2s;
  border-radius: 0;
}

.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0.75rem 1.25rem;
  user-select: none;
}

.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
  margin-right: 0.5rem;
}

.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content {
  color: #3EAA87;
  background: #eef2ff;
}

.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #3EAA87;
}

.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus>.p-menuitem-content {
  background: rgba(99, 102, 241, 0.24);
}

.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content {
  color: #475569;
  background: #e2e8f0;
}

.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #475569;
}

.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #475569;
}

.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: #f1f5f9;
}

.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon {
  margin-right: 0.5rem;
}

.p-panelmenu .p-panelmenu-content .p-menuitem-separator {
  border-top: 1px solid #e2e8f0;
  margin: 0.25rem 0;
}

.p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list) {
  padding: 0 0 0 1rem;
}

.p-steps .p-steps-item .p-menuitem-link {
  background: transparent;
  transition: box-shadow 0.2s;
  border-radius: 6px;
  background: #ffffff;
}

.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
  color: #1e293b;
  border: 1px solid #f1f5f9;
  background: #ffffff;
  min-width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.143rem;
  z-index: 1;
  border-radius: 50%;
}

.p-steps .p-steps-item .p-menuitem-link .p-steps-title {
  margin-top: 0.5rem;
  color: #64748b;
}

.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2rem #c7d2fe;
}

.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
  border: solid #e2e8f0;
  border-width: 0 0 2px 0;
  border-color: transparent transparent #e2e8f0 transparent;
  background: #ffffff;
  color: #64748b;
  padding: 1.25rem;
  font-weight: 700;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  transition: box-shadow 0.2s;
  margin: 0 0 -2px 0;
}

.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon {
  margin-right: 0.5rem;
}

.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.2rem #c7d2fe;
}

.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link {
  background: #ffffff;
  border-color: #94a3b8;
  color: #64748b;
}

.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
  background: #ffffff;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.p-tieredmenu .p-submenu-list {
  padding: 0.25rem 0;
  background: #ffffff;
  border: 0 none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

.p-tieredmenu .p-menuitem>.p-menuitem-content {
  color: #1e293b;
  transition: box-shadow 0.2s;
  border-radius: 0;
}

.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link {
  padding: 0.75rem 1.25rem;
  user-select: none;
}

.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon {
  color: #64748b;
  margin-right: 0.5rem;
}

.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content {
  color: #3EAA87;
  background: #eef2ff;
}

.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #3EAA87;
}

.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #3EAA87;
}

.p-tieredmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content {
  background: rgba(99, 102, 241, 0.24);
}

.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content {
  color: #475569;
  background: #e2e8f0;
}

.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text {
  color: #475569;
}

.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,
.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon {
  color: #475569;
}

.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover {
  color: #1e293b;
  background: #f1f5f9;
}

.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
  color: #1e293b;
}

.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,
.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
  color: #64748b;
}

.p-tieredmenu .p-menuitem-separator {
  border-top: 1px solid #e2e8f0;
  margin: 0.25rem 0;
}

.p-tieredmenu .p-submenu-icon {
  font-size: 0.875rem;
}

@keyframes p-progress-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes p-progress-spinner-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes p-progress-spinner-color {

  100%,
  0% {
    stroke: #ff5757;
  }

  40% {
    stroke: #696cff;
  }

  66% {
    stroke: #1ea97c;
  }

  80%,
  90% {
    stroke: #cc8925;
  }
}

.p-button-label {
  font-weight: 500;
}

.p-button:focus {
  box-shadow: none;
}

/* AppFootbar.CbPsWPFt.css */
.label[data-v-16a6eab2]{color:#ababab}.contact-container[data-v-16a6eab2]{background-image:url(/shared/contact-band-bg.png);background-size:100% 100%}.logo-container[data-v-16a6eab2]{background-color:var(--blank-100);flex-direction:row;flex-wrap:wrap;padding-bottom:2rem}@media (max-width:768px){.logo-container[data-v-16a6eab2]{padding-top:5rem!important}.logo-container .logo[data-v-16a6eab2]{margin-bottom:2rem}}.logo-container label[data-v-16a6eab2]{border-right:1px solid #aaa;color:#fff;font-weight:500}.logo-container label[data-v-16a6eab2]:last-child{border-right:none}.floowUs[data-v-16a6eab2]{margin-bottom:1rem;margin-top:2rem}.floowUs[data-v-16a6eab2],.title[data-v-16a6eab2]{font-family:Poppins;font-weight:500}.title[data-v-16a6eab2]{color:#fff}.page[data-v-16a6eab2]{margin-top:.75rem}.row-1[data-v-16a6eab2]{width:25%}.row-2[data-v-16a6eab2]{width:35%}.row-3[data-v-16a6eab2]{width:40%}@media (max-width:1200px){.row-1[data-v-16a6eab2],.row-2[data-v-16a6eab2],.row-3[data-v-16a6eab2]{width:50%}}@media (max-width:768px){.row-1[data-v-16a6eab2],.row-2[data-v-16a6eab2],.row-3[data-v-16a6eab2]{width:100%}}.row-2[data-v-16a6eab2]{padding-left:8%}@media (max-width:768px){.row-2[data-v-16a6eab2]{margin-top:2rem;padding-left:0}}.row-3[data-v-16a6eab2]{padding-left:10%}@media (max-width:1200px){.row-3[data-v-16a6eab2]{margin-top:3rem;padding-left:0}}.right-link[data-v-16a6eab2]{margin-left:3rem}@media (max-width:1200px){.right-link[data-v-16a6eab2]{margin-left:5rem}}.quote-container[data-v-16a6eab2]{background-image:url(/shared/about-quote-bg.png);display:none}@media (max-width:1200px){.quote-container .quote-view[data-v-16a6eab2]{align-items:flex-start!important;flex-direction:column}.quote-container .btn-container[data-v-16a6eab2]{margin-top:3rem}}[data-v-16a6eab2] .contact-btn{background-color:#fff;border:none;color:#3eaa87}
.footer .logo[data-v-16a6eab2]{height:3.9rem;width:15rem;display:block;visibility:visible}.footer .logo img[data-v-16a6eab2]{height:100%;object-fit:contain;width:100%;display:block;opacity:1;visibility:visible;max-width:none}@media (max-width:640px){.footer .logo[data-v-16a6eab2]{height:3.25rem;width:12.5rem}}.footer .row-2[data-v-16a6eab2] .flex.mt-4[data-v-16a6eab2]{gap:4.5rem}.footer .right-link[data-v-16a6eab2]{margin-left:0!important}@media (max-width:768px){.footer .row-2[data-v-16a6eab2] .flex.mt-4[data-v-16a6eab2]{gap:3rem}}

/* AppLayout.Cw2fNyR8.css */
.layout-content[data-v-2f95327e]{margin-top:-100px}


/* AppTopbar.DZMTcDrL.css */
[data-v-90847102] .p-megamenu{background-color:transparent;border:none;display:flex}[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#fff;font-size:16px;font-weight:500}@media (max-width:1360px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{font-size:14px}}@media (max-width:1200px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{font-size:12px}}@media (max-width:960px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1f1f1f}}@media (max-width:960px){[data-v-90847102] .p-megamenu-root-list{background:#fff}}[data-v-90847102] .p-megamenu-panel{left:auto;min-width:24rem}@media (max-width:960px){[data-v-90847102] .p-megamenu-panel{min-width:100%}}[data-v-90847102] #menu_1 .p-megamenu-panel,[data-v-90847102] #menu_1 .p-megamenu-col-6{min-width:18rem}[data-v-90847102] #menu_2 .p-megamenu-col-6{min-width:24rem}[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#fff}@media (max-width:960px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1f1f1f}}@media (max-width:960px){[data-v-90847102] .p-megamenu.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem .65rem;width:100%}}[data-v-90847102] .p-megamenu-grid{flex-direction:column}[data-v-90847102] .p-megamenu-col-4{min-width:17.5rem}[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content{background:transparent;color:#3eaa87}[data-v-90847102] .p-megamenu-end{align-self:center;margin-left:auto}[data-v-90847102] .p-megamenu{color:#fff}@media (max-width:1080px){[data-v-90847102] .p-megamenu-start{align-items:center;display:flex;justify-content:flex-start}}.header[data-v-90847102]{background-color:transparent;padding:.75rem 3rem;position:relative;z-index:99}@media (max-width:1280px){.header[data-v-90847102]{padding:15px 30px}}.header h1[data-v-90847102]{margin:0;padding:0}.header .end[data-v-90847102]{display:flex}.line[data-v-90847102]{margin-left:2rem;margin-right:2rem}@media (max-width:1280px){.line[data-v-90847102]{margin-left:2rem;margin-right:2rem}}@media (max-width:1080px){.line[data-v-90847102]{margin-left:1rem;margin-right:1rem}}.p-megamenu-button[data-v-90847102]{display:none}@media (max-width:1080px){.p-megamenu-button[data-v-90847102]{display:block}}
.header .logo[data-v-90847102]{height:3.45rem;width:13.25rem;display:flex;align-items:center;overflow:visible}.header .logo img[data-v-90847102]{height:100%;object-fit:contain;width:100%;display:block;opacity:1;visibility:visible;max-width:none}@media (max-width:1280px){.header .logo[data-v-90847102]{height:2.8rem;width:10.75rem}}@media (max-width:640px){.header .logo[data-v-90847102]{height:2.35rem;width:9rem}}

/* Banner.Cu7BA33O.css */


/* Besiness.BCKEDv6m.css */
.solution-view .label-325[data-v-9acaa7c7]{padding-left:13rem;padding-right:13rem}@media (max-width:900px){.solution-view .label-325[data-v-9acaa7c7]{padding-left:0;padding-right:0}}.solution-view .btn-box[data-v-9acaa7c7]{background:#fff;border-radius:.57rem;box-shadow:.21rem .21rem .86rem #0000000d;margin-right:1.14rem;padding:1.14rem 1.43rem;width:calc(25% - .855rem)}@media (max-width:1200px){.solution-view .btn-box[data-v-9acaa7c7]{padding:.65rem .75rem}}@media (max-width:1024px){.solution-view .btn-box[data-v-9acaa7c7]{margin-bottom:1.5rem;width:calc(50% - .57rem)}}@media (max-width:600px){.solution-view .btn-box[data-v-9acaa7c7]{width:100%}}@media (max-width:1024px){.solution-view .btn-box[data-v-9acaa7c7]:nth-child(2n){margin-right:0;width:calc(50% - 1.71rem)}}@media (max-width:600px){.solution-view .btn-box[data-v-9acaa7c7]:nth-child(2n){width:100%}}@media (max-width:1024px){.solution-view .btn-box[data-v-9acaa7c7]:nth-child(3),.solution-view .btn-box[data-v-9acaa7c7]:nth-child(4){margin-bottom:0}}@media (max-width:600px){.solution-view .btn-box[data-v-9acaa7c7]:nth-child(3),.solution-view .btn-box[data-v-9acaa7c7]:nth-child(4){margin-bottom:1.5rem}.solution-view .btn-box[data-v-9acaa7c7]:nth-child(4){margin-bottom:0}}.solution-view .btn-box-active[data-v-9acaa7c7]{background:#3eaa87;box-shadow:.21rem .21rem .86rem #0000001a}.solution-view .btn-box[data-v-9acaa7c7]:last-child{margin-right:0}.solution-view .btn[data-v-9acaa7c7]{width:calc(100% - 5.14rem)}.solution-view .solution-icon[data-v-9acaa7c7]{height:4rem;margin-right:1.14rem;width:4rem}.solution-view .solution-icon[data-v-9acaa7c7]:last-child{margin-right:0}.solution-view .tick[data-v-9acaa7c7]{height:1.71rem;margin-right:.86rem;width:1.71rem}.solution-view .tick-label[data-v-9acaa7c7]{margin-right:1rem;width:calc(100% - 3.57rem)}
.solution-view .solution-icon[data-v-9acaa7c7] img[data-v-9acaa7c7]{display:block!important;height:100%!important;max-height:100%!important;max-width:100%!important;object-fit:contain!important;opacity:1!important;visibility:visible!important;width:100%!important}.solution-view .btn-box-active[data-v-9acaa7c7] .solution-icon[data-v-9acaa7c7] img[data-v-9acaa7c7]{filter:brightness(0) invert(1)!important}.solution-view .btn-box:not(.btn-box-active)[data-v-9acaa7c7] .solution-icon[data-v-9acaa7c7] img[data-v-9acaa7c7]{filter:brightness(0) saturate(100%) invert(51%) sepia(24%) saturate(972%) hue-rotate(111deg) brightness(93%) contrast(87%)!important}


/* BigImg.Y4JPHzrd.css */
.big-container[data-v-460f6f00]{position:relative}.big-container .content[data-v-460f6f00]{position:absolute;z-index:3}.big-container .margin-top[data-v-460f6f00]{margin-top:-4.57rem}@media (max-width:1440px){.big-container .margin-top[data-v-460f6f00]{margin-top:-48px}}@media (max-width:1280px){.big-container .margin-top[data-v-460f6f00]{margin-top:-40px}}@media (max-width:1024px){.big-container .margin-top[data-v-460f6f00]{margin-top:-20px}}@media (max-width:768px){.big-container .margin-top[data-v-460f6f00]{margin-top:26px}}@media (max-width:640px){.big-container .margin-top[data-v-460f6f00]{margin-top:20px}}@media (max-width:500px){.big-container .margin-top[data-v-460f6f00]{margin-top:16px}.big-container .titleArr[data-v-460f6f00]{display:none}.big-container .content[data-v-460f6f00]{margin-top:-11px;top:48%!important}.big-container .help[data-v-460f6f00],.big-container .title[data-v-460f6f00]{display:none}}


/* CenterImg.DXnf81xx.css */
@media (max-width:960px){.center-container[data-v-8820be69]{flex-direction:column}}.center[data-v-8820be69]{height:100%;width:40%}@media (max-width:960px){.center[data-v-8820be69]{margin:0 auto 4rem;width:70%}}@media (max-width:768px){.center[data-v-8820be69]{margin:0 0 3rem;width:80%}}.left[data-v-8820be69]{margin-right:3rem;width:calc(30% - 3rem)}@media (max-width:960px){.left[data-v-8820be69]{margin-bottom:3rem;margin-left:0;padding-left:10%;width:100%}}@media (max-width:768px){.left[data-v-8820be69]{padding-left:0}}.right[data-v-8820be69]{margin-left:3rem;width:calc(30% - 3rem)}@media (max-width:960px){.right[data-v-8820be69]{margin-bottom:3rem;margin-left:0;padding-left:10%;width:100%}}@media (max-width:768px){.right[data-v-8820be69]{padding-left:0}}


/* Company.kZUl7sUL.css */
.icon[data-v-90dc0517]{height:4rem;margin-right:1.14rem;width:4rem}.about-view .right-view[data-v-90dc0517]{margin-top:2.86rem}@media (max-width:1200px){.about-view .right-view[data-v-90dc0517]{flex-direction:column}}@media (max-width:980px){.about-view .right-view[data-v-90dc0517]{flex-direction:row}}@media (max-width:560px){.about-view .right-view[data-v-90dc0517]{flex-direction:column}}@media (max-width:1200px){.about-view .right-view .w-6[data-v-90dc0517]{display:flex;justify-content:center;margin-bottom:2rem;width:100%!important}}@media (max-width:980px){.about-view .right-view .w-6[data-v-90dc0517]{width:50%!important}}@media (max-width:560px){.about-view .right-view .w-6[data-v-90dc0517]{display:flex;justify-content:center;width:100%!important}}@media (max-width:1200px){.about-view .right-view .w-6[data-v-90dc0517]:last-child{margin-bottom:0}}.about-view .right-box[data-v-90dc0517]{width:calc(100% - 5.4rem)}


/* LeftImg.CTrsiTFs.css */
@media (max-width:960px){.left-container[data-v-7c60ee20]{flex-direction:column}}.left[data-v-7c60ee20]{height:100%;margin-right:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.left[data-v-7c60ee20]{margin:0 auto 4rem;width:70%}}@media (max-width:768px){.left[data-v-7c60ee20]{margin:0 0 3rem;width:80%}}.right[data-v-7c60ee20]{margin-left:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.right[data-v-7c60ee20]{margin-bottom:3rem;margin-left:0;padding-left:10%;width:100%}}@media (max-width:768px){.right[data-v-7c60ee20]{padding-left:0}}


/* Model.Dg9Mp82g.css */
@media (max-width:620px){.model-container[data-v-dc1ea98b]{flex-direction:column}}.model-view[data-v-dc1ea98b]{width:calc(33.33% - 2.5rem)}@media (max-width:620px){.model-view[data-v-dc1ea98b]{margin-bottom:3rem;margin-left:0;margin-right:0;width:100%}}.model-view .model[data-v-dc1ea98b]{background:#d9d9d9;border-radius:0}.model-view[data-v-dc1ea98b]:first-child{width:calc(33.33% - 2.5rem)}@media (max-width:620px){.model-view[data-v-dc1ea98b]:first-child{margin-right:0;width:100%}}.model-view[data-v-dc1ea98b]:last-child{width:calc(33.33% - 2.5rem)}@media (max-width:620px){.model-view[data-v-dc1ea98b]:last-child{margin-bottom:0;margin-left:0;width:100%}}


/* MoreSolution.GlkAWVP3.css */
.more-solution-container[data-v-3fecdc4a]{gap:2.5rem;justify-content:center!important}.more-solution-view[data-v-3fecdc4a]{background:#fff;margin-right:0;padding:1.8rem;width:calc(33.33333% - 1.66667rem)}@media (max-width:1200px){.more-solution-view[data-v-3fecdc4a]{display:flex;justify-content:center;margin-bottom:3rem;margin-right:0;width:100%}}@media (max-width:900px){.more-solution-view[data-v-3fecdc4a]{display:block;margin-bottom:3rem;width:100%}}.more-solution-view .icon[data-v-3fecdc4a]{height:4rem;margin-bottom:2rem;width:4rem}@media (max-width:1200px){.more-solution-view .icon[data-v-3fecdc4a]{margin-right:3rem}}@media (max-width:900px){.more-solution-view .icon[data-v-3fecdc4a]{margin-right:0}}.more-solution-view .more-solution-content[data-v-3fecdc4a]{border-radius:0;display:flex;flex-direction:column;height:calc(100% - 6rem);justify-content:space-between}@media (max-width:1200px){.more-solution-view .more-solution-content[data-v-3fecdc4a]{display:flex;flex-direction:column;height:auto;justify-content:center;width:50%!important}}@media (max-width:900px){.more-solution-view .more-solution-content[data-v-3fecdc4a]{height:auto;width:100%!important}}.more-solution-view .arrow-icon[data-v-3fecdc4a]{background:#e6e6e9;text-align:center}.more-solution-view .arrow-icon img[data-v-3fecdc4a]{height:1.71rem;margin:.5rem;width:1.71rem}.more-solution-view[data-v-3fecdc4a]:last-child{margin-right:0}


/* RightImg.BoQnj3Vk.css */
@media (max-width:960px){.right-container[data-v-9ff32cce]{flex-direction:column-reverse}}.left[data-v-9ff32cce]{margin-right:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.left[data-v-9ff32cce]{margin-bottom:2rem;margin-right:0;padding-left:10%;text-align:center;width:100%}}@media (max-width:768px){.left[data-v-9ff32cce]{margin-bottom:2rem;padding-left:0}}@media (max-width:600px){.left[data-v-9ff32cce]{margin-right:0;text-align:left;width:100%}}.right[data-v-9ff32cce]{margin-left:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.right[data-v-9ff32cce]{margin:0 auto 4rem;width:70%}}@media (max-width:768px){.right[data-v-9ff32cce]{margin:0 0 3rem;width:80%}}


/* Send.DMylPRm-.css */
.contact-container[data-v-7de14cd5]{background-color:#3eaa87!important;background-image:url(/shared/6-1.png);background-position:50%;background-repeat:repeat;background-size:cover}@media (max-width:1280px){.contact-container[data-v-7de14cd5]{flex-wrap:wrap}}.contact[data-v-7de14cd5]{background:#fff;border-radius:1rem;margin-left:2rem;padding:2.5rem;width:calc(50% - 2rem)}@media (max-width:1280px){.contact[data-v-7de14cd5]{margin-left:0;width:100%}}@media (max-width:500px){.contact[data-v-7de14cd5]{padding:1.5rem}}[data-v-7de14cd5] .contact-btn{background-color:#fff;border:none;color:#3eaa87}


/* about.B-4FOitp.css */
@media (max-width:960px){.about-bg .content{top:42%!important}}.choose-view[data-v-258c3c88]{width:25%}@media (max-width:1200px){.choose-view[data-v-258c3c88]{margin-bottom:3rem;width:50%}}@media (max-width:500px){.choose-view[data-v-258c3c88]{margin-bottom:3rem;width:100%}}.choose-view .icon[data-v-258c3c88]{height:4rem;width:100%}@media (max-width:500px){.choose-view .icon[data-v-258c3c88]{margin-right:0}}@media (max-width:1200px){.choose-container[data-v-258c3c88]:nth-child(3),.choose-container[data-v-258c3c88]:nth-child(4){margin-bottom:0}}@media (max-width:500px){.choose-container[data-v-258c3c88]:nth-child(4){margin-bottom:0}}.choose-view[data-v-258c3c88]:last-child{margin-right:0}.product-view[data-v-258c3c88]{margin-bottom:4rem;margin-right:2rem;width:calc(50% - 2rem)}@media (max-width:800px){.product-view[data-v-258c3c88]{margin-right:0;width:100%}}


/* battery-management-systems-bms.DvbYLMpq.css */
@media (max-width:960px){.trading-bg .content{top:42%!important}}@media (max-width:680px){.what-container .what-view[data-v-cde57dea]{flex-direction:column}}.what-container .what-box[data-v-cde57dea]{width:calc(50% - 2.5rem)}@media (max-width:680px){.what-container .what-box[data-v-cde57dea]{width:100%}}.what-container .what-left[data-v-cde57dea]{margin-right:2.5rem}@media (max-width:680px){.what-container .what-left[data-v-cde57dea]{margin-bottom:2.5rem;margin-right:0}}.what-container .what-right[data-v-cde57dea]{margin-left:2.5rem}@media (max-width:680px){.what-container .what-right[data-v-cde57dea]{margin-left:0}}.key-view[data-v-cde57dea]{margin-bottom:2rem;width:calc(33.33333% - 6.33333rem)}@media (max-width:1200px){.key-view[data-v-cde57dea]{width:calc(100% - 5rem)}}.key-view .icon[data-v-cde57dea]{height:4rem;margin-right:1rem;width:4rem}.key-view[data-v-cde57dea]:last-child{margin-right:0}


/* contact.C3wKsACi.css */
.office-view[data-v-5c4cb78e]{background:#f6f6f6;margin-bottom:2rem;padding:2rem;width:calc(50% - 1rem)}@media (max-width:960px){.office-view[data-v-5c4cb78e]{width:100%}}.office-view .icon[data-v-5c4cb78e]{height:1.71rem;margin-right:1.2rem;width:1.71rem}.office-view .line[data-v-5c4cb78e]{background:#3eaa87;height:4px;margin-bottom:2rem;margin-top:.5rem;width:30%}.office-view .lable[data-v-5c4cb78e]{width:calc(100% - 2.91rem)}.office-view[data-v-5c4cb78e]:nth-child(odd){margin-right:2rem}@media (max-width:960px){.office-view[data-v-5c4cb78e]:nth-child(odd){margin-right:0}}.office-view[data-v-5c4cb78e]:nth-child(2n){margin-right:0}


/* energy-storage.D2x-DeCv.css */
@media (max-width:960px){.solution-bg .content{top:42%!important}}@media (max-width:680px){.what-container .what-view[data-v-b8bd3f23]{flex-direction:column}}.what-container .what-box[data-v-b8bd3f23]{width:calc(50% - 2.5rem)}@media (max-width:680px){.what-container .what-box[data-v-b8bd3f23]{width:100%}}.what-container .what-left[data-v-b8bd3f23]{margin-right:2.5rem}@media (max-width:680px){.what-container .what-left[data-v-b8bd3f23]{margin-bottom:2.5rem;margin-right:0}}.what-container .what-right[data-v-b8bd3f23]{margin-left:2.5rem}@media (max-width:680px){.what-container .what-right[data-v-b8bd3f23]{margin-left:0}}.key-view[data-v-b8bd3f23]{margin-bottom:2rem;width:calc(50% - 6rem)}@media (max-width:1200px){.key-view[data-v-b8bd3f23]{width:calc(100% - 5rem)}}.key-view .icon[data-v-b8bd3f23]{height:4rem;margin-right:1rem;width:4rem}.key-view[data-v-b8bd3f23]:nth-child(odd){margin-right:2rem}@media (max-width:1200px){.key-view[data-v-b8bd3f23]:nth-child(odd){margin-right:0}}.key-view[data-v-b8bd3f23]:nth-child(2n){margin-right:0}


/* entry.iqmv1QxR.css */


/* error-404.JekaaCis.css */


/* error-500.CNP9nqm1.css */


/* index.Dna-2DjF.css */
.bg[data-v-4138d5de]{background:url(/shared/bg.png) center/cover no-repeat}.main.home-page[data-v-4138d5de] .home-bg.big-container[data-v-460f6f00]{height:100vh;min-height:720px;overflow:hidden}.main.home-page[data-v-4138d5de] .home-bg.big-container[data-v-460f6f00]>div:first-child,.main.home-page[data-v-4138d5de] .home-bg.big-container[data-v-460f6f00]>div:first-child img{height:100%;width:100%}.main.home-page[data-v-4138d5de] .home-bg.big-container[data-v-460f6f00]>div:first-child img{object-fit:cover;object-position:center}.icon[data-v-4138d5de]{height:4rem;margin-right:1.14rem;width:4rem}[data-v-4138d5de] .home-bg .titleArr,[data-v-4138d5de] .home-bg .href{text-align:center!important}@media (max-width:768px){.main.home-page[data-v-4138d5de] .home-bg.big-container[data-v-460f6f00]{min-height:560px}}@media (max-width:500px){[data-v-4138d5de] .home-bg .href{display:none}.main.home-page[data-v-4138d5de] .home-bg.big-container[data-v-460f6f00]{min-height:480px}}


/* microgrid.xoxKW9zq.css */
@media (max-width:960px){.pv-bg .content{top:42%!important}}


/* product-b1.BHM7uv_g.css */
.bg[data-v-231a5c34]{background:url(/products/shared/bg.png);background-size:cover;padding-top:7rem}@media (max-width:960px){.bg[data-v-231a5c34]{padding-top:5rem}.bg .bg-view[data-v-231a5c34]{margin-left:20%}}.line[data-v-231a5c34]{background:#3eaa87;border-radius:0;height:.29rem;margin-bottom:2rem;margin-top:2rem;width:20%}[data-v-231a5c34] .p-datatable-table{width:100%}[data-v-231a5c34] .table{margin-bottom:0}[data-v-231a5c34] .p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border:1px solid #fff;text-align:center}[data-v-231a5c34] .p-datatable .p-column-header-content{justify-content:center}[data-v-231a5c34] .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border:1px solid #fff;text-align:center}[data-v-231a5c34] .p-frozen-column{background:#e2e3e5}[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr{background:#f6f6f8}[data-v-231a5c34] .p-datatable .p-datatable-thead>tr>th{background:#e2e3e5;font-size:1.43rem;font-weight:700}@media (max-width:1440px){[data-v-231a5c34] .p-datatable .p-datatable-thead>tr>th{font-size:15px}}@media (max-width:1280px){[data-v-231a5c34] .p-datatable .p-datatable-thead>tr>th{font-size:13px}}@media (max-width:640px){[data-v-231a5c34] .p-datatable .p-datatable-thead>tr>th{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-231a5c34] .tb1 .p-datatable-thead>tr>th{background:#4db896;color:#fff}[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:1.43rem;font-weight:700;padding-left:30px}@media (max-width:1440px){[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:15px}}@media (max-width:1280px){[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px}}@media (max-width:640px){[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-231a5c34] .tb9 .p-datatable-thead>tr>th .p-column-header-content .p-column-title{font-weight:400}[data-v-231a5c34] .tb9 .p-datatable-thead>tr>th.tb9-row1 .p-column-header-content .p-column-title{font-weight:700;padding-left:15px}[data-v-231a5c34] .tb9 .p-datatable-thead>tr>th.tb9-row{background:#f6f6f8}[data-v-231a5c34] .tb10 .p-datatable-tbody>tr>td.tb10-col{font-weight:400!important}[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:1.43rem}@media (max-width:1440px){[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:15px}}@media (max-width:1280px){[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:13px}}@media (max-width:640px){[data-v-231a5c34] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:13px;padding-bottom:8px;padding-top:8px}}ul li[data-v-231a5c34]::marker{color:#3eaa87}ul[data-v-231a5c34]{margin-bottom:2rem;margin-left:1rem}ul li[data-v-231a5c34]{margin-top:8px}


/* product-b261.DgUfJmow.css */
.bg[data-v-f995efef]{background:url(/products/shared/bg.png);background-size:cover;padding-top:7rem}@media (max-width:960px){.bg[data-v-f995efef]{padding-top:5rem}.bg .bg-view[data-v-f995efef]{margin-left:20%}}.line[data-v-f995efef]{background:#3eaa87;border-radius:0;height:.29rem;margin-bottom:2rem;margin-top:2rem;width:20%}[data-v-f995efef] .p-datatable-table{width:100%}[data-v-f995efef] .table{margin-bottom:0}[data-v-f995efef] .p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border:1px solid #fff;text-align:center}[data-v-f995efef] .p-datatable .p-column-header-content{justify-content:center}[data-v-f995efef] .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border:1px solid #fff;text-align:center}[data-v-f995efef] .p-frozen-column{background:#e2e3e5}[data-v-f995efef] .p-datatable.p-datatable-striped .p-datatable-tbody>tr{background:#f6f6f8}[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:first-child,[data-v-f995efef] .p-datatable:not(.tb9) .p-datatable-thead>tr>th{background:#e2e3e5;font-size:1.43rem;font-weight:700}@media (max-width:1440px){[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:first-child,[data-v-f995efef] .p-datatable:not(.tb9) .p-datatable-thead>tr>th{font-size:15px}}@media (max-width:1280px){[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:first-child,[data-v-f995efef] .p-datatable:not(.tb9) .p-datatable-thead>tr>th{font-size:13px}}@media (max-width:640px){[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:first-child,[data-v-f995efef] .p-datatable:not(.tb9) .p-datatable-thead>tr>th{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-f995efef] .tb1 .p-datatable-thead>tr>th{background:#4db896;color:#fff}[data-v-f995efef] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:1.43rem;font-weight:700;padding-left:30px}@media (max-width:1440px){[data-v-f995efef] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:15px}}@media (max-width:1280px){[data-v-f995efef] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px}}@media (max-width:640px){[data-v-f995efef] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-f995efef] .tb9 .p-datatable-thead>tr>th .p-column-header-content .p-column-title{font-weight:400}[data-v-f995efef] .tb9 .p-datatable-thead>tr>th.tb9-row1 .p-column-header-content .p-column-title{font-weight:700;padding-left:15px}[data-v-f995efef] .tb9 .p-datatable-thead>tr>th.tb9-row{background:#f6f6f8}[data-v-f995efef] .tb10 .p-datatable-tbody>tr>td.tb10-col{font-weight:400!important}[data-v-f995efef] .tb11 .p-datatable-tbody>tr>td.tb11-col{font-weight:400!important}[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-f995efef] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:1.43rem}@media (max-width:1440px){[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-f995efef] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:15px}}@media (max-width:1280px){[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-f995efef] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:13px}}@media (max-width:640px){[data-v-f995efef] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-f995efef] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-f995efef] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-f995efef] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-f995efef] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:13px;padding-bottom:8px;padding-top:8px}}ul li[data-v-f995efef]::marker{color:#3eaa87}ul[data-v-f995efef]{margin-bottom:2rem;margin-left:1rem}ul li[data-v-f995efef]{margin-top:8px}


/* product-c2612.SArOxUWc.css */
.bg[data-v-b4972af8]{background:url(/products/shared/bg.png);background-size:cover;padding-top:7rem}@media (max-width:960px){.bg[data-v-b4972af8]{padding-top:5rem}.bg .bg-view[data-v-b4972af8]{margin-left:20%}}.line[data-v-b4972af8]{background:#3eaa87;border-radius:0;height:.29rem;margin-bottom:2rem;margin-top:2rem;width:20%}[data-v-b4972af8] .p-datatable-table{width:100%}[data-v-b4972af8] .table{margin-bottom:0}[data-v-b4972af8] .p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border:1px solid #fff;text-align:center}[data-v-b4972af8] .p-datatable .p-column-header-content{justify-content:center}[data-v-b4972af8] .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border:1px solid #fff;text-align:center}[data-v-b4972af8] .p-frozen-column{background:#e2e3e5}[data-v-b4972af8] .p-datatable.p-datatable-striped .p-datatable-tbody>tr{background:#f6f6f8}[data-v-b4972af8] .p-datatable .p-datatable-thead>tr>th{background:#e2e3e5;font-size:1.43rem;font-weight:700}@media (max-width:1440px){[data-v-b4972af8] .p-datatable .p-datatable-thead>tr>th{font-size:15px}}@media (max-width:1280px){[data-v-b4972af8] .p-datatable .p-datatable-thead>tr>th{font-size:13px}}@media (max-width:640px){[data-v-b4972af8] .p-datatable .p-datatable-thead>tr>th{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-b4972af8] .tb1 .p-datatable-thead>tr>th{background:#4db896;color:#fff}[data-v-b4972af8] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:1.43rem;font-weight:700;padding-left:30px}@media (max-width:1440px){[data-v-b4972af8] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:15px}}@media (max-width:1280px){[data-v-b4972af8] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px}}@media (max-width:640px){[data-v-b4972af8] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-b4972af8] .tb9 .p-datatable-thead>tr>th .p-column-header-content .p-column-title{font-weight:400}[data-v-b4972af8] .tb9 .p-datatable-thead>tr>th.tb9-row1 .p-column-header-content .p-column-title{font-weight:700;padding-left:15px}[data-v-b4972af8] .tb9 .p-datatable-thead>tr>th.tb9-row{background:#f6f6f8}[data-v-b4972af8] .tb10 .p-datatable-tbody>tr>td.tb10-col{font-weight:400!important}[data-v-b4972af8] .tb11 .p-datatable-tbody>tr>td.tb11-col{font-weight:400!important}[data-v-b4972af8] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-b4972af8] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:1.43rem}@media (max-width:1440px){[data-v-b4972af8] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-b4972af8] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:15px}}@media (max-width:1280px){[data-v-b4972af8] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-b4972af8] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:13px}}@media (max-width:640px){[data-v-b4972af8] .p-datatable.tb9 .p-datatable-thead>tr>th:nth-child(2),[data-v-b4972af8] .tb10 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb10.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb11 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-b4972af8] .tb11.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-b4972af8] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb5.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-b4972af8] .tb7.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2){font-size:13px;padding-bottom:8px;padding-top:8px}}ul li[data-v-b4972af8]::marker{color:#3eaa87}ul[data-v-b4972af8]{margin-bottom:2rem;margin-left:1rem}ul li[data-v-b4972af8]{margin-top:8px}


/* product-v5016.C5_AkB6n.css */
.bg[data-v-1c0b0a76]{background:url(/products/shared/bg.png);background-size:cover;padding-top:5rem}@media (max-width:960px){.bg[data-v-1c0b0a76]{padding-top:4rem}.bg .bg-view[data-v-1c0b0a76]{margin-left:20%}}.line[data-v-1c0b0a76]{background:#3eaa87;border-radius:0;height:.29rem;margin-bottom:2rem;margin-top:2rem;width:20%}[data-v-1c0b0a76] .p-datatable-table{width:100%}[data-v-1c0b0a76] .table{margin-bottom:0}[data-v-1c0b0a76] .p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border:1px solid #fff;text-align:center}[data-v-1c0b0a76] .p-datatable .p-column-header-content{justify-content:center}[data-v-1c0b0a76] .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border:1px solid #fff;text-align:center}[data-v-1c0b0a76] .p-frozen-column{background:#e2e3e5}[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr{background:#f6f6f8}[data-v-1c0b0a76] .tb2 .p-datatable-thead{display:none!important}[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{background:#e2e3e5;font-size:1.43rem;font-weight:700}@media (max-width:1440px){[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{font-size:15px}}@media (max-width:1280px){[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{font-size:13px}}@media (max-width:640px){[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-1c0b0a76] .tb1 .p-datatable-thead>tr>th{background:#4db896;color:#fff}[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:1.43rem;font-weight:700;padding-left:30px}@media (max-width:1440px){[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:15px}}@media (max-width:1280px){[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px}}@media (max-width:640px){[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-1c0b0a76] .tb4 .p-datatable-tbody>tr:not(tr:first-child,tr:nth-child(4))>td:first-child{font-weight:400}[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:1.43rem}@media (max-width:1440px){[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:15px}}@media (max-width:1280px){[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:13px}}@media (max-width:640px){[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:13px;padding-bottom:8px;padding-top:8px}}


/* project-cases.yrGQX2JE.css */


/* pv-storage-ev-charging.DkNo6-p2.css */
@media (max-width:960px){.pv-bg .content{top:42%!important}}@media (max-width:680px){.what-container .what-view[data-v-7f9c1746]{flex-direction:column}}.what-container .what-box[data-v-7f9c1746]{width:calc(50% - 2.5rem)}@media (max-width:680px){.what-container .what-box[data-v-7f9c1746]{width:100%}}.what-container .what-left[data-v-7f9c1746]{margin-right:2.5rem}@media (max-width:680px){.what-container .what-left[data-v-7f9c1746]{margin-bottom:2.5rem;margin-right:0}}.what-container .what-right[data-v-7f9c1746]{margin-left:2.5rem}@media (max-width:680px){.what-container .what-right[data-v-7f9c1746]{margin-left:0}}.key-view[data-v-7f9c1746]{margin-bottom:2rem;width:calc(50% - 6rem)}@media (max-width:1200px){.key-view[data-v-7f9c1746]{width:calc(100% - 5rem)}}.key-view .icon[data-v-7f9c1746]{height:4rem;margin-right:1rem;width:4rem}.key-view[data-v-7f9c1746]:nth-child(odd){margin-right:2rem}@media (max-width:1200px){.key-view[data-v-7f9c1746]:nth-child(odd){margin-right:0}}.key-view[data-v-7f9c1746]:nth-child(2n){margin-right:0}


/* quote.DgFuAnQd.css */


/* services.DBWahrUA.css */


/* solution.CL903wNL.css */
@media (max-width:960px){.solution-bg .content{top:42%!important}}


/* inline-critical */
.grid{display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem;margin-top:-.5rem}.grid>[class*=col]{box-sizing:border-box}.block{display:block!important}.inline{display:inline!important}.flex{display:flex!important}.text-center{text-align:center!important}.text-left{text-align:left!important}.capitalize{text-transform:capitalize!important}.flex-column{flex-direction:column!important}.flex-wrap{flex-wrap:wrap!important}.justify-content-start{justify-content:flex-start!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-center{align-items:center!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-8{margin-top:5rem!important}.ml-3{margin-left:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.w-full{width:100%!important}.w-6{width:50%!important}.relative{position:relative!important}.sticky{position:sticky!important}.cursor-pointer{cursor:pointer!important}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translateX(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateX(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translateX(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateX(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translateX(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateX(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translateX(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateX(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{opacity:0;transform:perspective(2000px) rotateY(-100deg)}to{opacity:1;transform:perspective(2000px) rotateY(0)}}@keyframes flipright{0%{opacity:0;transform:perspective(2000px) rotateY(100deg)}to{opacity:1;transform:perspective(2000px) rotateY(0)}}@keyframes flipup{0%{opacity:0;transform:perspective(2000px) rotateX(-100deg)}to{opacity:1;transform:perspective(2000px) rotateX(0)}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}
@font-face{font-display:block;font-family:primeicons;font-style:normal;font-weight:400;src:url(/fonts/primeicons.woff2) format("woff2"),url(/fonts/primeicons.woff) format("woff"),url(/fonts/primeicons.ttf) format("truetype"),url(/fonts/primeicons.svg?#primeicons) format("svg")}.pi{font-family:primeicons;speak:none;display:inline-block;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pi:before{--webkit-backface-visibility:hidden;backface-visibility:hidden}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.pi-arrow-right:before{content:"\e91b"}
@font-face{font-family:Poppins;font-display:swap;font-style:normal;font-weight:400;src:local(""),url(/fonts/poppins-regular.woff2) format("woff2"),url(/fonts/poppins-regular.woff) format("woff")}@font-face{font-family:Poppins;font-display:swap;font-style:normal;font-weight:500;src:local(""),url(/fonts/poppins-500.woff2) format("woff2"),url(/fonts/poppins-500.woff) format("woff")}@font-face{font-family:Poppins;font-display:swap;font-style:normal;font-weight:600;src:local(""),url(/fonts/poppins-600.woff2) format("woff2"),url(/fonts/poppins-600.woff) format("woff")}@font-face{font-family:Poppins;font-display:swap;font-style:normal;font-weight:700;src:local(""),url(/fonts/poppins-700.woff2) format("woff2"),url(/fonts/poppins-700.woff) format("woff")}@font-face{font-family:Inter;font-display:swap;font-style:normal;font-weight:400;src:local(""),url(/fonts/inter-regular.woff) format("woff")}.layout-light{--sidebar-shadow:0px 4px 50px #d9ddfc;--sidebar-border:1px solid transparent;--card-shadow:0px 4px 30px rgba(221,224,255,.54)}*{box-sizing:border-box}html{font-size:14px;height:100%}body{background:var(--surface-ground);color:var(--text-color);font-family:var(--font-family);font-weight:400;min-height:100%;padding:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{text-decoration:none}.layout-container{min-height:100vh}.layout-colorscheme-menu{--logo-color:var(--primary-color);--menu-bg:var(--surface-overlay);--root-menuitem-text-color:var(--primary-color);--menuitem-text-color:var(--text-color);--menuitem-icon-color:var(--primary-color);--menuitem-hover-bg-color:var(--surface-hover);--popup-submenu-item-text-color:var(--text-color);--popup-submenu-item-icon-color:var(--primary-color);--popup-submenu-item-hover-bg-color:var(--surface-hover)}@media screen and (min-width:992px){.layout-container.layout-static .layout-content-wrapper{transition:margin-left var(--transition-duration)}}@media screen and (max-width:991px){.layout-container .layout-content-wrapper{margin-left:0}}@media screen and (min-width:1960px){.layout-content{margin-left:0;margin-right:0;width:100%}}h1,h2,h4{color:var(--surface-900);font-family:inherit;font-weight:600;line-height:1.2;margin:1.5rem 0 1rem}h1:first-child,h2:first-child,h4:first-child{margin-top:0}h1{font-size:2.5rem}h2{font-size:2rem}h4{font-size:1.5rem}p{line-height:1.5;margin:0 0 1rem}p:last-child{margin-bottom:0}.card{background:var(--surface-card);border-radius:12px}.card:last-child{margin-bottom:0}*{padding:0}*,h1,h2,h4,p{margin:0}.pointer{cursor:pointer}img{vertical-align:top}html{font-size:13.5px}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Microsoft Yahei,sans-serif;margin:0}body *{box-sizing:border-box;flex-shrink:0}#app{height:100vh;width:100vw}.logo{height:3.14rem;width:10.29rem}@media (max-width:1280px){.logo{height:37px;width:91px}}.btn-1{cursor:pointer;flex-flow:row-reverse;font-family:Poppins;font-weight:500;padding:.76rem 1.25rem;position:relative;transition:all .5s ease;z-index:1}@media (max-width:1280px){.btn-1{padding:.56rem .85rem}}@media (max-width:1180px){.btn-1{padding:.56rem .65rem}}@media (max-width:640px){.btn-1{padding:.46rem .65rem}}.btn-1:hover:before{left:0;width:100%}.btn-1:active{transform:translateY(4px)}.btn-1 .pi.p-button-icon{align-items:center;border-radius:50%;display:flex;height:1.5rem;justify-content:center;margin-left:.63rem;margin-right:0;width:1.5rem}.label-114{color:#fff;font-family:Poppins;font-size:1.13rem;font-weight:500;line-height:1.71rem;word-break:break-word}@media (max-width:1440px){.label-114{font-size:1.1rem;line-height:1.4rem}}@media (max-width:1280px){.label-114{font-size:1rem;line-height:1.4rem}}@media (max-width:640px){.label-114{font-size:12px;line-height:18px}}.label-143{color:#1f1f1f;font-family:Poppins;font-size:1.43rem;font-weight:500;line-height:2rem;word-break:break-word}@media (max-width:1440px){.label-143{font-size:18px;line-height:26px}}@media (max-width:1280px){.label-143{font-size:16px;line-height:22px}}@media (max-width:640px){.label-143{font-size:14px;line-height:20px}}.label-229{color:#1f1f1f;font-family:Inter;font-size:2.29rem;font-weight:700;line-height:3.43rem;word-break:break-word}@media (max-width:1440px){.label-229{font-size:24px;line-height:32px}}@media (max-width:1280px){.label-229{font-size:22px;line-height:26px}}@media (max-width:640px){.label-229{font-size:14px;line-height:18px}}.label-325{color:#121212;font-family:Poppins;font-size:3.25rem;font-weight:600;line-height:4.25rem;word-break:break-word}@media (max-width:1440px){.label-325{font-size:32px;line-height:46px}}@media (max-width:1280px){.label-325{font-size:28px;line-height:38px}}@media (max-width:1024px){.label-325{font-size:26px;line-height:36px}}.label-457{color:#fff;font-family:Inter;font-size:4.57rem;font-weight:600;line-height:6.29rem;word-break:break-word}@media (max-width:1440px){.label-457{font-size:48px;line-height:64px}}@media (max-width:1280px){.label-457{font-size:40px;line-height:52px}}@media (max-width:1024px){.label-457{font-size:34px;line-height:42px}}@media (max-width:768px){.label-457{font-size:26px;line-height:32px}}@media (max-width:640px){.label-457{font-size:21px;line-height:27px}}@media (max-width:500px){.label-457{font-size:18px;line-height:21px}}.plr{padding-left:17.29rem;padding-right:17.29rem}@media (max-width:1440px){.plr{padding-left:160px;padding-right:160px}}@media (max-width:1280px){.plr{padding-left:140px;padding-right:140px}}@media (max-width:1024px){.plr{padding-left:80px;padding-right:80px}}@media (max-width:768px){.plr{padding-left:60px;padding-right:60px}}@media (max-width:640px){.plr{padding-left:30px;padding-right:30px}}@media (max-width:500px){.plr{padding-left:26px;padding-right:26px}}.ptb{color:#fff;padding-bottom:12rem;padding-top:12rem}@media (max-width:1440px){.ptb{padding-bottom:120px;padding-top:120px}}@media (max-width:1280px){.ptb{padding-bottom:107px;padding-top:107px}}@media (max-width:1024px){.ptb{padding-bottom:85px;padding-top:85px}}@media (max-width:768px){.ptb{padding-bottom:64px;padding-top:64px}}@media (max-width:640px){.ptb{padding-bottom:53px;padding-top:53px}}@media (max-width:500px){.ptb{padding-bottom:42px;padding-top:42px}}section{background:#fff}.padding-t-6{padding-top:6rem}@media (max-width:1440px){.padding-t-6{padding-top:60px}}@media (max-width:1024px){.padding-t-6{padding-top:48px}}@media (max-width:768px){.padding-t-6{padding-top:28px}}@media (max-width:640px){.padding-t-6{padding-top:24px}}.padding-b-6{padding-bottom:6rem}@media (max-width:1440px){.padding-b-6{padding-bottom:60px}}@media (max-width:1024px){.padding-b-6{padding-bottom:48px}}@media (max-width:768px){.padding-b-6{padding-bottom:28px}}@media (max-width:640px){.padding-b-6{padding-bottom:24px}}.FFFFFF{background:#fff}label{color:#000;word-break:break-word}.fitImg{height:auto;max-height:100%;max-width:100%;width:auto}.ul-item{color:#121212;padding-top:1.13rem}.mt-8{margin-top:4rem!important}@media (max-width:1200px){.mt-8{margin-top:3rem!important}}
.layout-content[data-v-2f95327e]{margin-top:-100px}
[data-v-90847102] .p-megamenu{background-color:transparent;border:none;display:flex}[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#fff;font-size:16px;font-weight:500}@media (max-width:1360px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{font-size:14px}}@media (max-width:1200px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{font-size:12px}}@media (max-width:960px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#1f1f1f}}@media (max-width:960px){[data-v-90847102] .p-megamenu-root-list{background:#fff}}[data-v-90847102] .p-megamenu-panel{left:auto;min-width:24rem}@media (max-width:960px){[data-v-90847102] .p-megamenu-panel{min-width:100%}}[data-v-90847102] #menu_1 .p-megamenu-panel{min-width:18rem}[data-v-90847102] #menu_1 .p-megamenu-col-6{min-width:18rem}[data-v-90847102] #menu_2 .p-megamenu-col-6{min-width:24rem}[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#fff}@media (max-width:960px){[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#1f1f1f}}@media (max-width:960px){[data-v-90847102] .p-megamenu.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem .65rem;width:100%}}[data-v-90847102] .p-megamenu-grid{flex-direction:column}[data-v-90847102] .p-megamenu-col-4{min-width:17.5rem}[data-v-90847102] .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content{background:transparent;color:#3eaa87}[data-v-90847102] .p-megamenu-end{align-self:center;margin-left:auto}[data-v-90847102] .p-megamenu{color:#fff}@media (max-width:1080px){[data-v-90847102] .p-megamenu-start{align-items:center;display:flex;justify-content:flex-start}}.header[data-v-90847102]{background-color:transparent;padding:.75rem 3rem;position:relative;z-index:99}@media (max-width:1280px){.header[data-v-90847102]{padding:15px 30px}}.header h1[data-v-90847102]{margin:0;padding:0}.header .end[data-v-90847102]{display:flex}.line[data-v-90847102]{margin-left:2rem;margin-right:2rem}@media (max-width:1280px){.line[data-v-90847102]{margin-left:2rem;margin-right:2rem}}@media (max-width:1080px){.line[data-v-90847102]{margin-left:1rem;margin-right:1rem}}.p-megamenu-button[data-v-90847102]{display:none}@media (max-width:1080px){.p-megamenu-button[data-v-90847102]{display:block}}
.bg[data-v-1c0b0a76]{background:url(/products/shared/bg.png);background-size:cover;padding-top:5rem}@media (max-width:960px){.bg[data-v-1c0b0a76]{padding-top:4rem}.bg .bg-view[data-v-1c0b0a76]{margin-left:20%}}.line[data-v-1c0b0a76]{background:#3eaa87;border-radius:0 0 0 0;height:.29rem;margin-bottom:2rem;margin-top:2rem;width:20%}[data-v-1c0b0a76] .p-datatable-table{width:100%}[data-v-1c0b0a76] .table{margin-bottom:0}[data-v-1c0b0a76] .p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border:1px solid #fff;text-align:center}[data-v-1c0b0a76] .p-datatable .p-column-header-content{justify-content:center}[data-v-1c0b0a76] .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border:1px solid #fff;text-align:center}[data-v-1c0b0a76] .p-frozen-column{background:#e2e3e5}[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr{background:#f6f6f8}[data-v-1c0b0a76] .tb2 .p-datatable-thead{display:none!important}[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{background:#e2e3e5;font-size:1.43rem;font-weight:700}@media (max-width:1440px){[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{font-size:15px}}@media (max-width:1280px){[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{font-size:13px}}@media (max-width:640px){[data-v-1c0b0a76] .p-datatable .p-datatable-thead>tr>th{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-1c0b0a76] .tb1 .p-datatable-thead>tr>th{background:#4db896;color:#fff}[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:1.43rem;font-weight:700;padding-left:30px}@media (max-width:1440px){[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:15px}}@media (max-width:1280px){[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px}}@media (max-width:640px){[data-v-1c0b0a76] .p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:first-child{font-size:13px;padding-bottom:8px;padding-top:8px}}[data-v-1c0b0a76] .tb4 .p-datatable-tbody>tr:not(tr:first-child,tr:nth-child(4))>td:first-child{font-weight:400}[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:1.43rem}@media (max-width:1440px){[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:15px}}@media (max-width:1280px){[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:13px}}@media (max-width:640px){[data-v-1c0b0a76] .tb2.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb3.p-datatable.p-datatable-striped .p-datatable-tbody>tr>td:nth-child(2),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:first-child td:nth-child(3),[data-v-1c0b0a76] .tb4 .p-datatable-table .p-datatable-tbody tr:nth-child(4) td:nth-child(3),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:first-child>td:nth-child(2),[data-v-1c0b0a76] .tb4.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(4)>td:nth-child(2){font-size:13px;padding-bottom:8px;padding-top:8px}}
@media (max-width:960px){.left-container[data-v-7c60ee20]{flex-direction:column}}.left[data-v-7c60ee20]{height:100%;margin-right:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.left[data-v-7c60ee20]{margin:0 auto 4rem;width:70%}}@media (max-width:768px){.left[data-v-7c60ee20]{margin:0 0 3rem;width:80%}}.right[data-v-7c60ee20]{margin-left:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.right[data-v-7c60ee20]{margin-bottom:3rem;margin-left:0;padding-left:10%;width:100%}}@media (max-width:768px){.right[data-v-7c60ee20]{padding-left:0}}
@media (max-width:960px){.right-container[data-v-9ff32cce]{flex-direction:column-reverse}}.left[data-v-9ff32cce]{margin-right:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.left[data-v-9ff32cce]{margin-bottom:2rem;margin-right:0;padding-left:10%;text-align:center;width:100%}}@media (max-width:768px){.left[data-v-9ff32cce]{margin-bottom:2rem;padding-left:0}}@media (max-width:600px){.left[data-v-9ff32cce]{margin-right:0;text-align:left;width:100%}}.right[data-v-9ff32cce]{margin-left:2.5rem;width:calc(50% - 2.5rem)}@media (max-width:960px){.right[data-v-9ff32cce]{margin:0 auto 4rem;width:70%}}@media (max-width:768px){.right[data-v-9ff32cce]{margin:0 0 3rem;width:80%}}
@media (max-width:620px){.model-container[data-v-dc1ea98b]{flex-direction:column}}.model-view[data-v-dc1ea98b]{width:calc(33.33% - 2.5rem)}@media (max-width:620px){.model-view[data-v-dc1ea98b]{margin-bottom:3rem;margin-left:0;margin-right:0;width:100%}}.model-view .model[data-v-dc1ea98b]{background:#d9d9d9;border-radius:0 0 0 0}.model-view[data-v-dc1ea98b]:first-child{width:calc(33.33% - 2.5rem)}@media (max-width:620px){.model-view[data-v-dc1ea98b]:first-child{margin-right:0;width:100%}}.model-view[data-v-dc1ea98b]:last-child{width:calc(33.33% - 2.5rem)}@media (max-width:620px){.model-view[data-v-dc1ea98b]:last-child{margin-bottom:0;margin-left:0;width:100%}}
.label[data-v-16a6eab2]{color:#ababab}.contact-container[data-v-16a6eab2]{background-image:url(/shared/contact-band-bg.png);background-size:100% 100%}.logo-container[data-v-16a6eab2]{background-color:var(--blank-100);flex-direction:row;flex-wrap:wrap;padding-bottom:2rem}@media (max-width:768px){.logo-container[data-v-16a6eab2]{padding-top:5rem!important}.logo-container .logo[data-v-16a6eab2]{margin-bottom:2rem}}.logo-container label[data-v-16a6eab2]{border-right:1px solid #aaa;color:#fff;font-weight:500}.logo-container label[data-v-16a6eab2]:last-child{border-right:none}.floowUs[data-v-16a6eab2]{margin-bottom:1rem;margin-top:2rem}.floowUs[data-v-16a6eab2],.title[data-v-16a6eab2]{font-family:Poppins;font-weight:500}.title[data-v-16a6eab2]{color:#fff}.page[data-v-16a6eab2]{margin-top:.75rem}.row-1[data-v-16a6eab2]{width:25%}.row-2[data-v-16a6eab2]{width:35%}.row-3[data-v-16a6eab2]{width:40%}@media (max-width:1200px){.row-1[data-v-16a6eab2],.row-2[data-v-16a6eab2],.row-3[data-v-16a6eab2]{width:50%}}@media (max-width:768px){.row-1[data-v-16a6eab2],.row-2[data-v-16a6eab2],.row-3[data-v-16a6eab2]{width:100%}}.row-2[data-v-16a6eab2]{padding-left:8%}@media (max-width:768px){.row-2[data-v-16a6eab2]{margin-top:2rem;padding-left:0}}.row-3[data-v-16a6eab2]{padding-left:10%}@media (max-width:1200px){.row-3[data-v-16a6eab2]{margin-top:3rem;padding-left:0}}.right-link[data-v-16a6eab2]{margin-left:3rem}@media (max-width:1200px){.right-link[data-v-16a6eab2]{margin-left:5rem}}.quote-container[data-v-16a6eab2]{background-image:url(/shared/about-quote-bg.png);display:none}@media (max-width:1200px){.quote-container .quote-view[data-v-16a6eab2]{align-items:flex-start!important;flex-direction:column}.quote-container .btn-container[data-v-16a6eab2]{margin-top:3rem}}[data-v-16a6eab2] .contact-btn{background-color:#fff;border:none;color:#3eaa87}
.bg[data-v-4138d5de]{background:url(/shared/bg.png) center/cover no-repeat!important}.main.home-page[data-v-4138d5de] .home-bg.big-container{height:100vh;min-height:720px;overflow:hidden}.main.home-page[data-v-4138d5de] .home-bg.big-container>div:first-child,.main.home-page[data-v-4138d5de] .home-bg.big-container>div:first-child img{height:100%;width:100%}.main.home-page[data-v-4138d5de] .home-bg.big-container>div:first-child img{object-fit:cover;object-position:center}.header .logo{height:3.45rem!important;width:13.25rem!important;display:flex!important;align-items:center!important;overflow:visible!important}.header .logo img,.footer .logo img{height:100%!important;object-fit:contain!important;width:100%!important;display:block!important;opacity:1!important;visibility:visible!important;max-width:none!important}.footer .logo{height:3.9rem!important;width:15rem!important;display:block!important;visibility:visible!important}@media (max-width:1280px){.header .logo{height:2.8rem!important;width:10.75rem!important}}@media (max-width:768px){.main.home-page[data-v-4138d5de] .home-bg.big-container{min-height:560px}}@media (max-width:640px){.header .logo{height:2.35rem!important;width:9rem!important}.footer .logo{height:3.25rem!important;width:12.5rem!important}.main.home-page[data-v-4138d5de] .home-bg.big-container{min-height:480px}}
.footer .row-2[data-v-16a6eab2] .flex.mt-4[data-v-16a6eab2]{gap:4.5rem}.footer .right-link[data-v-16a6eab2]{margin-left:0!important}@media (max-width:768px){.footer .row-2[data-v-16a6eab2] .flex.mt-4[data-v-16a6eab2]{gap:3rem}}