*{
    margin: 0px;
    padding: 0px;
}
a{
    text-decoration: none;
}
.c{
    margin: 0 auto;
    width: 1280px;
    /* border: turquoise solid 1px;
    box-sizing: border-box; */
    position: relative;
}

.header{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 175px;
    /* background: rgba(255, 255, 255, 0.3); */
    z-index: 100;
}

.nav{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-bar{
    transform: translateX(28px);
    display: flex;
    color:white;
}
.nav-item{
    text-align: center;
    padding: 10px 0.8em;
    margin-right: 28px;
}
.nav-item:hover{
    border-bottom: rgba(255, 255, 255, 0.3) solid 5px;
}
.nav-s{
    border-bottom: white solid 5px;
}
.footer{
    width: 100%;
    height: 180px;
    background: #4c4b5b;
}

.footer-c{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.info{
    color: #ffffff;
    width: 50%;
}
.info > div:nth-child(1){
    padding: 1em 0px;
}
.info > div:nth-child(2){
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}
.info > div > div> p>a{
    color: white;
    text-decoration: underline;
}