/*====================================================

TOP INFORMATION BAR

====================================================*/

.top-bar{

position:fixed;

top:0;

left:0;

width:100%;

height:42px;

background:var(--primary);

color:#fff;

z-index:1100;

display:flex;

align-items:center;

box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.top-bar-inner{

width:100%;

max-width:1400px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 6%;

}

.top-message,

.top-contact{

display:flex;

align-items:center;

gap:10px;

font-size:.92rem;

font-weight:500;

}

.top-contact{

text-decoration:none;

color:#fff;

transition:.3s;

}

.top-contact:hover{

opacity:.85;

}

.top-message img,

.top-contact img{

width:16px;

height:16px;

filter:brightness(0) invert(1);

}

/*====================================================
HEADER
====================================================*/

.header{

position:fixed;

top:42px;

left:0;

width:100%;

z-index:1000;

background:rgba(255,255,255,.96);

backdrop-filter:blur(18px);

transition:.35s;

}

.header.scrolled{

padding:10px 7%;

box-shadow:0 12px 35px rgba(0,0,0,.12);

}

/*====================================================
NAVIGATION
====================================================*/

.nav{

display:flex;

justify-content:space-between;

align-items:center;

max-width:1400px;

margin:auto;

padding:12px 0;

}

.nav-links{

    display:flex;

    gap:28px;

    align-items:center;

}

.nav-links a{

font-weight:600;

text-decoration:none;

color:var(--heading);

position:relative;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

bottom:-6px;

left:0;

height:2px;

width:0;

background:var(--primary);

transition:.3s;

}

.nav-links a:hover::after{

width:100%;

}

/*====================================================
LOGO
====================================================*/

.logo{

display:flex;

align-items:center;

gap:18px;

}

.logo img{

width:54px;

height:auto;

transition:.35s;

}

.header.scrolled .logo img{

width:55px;

}

/*====================================================
brand
====================================================*/

.brand{

display:flex;

flex-direction:column;

}

.brand h1{

font-size:1.55rem;

line-height:1.05;

margin:0;

}

.brand span{

    font-size:.95rem;

    color:var(--heading);

    font-weight:500;

    opacity:.85;

    letter-spacing:.3px;

}

img{

    max-width:100%;

    height:auto;

    display:block;

}

body{

    padding-top:165px;

}

html{

    scroll-behavior:smooth;

    scroll-padding-top:80px;

}

.primary,
.secondary,
.btn-primary,
.btn-secondary{

    border-radius:999px;

    padding:14px 28px;

    transition:.3s ease;

    font-weight:600;

}