@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    background-color: white
}

.header__logo img {
    max-width: 270px;
    margin: 30px 20px
}

.header {
    width: 100%;
    max-width: 2000px;
    display: flex;
    justify-content: space-between;
    height: 126.87px;
}

.header__nav {
    text-align: right;
    margin: 50px 20px;
}

.header__nav a {
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding: 26px 30px;
    font-size: 14px;
    line-height: 20.8px;
    transition: all .4s ease-in-out;

}

.header__nav a:hover {
    text-decoration: none;
    color: rgb(255, 173, 0);
    background-color: black;
}