*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:#333;
    line-height:1.6;
    padding-top:96px;
}
/* ===========================
   TYPOGRAPHY
=========================== */

:root{

    --hero-heading:72px;

    --section-heading:60px;

    --heading:36px;

    --sub-heading:20px;

    --paragraph:18px;

}
.hero-title{

    font-size:var(--hero-heading);

    font-weight:800;

    line-height:1.05;

}

.section-title{

    font-size:var(--section-heading);

    font-weight:800;

    line-height:1.15;

}

.heading{

    font-size:var(--heading);

    font-weight:700;

}

.sub-heading{

    font-size:var(--sub-heading);

    font-weight:600;

}

.body-text{

    font-size:var(--paragraph);

    line-height:1.8;

}
.logo{
    flex-shrink:0;
    /* margin-right:80px; */
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    cursor:pointer;
    font:inherit;
}

.container{
    width:100%;
    max-width:1440px;
    margin:0 auto;
    padding:0 40px;
}
/*==================================
HEADER
==================================*/

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    border-bottom:1px solid #e6edf5;
    z-index:9999;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:96px;
    width:100%;
}

.custom-logo-link img,
.logo img{
    height:64px;
    width:auto;
}

.main-nav{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.menu{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:42px;
}

.menu > li{
    list-style:none;
    position:relative;
}

.menu > li > a{
    display:flex;
    align-items:center;
    height:96px;
    padding:0;
    color:#222;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.menu > li > a:hover,
.current-menu-item > a,
.current-menu-ancestor > a{
    color:#e07b2a;
}

/* Dropdown */

.sub-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:230px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:12px 0;
    z-index:999;
}

.menu > li:hover > .sub-menu{
    display:block;
}

.sub-menu li{
    list-style:none;
}

.sub-menu li a{
    display:block;
    padding:12px 22px;
    color:#333;
    font-size:14px;
}

.sub-menu li a:hover{
    background:#f8f8f8;
    color:#e07b2a;
}
/*==================================
HERO
==================================*/

.hero{
    position:relative;
    height:760px;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(10,31,78,.55),rgba(26,60,110,.60));
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.hero-text{
    max-width:620px;
}

.hero-text h1{
    font-size:var(--hero-heading);
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-text h1 span{
    display:block;
    color:#e07b2a;
}

.hero-text p{
    color:rgba(255,255,255,.9);
    font-size:var(--paragraph);
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#e07b2a;
    color:#fff;
    padding:16px 34px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#c7681d;
}
.heroSwiper{
    width:100%;
    height:100%;
}

.swiper-slide{
    width:100%;
}
/* Navigation Buttons */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Arrow Size */
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Position */
.heroSwiper .swiper-button-prev {
  left: 24px;
}

.heroSwiper .swiper-button-next {
  right: 24px;
}
/*==============================
STATS
==============================*/

.stats{
    background:#0f2f63;
    color:#fff;
    padding:22px 40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat-item{
    text-align:center;
    border-right:1px solid rgba(255,255,255,.15);
    padding:28px 20px;
}

.stat-item:last-child{
    border-right:none;
}

.stat-item h2{
    font-size:var(--heading);
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
}

.stat-item p{
    color:#d7dceb;
    font-size:var(--paragraph);
}
/*==================================
ABOUT
==================================*/

.about{
    padding:70px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-tag{
    display:inline-block;
    color:#f58220;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:var(--section-heading);
    line-height:1.15;
    color:#173b74;
    margin-bottom:35px;
    font-weight:700;
}

.about-content p{
    font-size:var(--paragraph);
    line-height:1.8;
    color:#555;
    margin-bottom:28px;
}

.about-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:24px;
    display:block;
}
/*==================================================
MISSION | VISION
==================================================*/

.purpose-section{
    background:#f5f7fb;
    padding:90px 0 100px;
    overflow:hidden;
}

.purpose-heading{
    text-align:center;
    margin-bottom:50px;
}

.purpose-subtitle{
    color:#e07b2a;
    font-size:13px;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
    display:block;
    margin-bottom:14px;
}

.purpose-heading h2{
    font-size:var(--heading);
    font-weight:800;
    color:#1a3c6e;
    line-height:1.2;
}

.mvv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.mvv-box{
    border-radius:18px;
    overflow:hidden;
    padding:32px 0;
    min-height:280px;
}

.mission-box{
    background:#1a3c6e;
    box-shadow:0 12px 30px rgba(26,60,110,.18);
}

.vision-box{
    background:#fff;
    border:1px solid #e6edf7;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.mvv-title{
    display:flex;
    align-items:center;
    gap:14px;
    padding:0 36px;
    margin-bottom:24px;
}

.mvv-title span{
    color:#e07b2a;
    font-size:22px;
}

.mvv-title h3{
    font-size:13px;
    font-weight:800;
    letter-spacing:2.5px;
    text-transform:uppercase;
    margin:0;
    color:#e07b2a;
}

.mvv-row{
    overflow:hidden;

    -webkit-mask-image:linear-gradient(to right,
    transparent,
    #000 60px,
    #000 calc(100% - 60px),
    transparent);

    mask-image:linear-gradient(to right,
    transparent,
    #000 60px,
    #000 calc(100% - 60px),
    transparent);
}

.mvv-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:mvvScrollLeft 120s linear infinite;
    will-change:transform;
}

.mvv-box:hover .mvv-track{
    animation-play-state:paused;
}

.mvv-item{
    flex:0 0 auto;

    display:flex;
    align-items:center;

    padding:22px 34px;

    border-radius:12px;

    white-space:nowrap;
}

.mission-box .mvv-item{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
}

.vision-box .mvv-item{
    background:#f5f7fb;
    border:1px solid #e6edf7;
}

.mvv-item span{
    font-size:16px;
    font-weight:500;
}

.mission-box .mvv-item span{
    color:#fff;
}

.vision-box .mvv-item span{
    color:#556;
}

.mvv-item strong{
    color:#e07b2a;
    padding-left:16px;
    font-size:18px;
}

@keyframes mvvScrollLeft{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.purpose-section .container{
    max-width:1280px;
}
@media(max-width:768px){

    .mvv-grid{
        grid-template-columns:1fr;
    }

    .purpose-heading h2{
        font-size:32px;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.hero{
    height:600px;
}

.hero-text{
    max-width:100%;
}

.about-image img{
    height:auto;
}

}
/*==================================
PARENT GROUP
==================================*/

.parent-group{
    background:linear-gradient(120deg,#0a1f4e 0%,#1a3c8e 100%);
    padding:90px 0;
}

.parent-grid{
    display:grid;
    grid-template-columns:58% 42%;
    gap:60px;
    align-items:center;
}

.parent-tag{
    display:block;
    color:#f58220;
    font-size:16px;
    font-weight:700;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.parent-content h2{
    font-size:var(--section-heading);
    line-height:1.15;
    max-width:520px;
    color:#fff;
    font-weight:800;
    margin-bottom:28px;
}

.parent-content p{
    color:rgba(255,255,255,.85);
    font-size:var(--paragraph);
    line-height:1.8;
    max-width:500px;
}

.parent-stats{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:30px;
}

.parent-card{
    width:170px;
    height:170px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    backdrop-filter:blur(8px);
}

.parent-card h3{
    color:#fff;
    font-size:32px;
    font-weight:800;
    margin-bottom:10px;
}

.parent-card span{
    color:rgba(255,255,255,.85);
    font-size:15px;
    line-height:1.5;
}

@media(max-width:768px){

    .parent-grid{
    grid-template-columns:1fr;
}

.parent-stats{
    justify-content:space-between;
    gap:15px;
}

.parent-card{
    flex:1;
    width:auto;
    height:100px;
}

.parent-card h3{
    font-size:22px;
}

.parent-card span{
    font-size:11px;
}

}
/*==================================
PRODUCTS
==================================*/

.products-section{
    padding:70px 0;
    background:#fff;
}

.products-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
    gap:40px;
}

.products-tag{
    display:block;
    color:#e07b2a;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.products-heading h2{
    font-size:var(--heading);
    font-weight:800;
    color:#173b74;
    line-height:1.3;
    max-width:700px;
}

.products-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border:2px solid #173b74;
    border-radius:8px;
    color:#173b74;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.products-btn:hover{
    background:#173b74;
    color:#fff;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.product-card{
    background:#f8faff;
    border:1px solid #e5ecf9;
    border-radius:12px;
    padding:20px 18px;
    box-shadow:0 4px 20px rgba(26,60,110,.06);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.product-card h3{
    font-size:16px;
    font-weight:700;
    color:#173b74;
    margin-bottom:8px;
}

.product-card p{
    font-size:13px;
    color:#556;
    line-height:1.6;
}

@media(max-width:768px){

    .products-header{
        flex-direction:column;
    }

    .products-heading h2{
        font-size:36px;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .products-btn{
        width:100%;
    }

}
/*==================================
MANUFACTURING
==================================*/

.manufacturing{
    background:#f5f7fb;
    padding:90px 0;
}

.manufacturing-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.manufacturing-image-wrap{
    position:relative;
}

.manufacturing-image{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.capacity-card{
    position:absolute;
    top:20px;
    right:-20px;
    background:#1a4b8c;
    color:#fff;
    padding:18px 20px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.capacity-card h3{
    font-size:28px;
    font-weight:900;
    margin-bottom:4px;
}

.capacity-card p{
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.manufacturing-tag{
    display:inline-block;
    color:#e07b2a;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.manufacturing-content h2{
    font-size:var(--heading);
    font-weight:800;
    color:#1a3c6e;
    line-height:1.2;
    margin-bottom:16px;
}

.manufacturing-description{
    font-size:var(--paragraph);
    line-height:1.8;
    color:#556;
    margin-bottom:30px;
}

.manufacturing-card{
    background:#fff;
    border:1px solid #e6edf7;
    border-radius:14px;
    padding:18px 20px;
    margin-bottom:16px;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
    transition:.3s;
}

.manufacturing-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(26,60,110,.10);
}

.manufacturing-card h4{
    margin:0 0 4px;
    font-size:15px;
    font-weight:700;
    color:#1a3c6e;
}

.manufacturing-card p{
    margin:0;
    font-size:13px;
    line-height:1.6;
    color:#667;
}

.manufacturing-btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 22px;
    border:2px solid #1a3c6e;
    border-radius:8px;
    color:#1a3c6e;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.manufacturing-btn:hover{
    background:#1a3c6e;
    color:#fff;
}

@media(max-width:768px){

    .manufacturing{
        padding:70px 0;
    }

    .manufacturing-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .manufacturing-content h2{
        font-size:38px;
    }

    .manufacturing-image{
        height:auto;
    }

    .capacity-card{
        right:15px;
        top:15px;
    }

}
/*==================================
GLOBAL REACH
==================================*/

.global-reach{
    background:#f5f7fb;
    padding:80px 0;
}

.global-heading{
    margin-bottom:40px;
}

.global-tag{
    display:block;
    color:#e07b2a;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.global-heading h2{
    color:#1a3c6e;
    font-size:var(--heading);
    font-weight:800;
    line-height:1.2;
    margin-bottom:10px;
}

.global-heading p{
    color:#556;
    font-size:var(--paragraph);
    line-height:1.8;
    max-width:720px;
}

.global-map-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:40px;
}

.map-card{
    background:#fff;
    border:1px solid #e6edf7;
    border-radius:24px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.map-tag{
    display:block;
    color:#e07b2a;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.map-card h3{
    margin:0 0 18px;
    color:#1a3c6e;
    font-size:var(--sub-heading);
    font-weight:800;
}

.map-card img{
    width:100%;
    height:360px;
    object-fit:contain;
    border-radius:16px;
    display:block;
}

.global-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.global-stat{
    background:#fff;
    border:1px solid #e6edf7;
    border-radius:20px;
    padding:26px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.global-stat.active{
    background:#1a3c6e;
    color:#fff;
    border:none;
}

.global-stat h3{
    font-size:38px;
    font-weight:900;
    margin-bottom:6px;
}

.global-stat p{
    font-size:13px;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.global-stat:not(.active):nth-child(2) h3{
    color:#e07b2a;
}

.global-stat:not(.active):nth-child(3) h3{
    color:#1a3c6e;
}

.global-stat:not(.active) p{
    color:#667;
}

.global-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #e6edf7;
}

.feature-box{
    background:#fff;
    border:1px solid #e6edf7;
    border-radius:16px;
    padding:20px;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
    font-size:13px;
    font-weight:600;
    color:#1a3c6e;
    line-height:1.5;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

@media(max-width:991px){

    .global-map-grid{
        grid-template-columns:1fr;
    }

    .global-stats{
        grid-template-columns:1fr;
    }

    .global-features{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .map-card{
        padding:20px;
    }

    .map-card img{
        height:250px;
    }

    .global-features{
        grid-template-columns:1fr;
    }

}
/*==================================
PARTNER CTA
==================================*/

.partner-section{
    background:linear-gradient(120deg,#0a1f4e 0%,#1a3c8e 100%);
    padding:70px 0;
    text-align:center;
}

.partner-section h2{
    color:#fff;
    font-size:var(--heading);
    font-weight:800;
    margin:0 0 16px;
}

.partner-description{
    max-width:520px;
    margin:0 auto 40px;
    color:rgba(255,255,255,.78);
    font-size:var(--paragraph);
    line-height:1.7;
}

.partner-btn{
    display:inline-block;
    background:#e07b2a;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.partner-btn:hover{
    background:#c96d20;
}

.partner-links{
    display:flex;
    justify-content:center;
    gap:32px;
    margin-top:32px;
    flex-wrap:wrap;
}

.partner-links a{
    color:rgba(255,255,255,.60);
    font-size:13px;
    transition:.3s;
}

.partner-links a:hover{
    color:#fff;
}

@media(max-width:768px){

    .partner-section{
        padding:60px 20px;
    }

    .partner-section h2{
        font-size:32px;
    }

    .partner-links{
        flex-direction:column;
        gap:16px;
    }

}
/*==============================
FOOTER
==============================*/

.site-footer{
    background:#0d1728;
    color:#fff;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    gap:60px;
    padding-bottom:55px;
}

.footer-logo img{
    width:90px;
    margin-bottom:20px;
}

.footer-about p{
    color:#b9c3d6;
    font-size:var(--paragraph);
    line-height:1.8;
    max-width:320px;
}

.footer-column h4{
    font-size:var(--sub-heading);
    margin-bottom:24px;
    color:#fff;
}

.footer-menu,
.footer-bottom-menu{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-menu li{
    margin-bottom:14px;
}

.footer-menu a{
    color:#b9c3d6;
    transition:.3s;
}

.footer-menu a:hover{
    color:#f58220;
}

.footer-column p{
    color:#b9c3d6;
    line-height:1.8;
    margin-bottom:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#b9c3d6;
}

.footer-bottom-menu{
    display:flex;
    gap:30px;
}

.footer-bottom-menu a{
    color:#b9c3d6;
}

.footer-bottom-menu a:hover{
    color:#f58220;
}

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom-menu{
        flex-direction:column;
        gap:12px;
    }

}
/* Contact button */

.menu-contact-btn{
    margin-left:24px;
}

.menu-contact-btn > a{
    background:#1a3c6e;
    color:#fff !important;
    padding:0 28px;
    height:48px !important;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
}

.menu-contact-btn > a:hover{
    background:#e07b2a;
    color:#fff !important;
}

.menu-contact-btn .sub-menu{
    right:0;
    left:auto;
}
/* Dropdown arrow */

.menu > li.menu-item-has-children > a::after{
    content:"▼";
    font-size:9px;
    margin-left:8px;
    transition:.3s;
}

.menu > li.menu-item-has-children:hover > a::after{
    transform:rotate(180deg);
}
/* ==================================
   HERO LOGO BADGE
================================== */

.hero-logo-wrapper {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 5;
    pointer-events: none;
}

.hero-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    display: block;

    opacity: 0;

    filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));

    animation:
        slowLogoReveal .8s ease-out forwards,
        logoPop 2.5s ease-in-out .8s infinite;
}

/* Fade in */

@keyframes slowLogoReveal {

    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* Floating animation */

@keyframes logoPop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

/* Tablet */

@media (max-width: 991px) {

    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .hero-logo-wrapper {
        top: 30px;
        right: 20px;
    }

}

/* Mobile */

@media (max-width: 768px) {

    .hero-logo-wrapper {
        display: none;
    }

}
/*========================
RESPONSIVE TYPOGRAPHY
========================*/

@media (max-width:992px){

    :root{

        --hero-heading:56px;
        --section-heading:48px;
        --heading:32px;
        --sub-heading:20px;
        --paragraph:18px;

    }

}

@media (max-width:768px){

    :root{

        --hero-heading:42px;
        --section-heading:34px;
        --heading:28px;
        --sub-heading:18px;
        --paragraph:16px;

    }

}