/* HEADER-STYLES-START */
.header-page {
    position: fixed;
    z-index: 1;
    font-family: 'Verdana';
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 4px 59px rgba(0, 0, 0, 0.14);
}

.logo {
    margin-right: 68px;
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation-items {
    display: flex;
    list-style-type: none;
    font-size: 16px;
    font-weight: 600;
}

.nav-link {
    color: black;
}

.nav-item {
    margin-right: 37px;
}


.header-content {
    margin-left: 147px;
    margin-right: 147px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
}

.header-links {
    display: flex;
    align-items: center;
}
.login-link, .signup-link {
    width: 142px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.login-link {
    border: 1px solid #008FDF;
    color: #008FDF;
    margin-right: 28px;
}

.signup-link {
    background-color: #008FDF;
    color: white;
}



/* FOOTER-STYLES-START */
.footer-page {
    width: 100%;
    height: 100px;
    border-top: 1px solid #008FDF;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
@media screen and (max-width: 800px){
    .footer-page {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    padding-right: 93px;
}

@media (max-width: 800px){
    .footer-content {
        padding-right: 0px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.footer-mail {
    color: black;
}

.links {
    padding: 0px 3px;
    color: rgb(0, 143, 223);
}

.agreement a:-webkit-any-link {

    cursor: pointer;
    text-decoration: underline;
}

.agreement {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: rgb(154, 154, 154);
    font-size: 15px;
    line-height: 20px;
    width: 735px;
}
@media (max-width: 800px) {
    .agreement {
        padding-top: 15px;
    }
}

@media all and (max-width: 1290px){
    .agreement {
        padding-right: 0;
    }
}

@media all and (min-width: 801px) {
    .agreement,
    .footer-content {
        padding-right: 50px;
        padding-left: 50px;
    }
}
