/* =========================================================
   JT LOGISTIC
   GLOBAL.CSS
========================================================= */

:root{
    --primary:#0d4ea3;
    --dark:#0f1014;
    --text:#666666;
    --title:#222222;
    --light:#eeeeee;
    --gold:#c58d22;
}

/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

a{
    text-decoration:none;

    transition:
        color .3s ease,
        opacity .3s ease;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================================================
   CONTAINER
========================================================= */

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar{
    width:100%;
    background:var(--primary);
    color:#ffffff;

    height:40px;

    display:flex;
    align-items:center;

    position:relative;
    z-index:9999;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.topbar.hidden{
    opacity:0;
    transform:translateY(-100%);
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:24px;
}

.topbar a{
    color:#fff;

    font-size:14px;
    font-weight:300;

    letter-spacing:0;
}

.topbar i{
    margin-right:7px;
    font-size:13px;
}

/* =========================================================
   HEADER
========================================================= */

.header{
    width:100%;
    background:#fff;

    position:sticky;
    top:0;

    z-index:999;

    padding:10px 0;

    border-bottom:1px solid #e7e7e7;

    box-shadow:0 2px 10px rgba(0,0,0,.06);

    transition:
        padding .25s ease,
        background .25s ease;
}

.header.scrolled{
    padding:0;
}

.header .container{
    height:70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* =========================================================
   LOGO
========================================================= */

.logo img{
    width:205px;
}

/* =========================================================
   MENU
========================================================= */

.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu li a{
    color:#555;

    font-size:14px;
    font-weight:400;

    letter-spacing:0;

    text-transform:uppercase;

    transition:
        color .3s ease;
}

.menu li a:hover,
.menu li a.active{
    color:var(--primary);
}

/* =========================================================
   HEADER ICON BUTTON
========================================================= */

.header-icon{
    width:58px;
    height:58px;

    border-radius:50%;

    background:#d6d6d6;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:
        background .3s ease,
        transform .3s ease;
}

.header-icon:hover{
    background:var(--primary);
    transform:translateY(-2px);
}

.header-icon i{
    color:#fff;
    font-size:22px;
}

/* =========================================================
   TITLES
========================================================= */

h1,h2,h3,h4,h5,h6{
    color:var(--title);
    font-weight:600;
    letter-spacing:0;
}

p{
    line-height:1.82;
    font-size:15px;
    font-weight:300;
    letter-spacing:0;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:145px;
    height:48px;

    background:#fff;
    color:#111;

    border:none;

    font-size:12px;
    font-weight:600;

    letter-spacing:0;

    text-transform:uppercase;

    cursor:pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.btn:hover{
    background:var(--primary);
    color:#fff;

    transform:translateY(-2px);
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#222;
    color:#fff;
}

.footer-top{
    padding:58px 0 44px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:68px;
}

.footer-logo{
    width:240px;
    margin-bottom:22px;
}

.footer h3{
    color:#fff;

    font-size:20px;
    font-weight:500;

    margin-bottom:20px;

    letter-spacing:0;
}

.footer p,
.footer a{
    color:#bdbdbd;

    font-size:14px;
    line-height:1.85;

    font-weight:300;

    letter-spacing:0;
}

.footer-contact{
    margin-top:18px;
}

.footer-contact div{
    margin-bottom:9px;
}

.footer-contact i{
    margin-right:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:16px 20px;

    color:#cfcfcf;

    font-size:13px;
    font-weight:300;

    letter-spacing:0;

    background:#333;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .menu{
        gap:22px;
    }

    .logo img{
        width:190px;
    }

}

@media(max-width:768px){

    .topbar{
        display:none;
    }

    .header .container{
        height:82px;
    }

    .menu{
        display:none;
    }

    .logo img{
        width:170px;
    }

}

