/*=========================================
    TOP BAR
=========================================*/

.topbar{

    background:#082C6C;

    height:44px;

    color:#ffffff;

}

.topbar__container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:44px;

}

/* LEFT */

.topbar__left{

    display:flex;

    align-items:center;

}

.topbar__left .topbar__link{

    display:flex;

    align-items:center;

    gap:8px;

    color:#ffffff;

    font-size:14px;

    font-weight:600;

}

/* RIGHT */

.topbar__right{

    display:flex;

    align-items:center;

    gap:34px;

}

.topbar__right .topbar__link{

    display:flex;

    align-items:center;

    gap:8px;

    color:#ffffff;

    font-size:14px;

    font-weight:500;

}

/* ICONS */

.topbar__left i{

    color:#F6B319;

    font-size:14px;

}

.topbar__right i{

    font-size:14px;

}

/* HOVER */

.topbar__link:hover{

    color:#F6B319;

}