/* ICONS */

.contact-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    margin-top: 10px;
}

.contact-nav a.navbar-item, .contact-nav p.navbar-item {
    padding: 0px;
}

.contact-nav a:hover.navbar-item {
    background-color: transparent;
    color: #FFF214;
    transition: all 0.5s;
}

/* NAVBAR */

nav.navbar {
    height: auto;
    margin-top: 50px;
    margin-bottom: 10px;
}

.navbar-brand {
    align-items: center;
}

.navbar-brand .navbar-item {
    align-items: center;
    display: block;
    margin: 0 auto;
}

.navbar-brand .navbar-item img {
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 100px;
    /*margin: 10px 0px;*/
}

a.navbar-item, p.navbar-item {
    background-color: transparent;
    color: #727272;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 900;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    padding: 0px 15px;
    margin: 0px 5px;
}

a:hover.navbar-item {
    background-color: #FFF214;
    color: #150028;
    transition: all 0.5s;
}

a:hover.navbar-item.about-us {
    background-color: #2ED9C3;
    color: #150028;
    transition: all 0.5s;
}

a:hover.navbar-item.services {
    background-color: #FF671D;
    color: #150028;
    transition: all 0.5s;
}

a:hover.navbar-item.clients {
    background-color: #C2A6E1;
    color: #150028;
    transition: all 0.5s;
}

a:hover.navbar-item.work {
    background-color: #FFF214;
    color: #150028;
    transition: all 0.5s;
}

a:hover.navbar-item.team {
    background-color: #38D430;
    color: #150028;
    transition: all 0.5s;
}

a:hover.navbar-item.blog {
    background-color: #2ED9C3;
    color: #150028;
    transition: all 0.5s;
}

a:hover.navbar-item.contact {
    background-color: #FF671D;
    color: #150028;
    transition: all 0.5s;
}

/* ABOUT US (& BLOG) */

header#about-us-header .contact-nav a:hover.navbar-item {
    background-color: transparent;
    color: #2ED9C3;
    transition: all 0.5s;
}

/*header#about-us-header .navbar-end a:hover.navbar-item {
    background-color: #2ED9C3;
    color: #150028;
    transition: all 0.5s;
}*/

/* SERVICES (& CONTACT) */

header#services-header .contact-nav a:hover.navbar-item {
    background-color: transparent;
    color: #FF671D;
    transition: all 0.5s;
}

/*header#services-header .navbar-end a:hover.navbar-item {
    background-color: #FF671D;
    color: #150028;
    transition: all 0.5s;
}*/

/* CLIENTS */

header#clients-header .contact-nav a:hover.navbar-item {
    background-color: transparent;
    color: #C2A6E1;
    transition: all 0.5s;
}

/*header#clients-header .navbar-end a:hover.navbar-item {
    background-color: #C2A6E1;
    color: #150028;
    transition: all 0.5s;
}*/

/* TEAM */

header#team-header .contact-nav a:hover.navbar-item {
    background-color: transparent;
    color: #38D430;
    transition: all 0.5s;
}

/*header#team-header .navbar-end a:hover.navbar-item {
    background-color: #38D430;
    color: #150028;
    transition: all 0.5s;
}*/

/* MEDIA QUERIES */

@media (max-width: 1023px) {
    .contact-nav {
        display: none;
        /*justify-content: left;
        margin-top: 0px;*/
    }

    .contact-details {
        display: flex;
        align-items: center;
    }

    /*.contact-nav a.navbar-item, .contact-nav p.navbar-item {
        margin: 15px;
    }*/

    nav.navbar {
        margin-top: 10px;
    }

    .navbar-burger {
        background-color: #ffffff;
        color: #727272;
        margin-left: 0;
    }

    .navbar-burger:hover {
        background-color: #ffffff;
        color: #727272;
    }

    .navbar-burger span {
        color: #727272;
        height: 2px;
    }

    .navbar-burger.is-active span {
        color: #727272;
        height: 2px;
    }

    .navbar-menu {
        background-color: #ffffff;
        box-shadow: none;
        padding: 5px;
    }

    .navbar-end a.navbar-item, .navbar-end p.navbar-item {
        color: #727272;
        margin: 15px;
        padding: 0px;
    }

}

@media (min-width: 1024px) {

    .contact-details {
        display: none;
    }

}