@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

/** Navbar **/

.bg-light-horky{
    background-color: #fff;
}

.nav-link{
  display: flex !important;
}

.btn-default-home{
    font-family: 'Helvetica Now Display', sans-serif;
    padding: 0px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    background-color: #212121;
    font-size: 16px;  
    min-width: 150px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    margin: 0 10px;
    box-shadow: 3px 4px 6px -4px rgb(80 80 80 / 60%);
    -webkit-box-shadow: 3px 4px 6px -4px rgb(80 80 80 / 60%);
    border: 1px solid #414545;
}

.btn-default-home:hover {
    background-color: #414545;
    text-decoration: none;
    color: #fff;
}

.bg-light-horky{
    background-color: #fff;
}

.navbar-nwy {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #141414;
    font-family: 'Helvetica Now Display', sans-serif;
    display: block;
    background-color: #f5f5f8;
}

a.nav-home{
    margin-right: 10px;
    font-size: 15px;
    margin-left: 10px;
    color: #737373 !important;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

a.nav-home:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #a6a6a6;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a.nav-home:hover:before{
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.navbar-mobile-hr {
    display: none;
}

.navbar-brand-img {
    width: 100px;
    display: block;
}

.navbar-nav {
    flex-direction: row;
}


@media screen and (max-width: 768px) {

    .navbar-nwy {
        background-color: #fff;
    }

    .navbar-brand-img {
        display: block;
        width: 108px;
    }

    .navbar-toggler-icon {
        width: 1.7em;
        height: 1.7em;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-nav {
        flex-direction: column;
    }

    a.nav-home {
        text-align: center;
        width: 100%;
        font-size: 15px;
        padding: 0;
        font-family: 'Helvetica Now Display', sans-serif;
        font-weight: 500;
        color: #a6a6a6 !important;
        background-color: transparent;
        padding: 8px 5px;
        display: inline-flex;
    }

    .btn-default-home {
        justify-content: center;
        width: 100%;
        font-size: 16px;
        padding: 0;
        font-family: 'Helvetica Now Display', sans-serif;
        font-weight: 500;
        padding: 8px 5px;
        display: inline-flex;
    }

    a.nav-home:before{
        content: "";
        position: absolute;
        width: auto;
        height: 2px;
        bottom: 0;
        left: 0;
    }

    .btn-login {
        font-size: 26px;
        font-weight: 600;
        width: 220px;
        height: 50px;
        color: #414545;
        background-color: #fff;
        border: 1px solid #414545;
    }

    .navbar-collapse {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-left: -12px;
        margin-right: -12px;
    }

    .navbar-mobile-hr {
        margin: 0 !important;
        display: block;
        color: #212121;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
    
}