
/*.header{
    height: 100vh;
    width: 100vw;
    background: #fff;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 72px;
    box-sizing: border-box;
}

/*
.u-centered{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
}

.call-to-action{
    max-width: 400px;
    padding: 32px;
    box-sizing:border-box;
    color: #ffffff;
    background: rgba(0,0,0,0.1);
    border-radius: 16px;
}

.call-to-action__title{
    margin-top: 0;    
}
.call-to-action__description{
    font-weight: 500;
    font-size: 1.1em;
}
*/
.call-to-action__button{
    background: #ffffff;
    outline: none;
    font:bold 1.1em 'Quicksand', sans-serif;
    color: #009579;
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
    /*transition: background 0.15s, color 0.15s;*/
}

.call-to-action__button:hover{
    background: transparent;
    color: #ffffff;
}

.bar{
    position: fixed;
    z-index: 1;
    top: 50px;
    margin-right: 50px;
    width: 100%;
    height: 72px;

    transition: background 0.15s;
}
.bar--bg{
    background: #009579;
}

.bar__content{
    height: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bar__logo{
    height: 90%;
    margin-top: 100px;
    margin-bottom: -20px;
}

.bar__nav-toggle{
    cursor: pointer;
}

.bar__nav-toggle > i{
    color: #000;
    font-size: 2em;
}

#inpNavToggle{
    display: none;
}
#inpNavToggle:checked ~ .nav{
    display: flex;
}
.nav{
    display: none;
    flex-direction: column;
    position: fixed;
    top: 122px;
    left: 0;
    width: 100%;
    height: calc(100vh-72px);
    padding: 20px;
    background: #222222;
    box-sizing: border-box;
}

.nav__link{
    font-weight: 300;
    padding: 16px 0;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav__link:hover{
    top: 34px;
    opacity: 1;
    visibility: visible;
    background-color: #ff652f;
    color: #fff;
}
.dropdown {
    position: relative;
}
.dropdown-menu,
.menu-right {
    position: absolute;
    background: #122331;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/*
@media screen and (min-width: 767px){
    .bar__nav-toggle{
        display: none; 
    }
    .nav{
        display: initial;
        position: static;
        width: unset;
        padding: unset;
        background: transparent;
        color: #ffffff;
    }

    .nav__link{
        border-bottom: none;
    }

    .nav__link:not(:last-of-type){
        margin-right: 24px;
    }
}
*/