@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600&display=swap');

.t-primary-bgcolor {
    background-color: #00303f;
}

a {
    color: #34789d;
}

body {
    background-color: #F5F8FB;
}

.container {
    width: 1200px;
}

.header-wrapper {
    background-color: #fff;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    font-family: "Work Sans", sans-serif;
    padding: 33px 0;
}

.header__right {
    text-align: right;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.nav-top a {
    color: #00303f;
    font-size: 14px;
    position: relative;
    display: inline-block;
    font-family: inherit;
    font-weight: 400;
    padding: 0 20px 0 15px;
    border-right: 1px solid rgba(0, 48, 63, .85);
}

.nav-top a:last-child {
    border-right: none;
}

.nav-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-bottom a {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #00303f;
    font-size: 20px;
    font-weight: 600;
}

.nav-bottom a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #00303f;
}