.header-logo {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .header-logo {
        height: 40px;
    }
}

/* Change entire site font */
body {
    font-family: 'Poppins', sans-serif;
}

/* =========================================
   RAM TOPBAR
========================================= */

.ram-topbar{
    display:flex;
    align-items:center;
    min-height:50px;
}

.ram-topbar-left{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.ram-topbar-item{
    display:flex;
    align-items:center;
    gap:10px;

    position:relative;
}

.ram-topbar-item i{
    color:#09a460;
    font-size:15px;
}

.ram-topbar-item a,
.ram-topbar-item span{
    color:#475569;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    transition:0.3s;
}

.ram-topbar-item a:hover{
    color:#09a460;
}

.ram-phone a{
    color:#09a460;
    font-weight:600;
}

/* separators */

.ram-topbar-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-15px;
    top:50%;
    transform:translateY(-50%);

    width:1px;
    height:18px;

    background:#dbe4ea;
}

@media(max-width:991px){

    .ram-topbar-left{
        gap:15px;
    }

    .ram-topbar-item:nth-child(2){
        display:none;
    }

    .ram-topbar-item:not(:last-child)::after{
        display:none;
    }

}



