@font-face {
    font-family: mediumFont;
    src: url('../../assets/fonts/SFPRODISPLAYMEDIUM.OTF');
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: inherit;
}
.logoImg {
    position: relative;
    width: 157px;
    height: 45px;
}
.navItem {
    cursor: pointer;
}
.link {
    font-family: mediumFont;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    color: #2C3C90;
    white-space: nowrap;
}
.link:visited{
    color:#001762;
}

.lightColor {
    color:#f0f0f0;
}
.lightColor:visited {
    color:#f0f0f0;
}
.lightItemColor {
    color: #f0f0f0;;
}
/* mobile nav */
.mobileNav {
    background-color: #001762;
    border-radius: 30px;
    padding:37px 30px;
    margin-left: 20px;
    margin-right: 20px;
}
.colored {
    background-color: white;
}
.mobileNav .link {
    color: #f5f5f5;
}
.colored .link {
    color:#383839;
}
.mobileNav .navItem {
    margin-bottom: 17px;
}

.dropdownHeader {
    display: flex;
    align-items: center;
}
.dropdownHeader .link {
    margin-right: 10px;
}
.dropdownItems {
    padding-top: 15px;
}
.dropdownItemContainer {
    margin-bottom: 10px;
}


@media screen and (min-width:0px){
    .header {
        padding:20px;
    }
}
@media screen and (min-width:576px){}
@media screen and (min-width:768px){}
@media screen and (min-width:992px){
    .list {
        display: flex;
        align-items: center;
    }
    .navItem {
        margin-right: 37px;
    }
    .lastNavItem {
        margin-right: 0;
    }
    .header {
        padding:40px;
    }
    .brand {
        flex-grow: 1;
    }
    .menuBtn {
        display: none;
    }
}
@media screen and (min-width:1024px){}
@media screen and (min-width:1200px){
    .header {
        padding: 40px 95px;
    }
    .brand, .list{
        width: 50%;
    }
    .list {
        justify-content: space-between;
    }
}



@media screen and (max-width:992px){
    .list {
        display: none;
    }
}