@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap");
:root {
    --color-meviy-blue: #0a1464;
    --color-meviy-yellow: #fdc319;
    --color-meviy-yellow-hover: #dfb41d;
    --color-gray-0: #333333;
    --color-gray-1: #7f7f7f;
    --color-gray-2: #a8a8a8;
    --color-gray-3: #efefef;
    --color-gray-3-hover: #d7d7d7;
    --color-gray-4: #f9f9f9;
    --typography-h1: #efefef;
    --typography-h2: #efefef;
    --typography-h3: #efefef;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    --font-size-8xl: 6rem;
    --font-size-9xl: 8rem;
    --font-weight-thin: 300;
    --font-weight-reg:500;
    --font-weight-bold: 700;
    --border-radius-sm: 0.125rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    --border-radius-3xl: 1.5rem;
    --border-radius-full: 9999px;
    --box-shadow-sm: 0 1px 2px 0 rgb(0 0 0/0.05);
    --box-shadow-md: 0 4px 6px -1px rgb(0 0 0/0.1), 0 2px 4px -2px rgb(0 0 0/0.1);
    --box-shadow-lg: 0 10px 15px -3px rgb(0 0 0/0.1), 0 4px 6px -4px rgb(0 0 0/0.1);
    --box-shadow-xl: 0 20px 25px -5px rgb(0 0 0/0.1), 0 8px 10px -6px rgb(0 0 0/0.1);
    --box-shadow-2xl: 0 25px 50px -12px rgb(0 0 0/0.25);
}

/*  Style Over rides */
body {
    overflow: clip!important;
}

  .hero.hero--with-background.hero--big {
    background-image: url("../../assets/img/newBG.png")!important;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

  }

  .section-security {
    background-color: #efefef;
    z-index: -2;
  }
  .b-container {
    display: flex;
    max-height: 75px!important;
  }

  .block--security img {
    max-width: 80%!important;
    height: auto;
}

/* footer over rides */
#footer .inner>div.boxLink>ul li a {
    color:#fff!important;
}
#footer {
    background-color: #02002f!important;
}
#footer .inner>div.boxAsk .tel a {
color:#a8a8a8!important;
}
#footer .inner>div.boxAsk .txt {
    color: #FFF;
}
/* end footer over rides */

/*end style over rides */


a {
    color:#0a1464!important;
}
p,
h1,
h2 {
    word-wrap: break-word;
}
main {
    margin-bottom: 8rem;
}
html,
body {
    font-family: "Open Sans", sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
ul,
ol {
    padding: 0;
    margin: 0;
}
body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
ul[class],
ol[class] {
    list-style: none;
}
article > * + * {
    margin-top: 1em;
}
input,
button,
textarea,
select {
    font: inherit;
}
button {
    border: none;
    background-color: inherit;
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.button-blue {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: none;
    color: var(--color-meviy-blue)!important;
    border-color:var(--color-meviy-blue)!important;
    border-width: 2px;
    border-style:solid;
    text-decoration: none;
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: var(--border-radius-lg);
    transition: background-color 300ms ease;
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}
.button {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-meviy-yellow);
    color: var(--color-meviy-blue)!important;
    text-decoration: none;
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: var(--border-radius-lg);
    transition: background-color 300ms ease;
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}
.button:hover {
    background-color: var(--color-meviy-yellow-hover);
}
.button--small {
    height: 2rem;
    padding: 0 1rem;
    font-size: var(--font-size-xs);
}
.button--big {
    height: 4rem;
    padding: 0 3rem;
    font-size: var(--font-size-lg);
}
.card {
    border: 1px solid var(--color-gray-3);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-md);
    background-color: white;
    padding: 1.5rem;
}
.card__eyebrow {
    font-weight: var(--font-weight-thin);
    font-size: var(--font-size-sm);
    color: var(--color-meviy-blue);
    margin-bottom: 0.75rem;
}
.card__image img {
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--color-gray-3);
}
.card__heading {
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
}
.card__text {
    margin-top: 1rem;
    font-weight: var(--font-weight-reg);
    font-size: var(--font-size-sm);
    color: var(--color-gray-0);
}
.card__icon {
    margin-bottom: 0.5rem;
    height: 3rem;
    width: 3rem;
}
.card__buttons {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}
.cta-section {
    padding: 2rem 0;
    width: 100%;
    background-color: var(--color-meviy-blue);
}
.cta-box {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cta-box__heading {
    color: white;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 2rem;
    text-align: center;
}
.collapsible__item {
    border-bottom: 1px solid var(--color-gray-3);
    padding: 1rem 0;
}
.collapsible__item:last-child {
    border: none;
}
.collapsible__heading {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.collapsible__heading::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230a1464' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.collapsible__heading--open::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230a1464' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 15.75 7.5-7.5 7.5 7.5' /%3E%3C/svg%3E%0A");
}
.collapsible__heading > * {
    margin-bottom: 0 !important;
}
.collapsible__content {
    display: none;
    padding: 2rem 0;
    color: var(--color-meviy-blue);
    font-weight: var(--font-weight-thin);
}
.collapsible__content--open {
    display: block;
}
.error__item {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    color: var(--color-meviy-blue);
    margin-bottom: 2rem;
}
.error__item::before {
    content: "";
    height: 2rem;
    width: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='red' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m9.75 9.75 4.5 4.5m0-4.5-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z' /%3E%3C/svg%3E%0A");
}
.solution__item {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    color: var(--color-meviy-blue);
    margin-bottom: 2rem;
}
.solution__item::before {
    content: "";
    height: 2rem;
    width: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='green' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z' /%3E%3C/svg%3E%0A");
}
.container {
    max-width: 1280px;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    margin: 0 auto;
}
.container--sm {
    max-width: 768px;
    margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
    .dropdown__icon {
        display: none;
    }
    .dropdown__title {
        color: var(--color-meviy-blue);
        font-size: var(--font-size-sm);
        font-weight: var(--font-weight-bold);
        cursor: default;
    }
    .dropdown__items {
        padding: 1rem 0;
    }
    .dropdown__item {
        border-bottom: 1px solid var(--color-gray-3);
    }
    .dropdown__item a {
        display: block;
        padding: 0.5rem 1rem;
        text-decoration: none;
        font-weight: var(--font-weight-bold);
        font-size: var(--font-size-sm);
        color: var(--color-meviy-blue);
    }
}
@media only screen and (min-width: 1024px) {
    .dropdown {
        position: relative;
    }
    .dropdown__trigger {
        display: flex;
        align-items: center;
        -moz-column-gap: 0.25rem;
        column-gap: 0.25rem;
    }
    .dropdown__title {
        color: var(--color-meviy-blue);
        font-size: var(--font-size-sm);
        font-weight: var(--font-weight-bold);
        cursor: default;
    }
    .dropdown__icon {
        flex-shrink: 0;
        height: 1rem;
        width: 1rem;
        color: var(--color-meviy-blue);
    }
    .dropdown__menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: none;
        min-width: 200px;
        padding-top: 0.5rem;
    }
    .dropdown:hover .dropdown__menu {
        display: block;
    }
    .dropdown__items {
        background-color: white;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--box-shadow-lg);
        padding: 1rem 0.5rem;
        border: 1px solid lightgray;
    }
    .dropdown__item:hover {
        background: color-mix(in srgb, var(--color-meviy-blue) 10%, transparent);
        border-radius: var(--border-radius-lg);
    }
    .dropdown__item a {
        display: block;
        padding: 0.5rem 1rem;
        text-decoration: none;
        font-weight: var(--font-weight-bold);
        font-size: var(--font-size-sm);
        color: var(--color-meviy-blue);
    }
}
.feature-list {
    margin-left: 0;
    padding: 0;
    margin-bottom: 2rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
}
.feature-list li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230a1464' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m8.25 4.5 7.5 7.5-7.5 7.5' /%3E%3C/svg%3E%0A");
    height: 1.5rem;
    width: 1.5rem;
}

.grid {
    display: grid;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 2.5rem;
    margin-bottom: 2rem;
}
.grid--gap-small {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1.5rem;
}
.grid--gap-big {
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    row-gap: 3rem;
}
.grid__item {
    align-self: center;
}
.grid__item--top {
    align-self: flex-start;
}
.grid__item--stretch {
    align-self: stretch;
}
.grid__item--stretch > * {
    height: 100%;
}
.grid-gap--sm {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1.5rem;
}
.grid-gap--xs {
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
}
@media screen and (max-width: 639px) {
    .grid--2-cols,
    .grid--3-cols,
    .grid--4-cols,
    .grid--5-cols {
        grid-auto-columns: minmax(0, 1fr);
    }
}
@media only screen and (min-width: 640) and (max-width: 767px) {
    .grid--2-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid--3-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid--4-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid--5-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .grid--2-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid--3-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid--4-cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid--5-cols {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media only screen and (min-width: 1024px) {
    .grid--auto-cols {
        grid-auto-columns: minmax(0, 1fr);
        grid-auto-flow: column;
    }
    .grid--2-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid--3-cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid--4-cols {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .grid--5-cols {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
.hero {
}
.hero--big .hero__heading {
    margin-bottom: 2rem;
}
.hero--big .hero__text {
    margin-bottom: 3rem;
}
.hero--big .button {
    margin-bottom: 3rem;
}
.hero--small .hero__heading {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
}
.hero--small .hero__text {
    margin-bottom: 2rem;
}
.hero--small .button {
    margin-bottom: 2rem;
}
.hero--with-background {
    background: color-mix(in srgb, var(--color-gray-3) 25%, transparent);
}
.hero--swapped .hero__content {
    flex-direction: row-reverse;
}
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.hero__image,
.hero__copy {
    flex: 1 1 0%;
}
.hero__image--top {
    align-self: flex-start;
}
.hero__image--center {
    display: flex;
    justify-content: center;
}
.hero__image img,
.hero__image video {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow-lg);
    width: 100%;
    height: auto;
}
.hero__eyebrow {
    color: var(--color-gray-1);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}
.hero__heading {
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
    overflow-wrap: break-word;
    margin-bottom: 1.5rem;
}
.hero__text {
    font-weight: var(--font-weight-reg);
    color: var(--color-gray-0);
    margin-bottom: 2rem;
}
@media only screen and (max-width: 1023px) {
    .hero--big {
        padding: 4rem 0;
    }
    .hero__heading {
        font-size: var(--font-size-3xl);
        line-height: 2rem;
        -webkit-hyphens: auto;
        hyphens: auto;
    }
    .hero__image--hide-on-mobile {
        display: none;
    }
}
@media screen and (min-width: 1024px) {
    .hero--big {
        padding: 6rem 0;
    }
    .hero__content {
        display: flex;
        flex-direction: row;
        -moz-column-gap: 4rem;
        column-gap: 4rem;
    }
    .hero__heading {
        font-size: var(--font-size-4xl);
        line-height: 2.25rem;
    }
    .hero__image img,
    .hero__image video {
        width: 80%;
        height: auto;
    }
}
.mb--none {
    margin-bottom: 0 !important;
}
.mb--sm {
    margin-bottom: 1rem !important;
}
.mb--sf {
    margin-bottom: 0.25rem !important;
}
.mb--lg {
    margin-bottom: 2rem !important;
}
.mt--sm {
    margin-top: 1rem !important;
}
.mt--md {
    margin-top: 1.5rem !important;
}
.mt--lg {
    margin-top: 2rem !important;
}
.mt--none {
    margin-top: 0 !important;
}
.misumi-banner-wrapper {
    background-color: var(--color-meviy-blue);
    padding: 1rem 0 !important;
}
.misumi-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.misumi-banner__text {
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
}
.misumi-banner__logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}
.misumi-banner__button {
    flex: 1;
    white-space: nowrap;
}
@media only screen and (max-width: 1023px) {
    .misumi-banner {
        flex-direction: column;
    }
    .misumi-banner__text {
        text-align: center;
    }
}
@media only screen and (max-width: 1023px) {
    .nav {
        position: sticky!important;
        left: 0;
        top: 0;
        z-index: 40;
        height: 4rem;
        width: 100%;
        background-color: white;
        box-shadow: var(--box-shadow-lg);
    }
    .nav:has(+ .page-nav) {
        box-shadow: none;
    }
    .nav__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 4rem;
    }
    .nav__branding {
        display: flex;
        align-items: center;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    .nav__toggle {
        content: "";
        display: block;
        height: 2rem;
        width: 2rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230a1464' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5' /%3E%3C/svg%3E%0A");
    }
    .nav__branding-item {
        display: flex;
        align-items: center;
    }
    .nav__branding img {
        height: 2rem;
        width: auto;
    }
    .nav__menu {
        display: none;
    }
    .nav__toggle:has(~ .nav__menu--visible) {
        position: fixed;
        top: 1rem;
        right: 2rem;
        z-index: 100;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230a1464' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18 18 6M6 6l12 12' /%3E%3C/svg%3E%0A");
    }
    .nav__menu--visible {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: white;
        padding: 2rem;
        overflow-y: scroll;
    }
    .nav__menu-item {
        margin-bottom: 2rem;
    }
}
@media only screen and (min-width: 1024px) {
    .nav {
        position: sticky;
        left: 0;
        top: 56px;
        z-index: 40;
        height: 4rem;
        width: 100%;
        background-color: white;
        box-shadow: var(--box-shadow-lg);
    }
    .nav:has(+ .page-nav) {
        box-shadow: none;
    }
    .nav__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 4rem;
    }
    .nav__toggle {
        display: none;
    }
    .nav__branding {
        display: flex;
        align-items: center;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    .nav__branding-item {
        display: flex;
        align-items: center;
    }
    .nav__branding img {
        height: 2rem;
        width: auto;
    }
    .nav__menu {
        display: flex;
        align-items: center;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }
}
.news-section {
    margin-bottom: 8rem !important;
}
.news-section__heading {
    color: var(--color-meviy-blue) !important;
    margin-bottom: 2rem !important;
}
.news-section__items {
}
.news-section__item {
    display: flex;
    align-items: center;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--color-gray-3);
    color: var(--color-meviy-blue);
    font-size: var(--font-size-lg);
    text-decoration: none;
}
@media only screen and (max-width: 1023px) {
    .news-section__item {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 2rem;
        font-size: var(--font-size-sm);
    }
}
.news-section__item:last-child {
    border-bottom: none;
}
.news-section-item__date {
    background-color: var(--color-gray-4);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-xl);
    color: var(--color-gray-1);
}
.news-section-item__heading {
    font-weight: var(--font-weight-bold);
}
.ordering-process {
}
@media only screen and (max-width: 1023px) {
    .ordering-process__items {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        border-left: 4px solid var(--color-meviy-blue);
        padding-left: 2rem;
    }
    .ordering-process__item::before {
        top: 0;
        left: -2.625rem;
    }
}
@media only screen and (min-width: 1024px) {
    .ordering-process__items {
        display: flex;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        border-top: 4px solid var(--color-meviy-blue);
        padding-top: 2rem;
    }
    .ordering-process__item::before {
        top: -2.625rem;
        left: 0;
    }
}
.ordering-process__item {
    flex: 1;
    position: relative;
}
.ordering-process__icon {
    height: 2rem;
    width: 2rem;
    color: var(--color-meviy-blue);
}
.ordering-process__item::before {
    content: "";
    position: absolute;
    height: 1rem;
    width: 1rem;
    background-color: white;
    border: 3px solid var(--color-meviy-blue);
    border-radius: 9999px;
}
.ordering-process-item__heading {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
    margin-bottom: 0.5rem;
}
.ordering-process-item__text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-thin);
    color: var(--color-meviy-gray-2);
}
@media only screen and (max-width: 1023px) {
    .page-nav {
        position: sticky;
        top: 4rem;
        left: 0;
        z-index: 30;
        width: 100%;
        background-color: var(--color-gray-3);
    }
    .page-nav__content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 3rem;
    }
    .page-nav__branding {
        display: flex;
        align-items: center;
        -moz-column-gap: 0.75rem;
        column-gap: 0.75rem;
    }
    .page-nav__icon {
        height: 1.5rem;
        width: 1.5rem;
    }
    .page-nav__title {
        color: var(--color-meviy-blue);
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-bold);
    }
    .page-nav__toggle {
        display: block;
        height: 2rem;
        width: 2rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230a1464' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
        background-size: 1.5rem 1.5rem;
        background-repeat: no-repeat;
        background-position: center;
    }
    .page-nav__toggle:has(~ .page-nav__items--visible) {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230a1464' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 15.75 7.5-7.5 7.5 7.5' /%3E%3C/svg%3E%0A");
    }
    .page-nav__items {
        display: none;
    }
    .page-nav__items--visible {
        display: block;
        position: absolute;
        background-color: var(--color-gray-3);
        z-index: 100;
        top: 0;
        margin-top: 3rem;
        margin-left: -2rem;
        width: 100vw;
        padding: 2rem 2rem;
    }
    .page-nav__item a {
        display: block;
        color: var(--color-meviy-blue);
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-bold);
        text-decoration: none;
        padding: 0.5rem 0;
    }
    .page-nav__item--active {
        display: flex;
        align-items: center;
        -moz-column-gap: 0.25rem;
        column-gap: 0.25rem;
    }
    .page-nav__item--active::before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor' class='w-4 h-4'%3E%3Cpath fill-rule='evenodd' d='M6.22 4.22a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1 0 1.06l-3.25 3.25a.75.75 0 0 1-1.06-1.06L8.94 8 6.22 5.28a.75.75 0 0 1 0-1.06Z' clip-rule='evenodd' /%3E%3C/svg%3E%0A");
        display: flex;
        align-items: center;
        justify-content: center;
        height: 1rem;
        width: 1rem;
    }
}
@media only screen and (min-width: 1024px) {
    .page-nav {
        position: sticky;
        top: 4rem;
        left: 0;
        z-index: 30;
        width: 100%;
        background-color: var(--color-gray-3);
    }
    .page-nav__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 3rem;
    }
    .page-nav__branding {
        display: flex;
        align-items: center;
        -moz-column-gap: 0.75rem;
        column-gap: 0.75rem;
    }
    .page-nav__icon {
        height: 1.5rem;
        width: 1.5rem;
    }
    .page-nav__title {
        color: var(--color-meviy-blue);
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-bold);
    }
    .page-nav__toggle {
        display: none;
    }
    .page-nav__items {
        display: flex;
        align-items: center;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        height: inherit;
    }
    .page-nav__item {
        height: inherit;
        display: flex;
        align-items: center;
    }
    .page-nav__item a {
        color: var(--color-meviy-blue);
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-bold);
        text-decoration: none;
        margin-bottom: -2px;
    }
    .page-nav__item--active {
        border-bottom: 2px solid var(--color-meviy-blue);
    }
}
.press-contact {
    background-color: var(--color-gray-3);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
}
.press-item {
    margin-bottom: 2rem;
}
.press-item__heading {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-thin);
    color: var(--color-meviy-blue);
    text-decoration: none;
}
.press-item__heading:hover {
    text-decoration: underline;
}
.press-item__date {
    color: var(--color-meviy-gray-3);
}
section {
    margin: 4rem 0;
}
section > div {
    padding: 3rem 0;
}
section:first-child {
    margin-top: 0;
}
section:last-child {
    margin-bottom: 0;
}
.section__eyebrow {
    color: var(--color-gray-1);
}
.section__heading {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
    margin-bottom: 2rem;
}
.section__subheading {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
    margin-bottom: 2rem;
}
.section__text {
    color: var(--color-gray-0);
    font-weight: var(--font-weight-reg);
    margin-bottom: 2rem;
}
.section__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section__actions--center {
    justify-content: center;
}
.section__image img {
    margin: 2rem auto;
}
.section__image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.section__image img {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow-lg);
    max-width: 100%;
    height: auto;
}
.section__image--small img {
    max-width: 75%;
}
.section__image > .caption {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-thin);
    color: var(--color-gray-1);
    margin-top: 1rem;
}
.section__list {
    margin: 2rem 0;
}
.section__list-heading {
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
}
.section__list li {
    list-style-type: disc;
    font-weight: var(--font-weight-thin);
    color: var(--color-gray-0);
    margin-bottom: 0.5rem;
}
.section__list li:last-child {
    margin-bottom: 0;
}
.section__subsection {
    margin-bottom: 2rem;
}
section ul,
section ol {
    padding: 0;
    margin-left: 1rem;
}
.section__heading--center {
    text-align: center;
}
:root {
    --swiper-navigation-color: var(--color-meviy-blue);
    --swiper-pagination-color: var(--color-meviy-blue);
    --swiper-pagination-bullet-inactive-color: var(--color-meviy-yellow);
    --swiper-pagination-bullet-inactive-opacity: 1;
}
.slider {
    margin-bottom: 3rem;
    text-rendering: auto;
}
.swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}
.slider__slide {
    display: flex;
    justify-content: center;
}
.slider__slide > div {
    width: 100%;
    max-width: 100%;
}
.slider__img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.slider__img > img {
    max-width: 80%;
    height: auto;
    border-radius: var(--border-radius-xl);
}
.slider__heading {
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
    font-size: var(--font-size-lg);
    text-align: center;
}
.slider__text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-thin);
    text-align: center;
}
table {
    color: var(--color-meviy-blue);
    font-size: var(--font-size-sm);
    width: 100%;
    border-spacing: 4px 4px;
    margin-bottom: 2rem;
    table-layout: fixed;
}
thead {
    font-weight: var(--font-weight-bold);
}
td {
    background-color: var(--color-gray-3);
    padding: 0.5rem 1rem;
}
td > img {
    display: block;
    max-width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.tabs__menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 0.25rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--color-gray-3);
}
.tabs__menu-item {
    color: var(--color-meviy-blue);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-lg);
    padding: 0.5rem 1rem;
    cursor: pointer;
}
.tabs__menu-item:not(.tabs__menu-item--active):hover {
    background-color: var(--color-gray-3-hover);
}
.tabs__menu-item--active {
    color: var(--color-meviy-blue);
    background-color: var(--color-meviy-yellow);
}
.tabs__items {
    margin-top: 2rem;
}
.tabs__item {
    display: none;
}
.tabs__item--active {
    display: block;
}
.tabs--big .tabs__menu {
    background-color: transparent;
    border-radius: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    align-items: stretch;
}
.tabs--big .tabs__menu-item {
    border-bottom: 2px solid var(--color-gray-2);
    border-radius: 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}
.tabs--big .tabs__menu-item--active {
    border-bottom: 2px solid var(--color-meviy-blue);
    background-color: transparent;
    background-color: var(--color-gray-3);
}
.tabs--big .tabs__menu-item:not(.tabs__menu-item--active):hover {
    background-color: var(--color-gray-3);
}
.tabs--big .tabs__menu {
}
.tabs--big .tabs__menu {
}
.tabs--big .tabs__menu {
}
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.testimonials-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.testimonials .card__text {
    font-size: var(--font-size-base);
    margin: 0 0 2rem 0;
}
.testimonials .card__eyebrow {
    margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
    .testimonials {
        flex-direction: row;
    }
    .testimonials-col:nth-child(2) {
        margin-top: 2rem;
    }
}
.top-bar {
    position: sticky!important;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    background-color: #080e53;
    z-index:1;
}
.top-bar__content {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 12px;
    column-gap: 12px;
    text-decoration: none;
}
.top-bar__icon {
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 36px;
    background: #fdc319;
    color: #080e53;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
}
.top-bar__text {
    color: #fff;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
}
.trusted-by {
    margin-top: 2rem;
}
.trusted-by__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
}
.trusted-by__eyebrow {
    color: var(--color-gray-1);
    font-size: var(--font-size-xs);
    margin-bottom: 0.5rem;
}
.trusted-by__item img {
    height: 80px;
    width: 80px;
}
@media screen and (min-width: 1024px) {
    .trusted-by__items {
        justify-content: flex-start;
    }
}
.usp {
    display: flex;
    overflow-x: auto;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    padding-bottom: 2rem;
}
.usp__item {
    width: min(90%, 300px);
    flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
    .usp {
        display: grid;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        row-gap: 1.5rem;
        overflow: unset;
        padding-bottom: 0;
    }
    .usp--3-cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .usp__item {
        width: 100%;
        align-self: stretch;
    }
    .usp__item > * {
        height: 100%;
    }
}
.video--full {
    width: 100% !important;
}
.video-hub__link {
    text-decoration: none;
}
.video-hub-item__thumbnail {
    width: 100%;
    height: 12rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow-lg);
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 1rem;
}
.video-hub-item__heading {
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none !important;
}
.video-hub-item__heading:hover {
    color: var(--color-gray-0);
}
.video-hub-item__text {
    font-weight: var(--font-weight-thin);
    font-size: var(--font-size-sm);
    color: var(--color-gray-1);
    text-decoration: none;
}
.free-trial-coupon {
    display: flex;
    align-items: center;
    background-color: var(--color-gray-3);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-2xl);
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.free-trial-coupon__text {
    color: var(--color-meviy-blue);
    font-weight: var(--font-weight-bold);
}
.free-trial-coupon__button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23080e53' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75 2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25ZM6.75 12h.008v.008H6.75V12Zm0 3h.008v.008H6.75V15Zm0 3h.008v.008H6.75V18Z' /%3E%3C/svg%3E%0A");
    height: 0.75rem;
    width: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.free-trial-coupon__button:active {
    transform: scale(90%);
}
.step-cards {
    display: grid;
    row-gap: 2rem;
    max-width: 1024px;
    margin: 0 auto;
    margin-top: 4rem;
}
.step-card {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    color: black;
    row-gap: 2rem;
    background-color: var(--color-gray-4);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}
.step-card__copy {
    align-self: center;
}
.step-card__eyebrow {
    margin-bottom: 1.5rem;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-0);
}
.step-card__heading {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-meviy-blue);
    margin-bottom: 1rem;
}
.step-card__text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-thin);
}
.step-card__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.step-card__img {
    width: 100%;
    height: 100%;
    order: 1;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow-lg);
    -o-object-fit: cover;
    object-fit: cover;
}
.step-card__copy {
    order: 2;
}
@media only screen and (min-width: 1024px) {
    .step-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(1, minmax(0, 1fr));
    }
    .step-card__copy {
        order: 1;
    }
    .step-card__img {
        order: 2;
    }
}
.meviy-in-2-mins-video {
    max-width: 768px;
    margin: 0 auto;
    display: block;
}
.custom-part-img {
    width: 80%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow-lg);
    -o-object-fit: cover;
    object-fit: cover;
}

#footer .inner>div.subLogo .socialMedia li a,
#footer .boxSns .socialMedia li a {
  display: inline-block;
  width: 20px!important;
  height: 20px!important;
  background-size: 20px auto!important;
  text-indent: -9999px;
  overflow: hidden;
}

#footer .inner>div.subLogo .socialMedia li.facebook a,
#footer .boxSns .socialMedia li.facebook a {
  background-image: url(../../assets/img/facebook-wht.svg )!important;
}

#footer .inner>div.subLogo .socialMedia li.x a,
#footer .boxSns .socialMedia li.x a {
  background-image: url(../../assets/img/x-twitter-wht.svg)!important;
}

#footer .inner>div.subLogo .socialMedia li.google a {
  background-image: url(../../assets/img/sns_google.png);
}

#footer .inner>div.subLogo .socialMedia li.instagram a,
#footer .boxSns .socialMedia li.instagram a  {
  background-image: url(../../assets/img/instagram-wht.svg)!important;
}

#footer .inner>div.subLogo .socialMedia li.linkedin a,
#footer .boxSns .socialMedia li.linkedin a {
  background-image: url(../../assets/img/linkedin-in-wht.svg)!important;
}

#footer .inner>div.subLogo .socialMedia li.youtube a,
#footer .boxSns .socialMedia li.youtube a {
  background-image: url(../../assets/img/youtube-wht.svg)!important;
}