*,
*::before,
*::after {
    box-sizing: border-box;
}
:root{
    --blue:#3d7bd9;
    --blue-dark:#2f63ad;
    --blue-deep:#173d78;
    --blue-pale:#eef3fa;
    --ink:#0f1b2d;
    --line:#d9e3ef;
    --soft:#f6f9fd;
	--blue-soft: #eef4fb;
	--gold: #c99a3b;
	--white: #ffffff;
	--off-white: #f8fafc;
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #ffffff;
	font-family: sans-serif !important;
}
img {
    max-width: 100%;
    display: block;
}
/* =========================================================
   MART NEW HEADER
========================================================= */
.mart-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6.5%;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(
            180deg,
            rgba(4,10,16,.55),
            transparent
        );
    backdrop-filter: blur(4px);
}
/*LOGO*/
.mart-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .4px;
}
.mart-logo-mark {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(73,150,255,.8);
    transform: rotate(45deg);
    box-shadow:
        0 0 24px rgba(50,135,255,.22);
    flex-shrink: 0;
}
.mart-logo-mark::before,
.mart-logo-mark::after {
    content: "";
    position: absolute;
    background: #4b91e8;
}
.mart-logo-mark::before {
    width: 16px;
    height: 1px;
    top: 16px;
    left: 8px;
}
.mart-logo-mark::after {
    width: 1px;
    height: 16px;
    top: 8px;
    left: 16px;
}
.mart-logo-text {
    line-height: 1.1;
}
.mart-logo-text span {
    display: block;
    margin-top: 4px;
    color: #a9bfd5;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
}
/*  NAVIGATION */
.mart-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.mart-nav a {
    position: relative;
    color: rgba(255,255,255,.86);
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 35px 0;
    white-space: nowrap;
}
/* BLUE UNDERLINE */
.mart-nav a:not(.mart-nav-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 26px;
    height: 2px;
    background: #4d91ed;
    transition: right .35s ease;
}
.mart-nav a:not(.mart-nav-btn):hover::after {
    right: 0;
}
/*  CONTACT BUTTON  */
.mart-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px !important;
	border: 1px solid var(--blue);
    color: #fff !important;
    box-shadow:
        0 10px 28px rgba(36,105,190,.28);
    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}
.mart-nav-btn:hover {
    background: #4d91ed;
    transform: translateY(-2px);
    box-shadow:
        0 14px 34px rgba(36,105,190,.4);
}
/*   MOBILE MENU BUTTON  */
.mart-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 5px;
    cursor: pointer;
}
.mart-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition:
        transform .3s ease,
        opacity .3s ease;
}
/*  MOBILE MENU  */
.mart-mobile-menu {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    padding: 12px 6.5% 20px;
    background: rgba(5,13,21,.97);
    border-bottom:
        1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(14px);
}
.mart-mobile-menu.is-open {
    display: flex;
}
.mart-mobile-menu a {
    padding: 16px 0;
    border-bottom:
        1px solid rgba(255,255,255,.1);
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
}
.mart-mobile-menu a:last-child {
    border-bottom: 0;
}
/*  HEADER RESPONSIVE*/
@media (max-width: 900px) {
    .mart-header {
        height: 82px;
        padding: 0 5%;
    }
    .mart-nav {
        gap: 20px;
    }
    .mart-nav a {
        font-size: 12px;
    }
}
@media (max-width: 700px) {
    .mart-header {
        height: 78px;
        padding: 0 6%;
    }
    .mart-logo {
        font-size: 16px;
    }
    .mart-logo-mark {
        width: 28px;
        height: 28px;
    }
    .mart-logo-mark::before {
        width: 13px;

        top: 13px;
        left: 7px;
    }
    .mart-logo-mark::after {
        height: 13px;
        top: 7px;
        left: 13px;
    }
    .mart-logo-text span {
        font-size: 8px;
        letter-spacing: 1.3px;
    }
    .mart-nav {
        display: none;
    }
    .mart-menu-toggle {
        display: block;
    }
    .mart-mobile-menu {
        top: 78px;
    }
}
/* MART ANIMATED HERO */
.mart-hero {
    position: relative;
    min-height: 100vh;
    height: 760px;
    overflow: hidden;
    isolation: isolate;
    background: #080d12;
    color: #fff;
}
/*  BACKGROUND*/
.mart-hero-bg {
    position: absolute;
    inset: -4%;
    z-index: -5;
    background-image: url("../img/hero_background.avif");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.08);
    animation: martSlowZoom 14s ease-in-out infinite alternate;
    transform-origin: center;
}
/* DARK OVERLAY */
.mart-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
	background:
    linear-gradient(
        90deg,
        rgba(1, 15, 38, 0.92) 0%,
        rgba(5, 35, 78, 0.78) 32%,
        rgba(30, 82, 150, 0.48) 65%,
        rgba(13, 43, 82, 0.64) 100%
    ),
    linear-gradient(
        180deg,
        rgba(1, 12, 28, 0.82) 0%,
        rgba(10, 48, 96, 0.28) 48%,
        rgba(1, 18, 42, 0.78) 100%
    );
}
/* BLUE LIGHT EFFECT */
.mart-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(
            circle at 33% 48%,
            rgba(56,139,255,.12),
            transparent 25%
        ),
        linear-gradient(
            120deg,
            transparent 0 48%,
            rgba(68,151,255,.07) 49%,
            transparent 50%
        );
    pointer-events: none;
}
/*  NOISE */
.mart-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .08;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0 3px,
            rgba(255,255,255,.12) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0 5px,
            rgba(255,255,255,.06) 6px
        );
    mix-blend-mode: overlay;
}
/*  SCAN LINE */
.mart-hero-scan {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(77,150,244,0),
            rgba(77,150,244,.8),
            rgba(77,150,244,0)
        );
    box-shadow: 0 0 18px rgba(77,150,244,.7);
    animation: martScan 6s ease-in-out infinite;
    opacity: .7;
}
/*  HERO CONTENT*/
.mart-hero-content {
    position: relative;
    z-index: 10;
    width: 88%;
    max-width: 1240px;
    margin: 0 auto;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
}
.mart-hero-copy {
    width: 690px;
    margin-top: -25px;
    animation:
    martRevealUp 1.1s cubic-bezier(.2,.8,.2,1) both;
}
/*  EYEBROW */
.mart-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #d7e6f5;
    margin-bottom: 23px;
}
.mart-hero-eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: #4d92ec;
    box-shadow: 0 0 12px rgba(77,146,236,.8);
}
/*  HERO TITLE */
.mart-hero h1 {
    font-family: sans-serif;
    font-size: 65px;
    font-weight: 400;
	margin-top:0px;
	margin-bottom: 0px;
}
.mart-line {
    display: block;
    overflow: hidden;
}
/* DESCRIPTION */
.mart-hero-description {
    width: 100%;
    max-width: 100%;
    color: #FFF;
    font-family: sans-serif;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 34px;
}
/*  BUTTONS */
.mart-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mart-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 27px;
    border: 1px solid var(--blue);
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    box-shadow:
        0 16px 45px rgba(26,98,190,.32);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}
.mart-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    transform: skewX(-25deg);
    background: rgba(255,255,255,.22);
    animation:martButtonShine 3.8s 1.5s infinite;
}
.mart-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(26,98,190,.48);
}
.mart-arrow {
    font-size: 20px;
    line-height: 0;
    transition:
        transform .3s ease;
}
.mart-primary:hover .mart-arrow {
    transform: translateX(5px);
}
/* SECONDARY LINK */
.mart-secondary {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 9px;
}
.mart-secondary i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4c91e9;
    box-shadow: 0 0 12px #4c91e9;
    animation:
        martPulse 1.6s infinite;
}
/* ROTATING TECHNICAL RING */
.mart-rotor {
    position: absolute;
    z-index: 5;
    left: 30%;
    top: 48%;
    width: 350px;
    height: 350px;
    transform:
        translate(-50%, -50%);
    pointer-events: none;
}
.mart-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(93,160,239,.25);
    box-shadow:
        inset 0 0 35px rgba(53,137,232,.06),
        0 0 30px rgba(53,137,232,.06);
}
.mart-ring::before {
    content: "";
    position: absolute;
    inset: -11px;
    border-radius: 50%;
    border:1px dashed rgba(110,179,255,.22);
    animation:
        martSpin 18s linear infinite;
}
/* OUTER ARC */
.mart-arc {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #579cf0;
    border-right-color:
        rgba(87,156,240,.15);
    filter:
        drop-shadow(0 0 8px rgba(87,156,240,.7));
    animation:
        martSpin 5s linear infinite;
}
/* INNER ARC */
.mart-arc-two {
    inset: 21px;
    border-top-color: transparent;
    border-bottom-color:
        rgba(111,182,255,.7);
    animation-duration: 8s;
    animation-direction: reverse;
}
/* ROTATING TICK */
.mart-tick {
    position: absolute;
    width: 20px;
    height: 1px;
    background: #72b5ff;
    left: 50%;
    top: -13px;
    transform:
        translateX(-50%);

    box-shadow:
        0 0 10px #72b5ff;
}
/* TECHNICAL TESTING PANEL */
.mart-tech-panels {
    position: absolute;
    z-index: 7;
    right: 6.5%;
    bottom: 30%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 275px;
}
.mart-tech-panel {
    position: relative;
    width: 100%;
    padding: 20px 21px;
    border: 1px solid rgba(255,255,255,.17);
    background: rgba(5,14,22,.34);
    backdrop-filter: blur(12px);
    box-shadow:
        0 20px 60px rgba(0,0,0,.22);
    animation:
        martFloatPanel 4.5s ease-in-out infinite;
}
/* SECOND CARD SLIGHT DELAY */
.mart-tech-panel:nth-child(2) {
    animation-delay: -2.2s;
}
.mart-panel-top {
    display: flex;
    justify-content: space-between;
    color: #b8cde0;
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.mart-status::before {
    content: "●";
    margin-right: 6px;
    animation:
        martPulse 1.3s infinite;
}
.mart-panel-line {
    height: 1px;
    background: rgba(255,255,255,.14);
    margin-bottom: 14px;
}
.mart-reading {
    display: flex;
    align-items: baseline;
    gap: 9px;
}
.mart-reading strong {
    font-size: 34px;
    font-weight: 400;
}
.mart-reading span {
    color: #94aabd;
    font-size: 11px;
    letter-spacing: 1px;
}
/* ANIMATED BARS */
.mart-mini-bars {
    height: 28px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 13px;
}
.mart-mini-bars span {
    width: 4px;
    background: #4c91e9;
    opacity: .8;
    animation:
        martBars 1.2s ease-in-out infinite alternate;
}
.mart-mini-bars span:nth-child(1) {
    height: 35%;
    animation-delay: .1s;
}
.mart-mini-bars span:nth-child(2) {
    height: 65%;
    animation-delay: .3s;
}
.mart-mini-bars span:nth-child(3) {
    height: 45%;
    animation-delay: .2s;
}
.mart-mini-bars span:nth-child(4) {
    height: 85%;
    animation-delay: .5s;
}
.mart-mini-bars span:nth-child(5) {
    height: 58%;
    animation-delay: .1s;
}
.mart-mini-bars span:nth-child(6) {
    height: 95%;
    animation-delay: .4s;
}
.mart-mini-bars span:nth-child(7) {
    height: 70%;
    animation-delay: .2s;
}
.mart-mini-bars span:nth-child(8) {
    height: 100%;
    animation-delay: .6s;
}
.mart-mini-bars span:nth-child(9) {
    height: 62%;
    animation-delay: .3s;
}
.mart-mini-bars span:nth-child(10) {
    height: 80%;
    animation-delay: .1s;
}
/*  GRID FLOOR */
.mart-hero-grid {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    opacity: .13;
    background-image:
        linear-gradient(
            rgba(91,154,226,.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(91,154,226,.4) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
    transform: perspective(450px)rotateX(62deg)scale(1.5);
    transform-origin: bottom;
    mask-image:
        linear-gradient(
            to top,
            #000,
            transparent
        );
}
/* SCROLL*/
.mart-scroll {
    position: absolute;
    z-index: 10;
    left: 6.5%;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
    color:rgba(255,255,255,.55);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.mart-scroll-line {
    width: 46px;
    height: 1px;
    background:rgba(255,255,255,.4);
    position: relative;
    overflow: hidden;
}
.mart-scroll-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #66aaff;
    transform:translateX(-100%);
    animation:martScrollLine 2s infinite;
}
/*  ANIMATIONS */
@keyframes martSlowZoom {
    from { transform: scale(1.02);}
    to { transform: scale(1.09); }
}
@keyframes martRevealUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes martLineGrow {
    from { width: 0; opacity: 0;}
    to { width: 150px; opacity: 1;}
}
@keyframes martButtonShine {0%,55% { left: -120%; }
    75%,
    100% {
        left: 150%;
    }
}
@keyframes martPulse {
    0%,
    100% {
        opacity: .45;
        transform: scale(.85);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}
@keyframes martFloatPanel {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@keyframes martBars {
    from {
        transform: scaleY(.55);
        opacity: .45;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}
@keyframes martSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes martScan {
    0% {
        top: -2px;
        opacity: 0;
    }
    10% {
        opacity: .7;
    }
    50% {
        opacity: .9;
    }
    90% {
        opacity: .7;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}
@keyframes martScrollLine {
    0% {
        transform: translateX(-100%);
    }
    50%,
    100% {
        transform: translateX(100%);
    }
}
/* HERO RESPONSIVE */
@media (max-width: 900px) {
    .mart-hero-content {
        width: 88%;
    }
    .mart-rotor {
        left: 33%;
        width: 290px;
        height: 290px;
    }
}
/* MOBILE HERO */
@media (max-width: 650px) {
    .mart-hero {
        min-height: 700px;
        height: 700px;
    }
    /* REMOVE LARGE GAP ABOVE TITLE */
    .mart-hero-content {
        width: 88%;
        min-height: auto;
        display: flex;
        align-items: flex-start;
        padding-top:38px !important;
    }
    
    .mart-hero-content h1{
        font-size:40px !important;
    }
    .mart-hero-copy {
        width: 100%;
        margin-top: 0;
        position: relative;
        z-index: 20;
    }
    /* EYEBROW */
    .mart-hero-eyebrow {
        font-size: 8px;
        letter-spacing: 2px !important;
		font-family: sans-serif !important;
        gap: 7px;
        margin-bottom: 12px;
    }
    .mart-hero-eyebrow::before {
        width: 24px;
    }
    /* DESCRIPTION */
    .mart-hero-description {
        width: 100%;
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    /* BUTTONS */
    .mart-hero-actions {
        gap: 12px;
        flex-wrap: wrap;
    }
    .mart-primary {
        padding: 12px 17px;
        font-size: 10px;
        gap: 8px;
    }
    .mart-arrow {
        font-size: 16px;
    }
    .mart-secondary {
        font-size: 9px;
    }
    /*  ROTATING RING KEEP IT BEHIND CONTENT */
    .mart-rotor {
        left: 55%;
        top: 55%;
        width: 220px;
        height: 220px;
        opacity: .28;
        z-index: 3;
    }
	  /*  MOBILE - TWO TECH PANELS HORIZONTAL */
	.mart-tech-panels {
		right: 4%;
		bottom: 5%;
		width: 92%;
		display: flex;
		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
		gap: 10px;
		z-index: 8;
	}
	.mart-tech-panel {
		position: relative;
		width: calc(50% - 5px);
		flex: 0 0 calc(50% - 5px);
		padding: 12px 11px;
		min-height: 105px;
		z-index: 8;
	}
	/* TOP TEXT */
	.mart-panel-top {
		font-size: 6px;
		letter-spacing: 1px;
		margin-bottom: 7px;
	}
	/* LINE */
	.mart-panel-line {
		margin-bottom: 8px;
	}
	/* MAIN VALUE */
	.mart-reading {
		gap: 6px;
		align-items: baseline;
	}
	.mart-reading strong {
		font-size: 22px;
		white-space: nowrap;
	}
	.mart-reading span {
		font-size: 6px;
		letter-spacing: .5px;
		line-height: 1.3;
	}
	/* BARS */
	.mart-mini-bars {
		height: 17px;
		gap: 2px;
		margin-top: 7px;
	}
	.mart-mini-bars span {
		width: 3px;
	}
    /*  HIDE SCROLL ON MOBILE */
    .mart-scroll {
        display: none;
    }
    /*  SERVICE CARDS - 2 PER ROW */
    .service-deck {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
    }
    .service-card,
    .service-card:first-child {
        width: calc(50% - 9px);
        min-height: 255px;
        margin-left: 0;
        transform: none;
    }
    .service-card:hover {
        transform:
            translateY(-8px)
            scale(1.02);
    }
    .service-card p {
        min-height: auto;
    }
}
/*  SMALL MOBILE */
@media (max-width: 420px) {
    .mart-hero {
        min-height: 680px;
        height: 680px;
    }
    .mart-hero-content {
        padding-top: 98px;
    }
    .mart-hero-description {
        font-size: 11px;
        max-width: 310px;
    }
    .mart-primary {
        padding: 11px 14px;
    }
    .mart-secondary {
        font-size: 8px;
    }
    .mart-rotor {
        width: 190px;
        height: 190px;
        top: 56%;
    }
	.mart-tech-panel {
		width: calc(50% - 4px);
		flex: 0 0 calc(50% - 4px);
		min-height: 98px;
		padding: 10px 9px;
	}
	.mart-panel-top {
		font-size: 5.5px;
		letter-spacing: .8px;
	}
	.mart-reading strong {
		font-size: 20px;
	}
	.mart-reading span {
		font-size: 5.5px;
	}
	.mart-mini-bars {
		height: 15px;
		margin-top: 6px;
	}
    .mart-reading strong {
        font-size: 21px;
    }
    /* TWO CARDS */
    .service-card,
    .service-card:first-child {
        width: calc(50% - 9px);
        min-height: 240px;
        padding: 22px 16px;
    }
    .service-card h3 {
        font-size: 16px;
        min-height: 45px;
    }
    .service-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    .card-number {
        font-size: 16px;
    }
    .card-line {
        margin: 16px 0;
    }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .mart-hero-bg,
    .mart-hero-copy,
    .mart-accent::after,
    .mart-primary::before,
    .mart-secondary i,
    .mart-status::before,
    .mart-tech-panel,
    .mart-mini-bars span,
    .mart-ring::before,
    .mart-arc,
    .mart-scroll-line::after,
    .mart-hero-scan {
        animation: none !important;
    }

}
/* footer design*/
	.site-footer{
		padding:50px 0 20px;
		background:#fff;
	}
	.footer-top{
		max-width:90%;
		margin:auto;
		padding:0 20px;
		display:grid;
		grid-template-columns:1.4fr 2fr;
		gap:80px;
	}
	.footer-brand p{
		max-width:420px;
		color:#464444;
		line-height:1.8;
		margin-top:0px;
		font-size: 15px;
		font-weight: 500;
		text-align:justify;
	}
	.footer-grid{
		display:grid;
		grid-template-columns:repeat(3,1fr);
		gap:50px;
	}
	.footer-grid h4{
		margin-bottom:22px;
		font-size:.9rem;
		text-transform:uppercase;
		letter-spacing:.15em;
		color:#172428;
	}
	.footer-grid a,
	.footer-grid span{
		display:block;
		margin-bottom:14px;
		text-decoration:none;
		font-size:15px;
		transition:.25s;
		font-weight:500;
		color:#464444 !important;
	}
	.footer-grid a:hover{
		color:#00aab5;
	}
	.footer-bottom p{
		color: #464444;
		font-weight: 500;
		font-size: 15px;
		margin:0px;
		text-align:center !important;
		width:100%
	}
	.footer-social{
		display:flex;
		gap:24px;
	}
	.footer-social a{
		text-decoration:none;
		color:#66777b;
		transition:.25s;
	}
	.footer-social a:hover{
		color:#00aab5;
	}
	.footer-bottom {
		width: 100%;
		margin-top: 50px;
		text-align: center;
	}
	.footer-bottom p {
		color: #464444;
		font-weight: 500;
		font-size: 14px;
		margin: 0;
		width: 100%;
		text-align: center;
	}
	@media(max-width:900px){
	.footer-top{
		grid-template-columns:1fr;
		gap:50px;
	}
	.footer-grid{
		grid-template-columns:1fr;
		gap:40px;
	}
	}
	
	/* all pages*/
	.eyebrow{
	  display:flex;
	  align-items:center;
	  gap:10px;
	  color:var(--blue-deep); 
	  text-transform:uppercase;
	  letter-spacing:2.3px;
	  font-size:11px;
	  font-weight:800;
	}	
	.eyebrow:before{
		content:"";
		width:39px;
		height:2px;
		background:var(--blue);
	}
	
	
	
