.header-main {
    position: sticky; 
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.header-main-logo {
    width: fit-content;
    height: 100%;
    padding-left: 20px;
    display: flex;
}

.header-main-logo img {
    width: 150px;
    height: 30px;
    align-self: center;
}

.header-main-nav {
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    list-style: none;
    margin-left: 30px;
}

.header-main-nav ul li {
    display: inline;
    float: left;
}

.header-main-nav ul li a {
    padding: 0 10px;
    font-family: 'Roboto', sans-serif;
    line-height: 60px;
    color: var(--site-color-01);
    display: block;
    height: 100%;
    text-transform: uppercase;
}

.header-main-nav ul li a:hover {
    color: var(--site-color-01-hover);
}

.header-main-sm {
    width: fit-content;
    height: 100%;
    padding-right: 40px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

/* Style all font awesome icons */
.header-main-sm .fa {
    font-size: 20px;
    background-repeat: no-repeat;
    text-decoration: none;
    border-radius: 100%;
}

/* Add a hover effect if you want */
.header-main-sm .fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #fff;
    color: #036792;
}

.fa-facebook:hover {
    color: skyblue;
}

.fa-wordpress {
    background: #fff;
    color: #036792;
}

.fa-wordpress:hover {
    color: skyblue
}

